Place four pebbles on the sand in the form of a square. Keep adding as few pebbles as necessary to double the area. How many extra pebbles are added each time?
Make a set of numbers that use all the digits from 1 to 9, once and once only. Add them up. The result is divisible by 9. Add each of the digits in the new number. What is their sum? Now try some other possibilities for yourself!
For this challenge, you'll need to play Got It! Can you explain the strategy for winning this game with any target?
Mark from Beecroft Public School, Masturah from TES and Tarusha from Longthorpe Primary School sent in correct solutions for twelve divisors.
Laura from St Joseph's College, Ipswich gave correct answers for both twelve and fourteen divisors
Consider $(2^a)(3^b)$. This has $(1+a)(1+b)$ factors and so we want $(1+a)(1+b)=14$. Since $14=2 \times 7$ this must give $a=6$ and $b=1$ if we want to make the number as small as possible, and $2^{6}3^{1} = 192$ which is a lot smaller than $2^{13}$.
It remains to prove that it is impossible to find a smaller number which has more prime factors, say $(2^a)(3^b)(5^c)$, but this can't be done because 14 itself has only two factors. If we look for $a$, $b$ and $c$ such that $(1+a)(1+b)(1+c) = 14$ we find that $a$ or $b$ or $c$ must be zero.
Or, you could write a simple computer program!
A simple BASIC program might be something like this:
10 X=0 20 REPEAT 30 X=X+1 40 D=0 50 FOR Y = 1 TO X 60 R=X/Y-INT(X/Y) 70 IF R=0 THEN D=D+1 80 NEXT Y 90 UNTIL D=14 100 PRINT "Smallest number with exactly 14 divisors =";X
The above program is in BBC BASIC . If you are using QBASIC you will need to use a DO UNTIL LOOP in place of the REPEAT......UNTIL loop.
DO UNTIL LOOP
REPEAT......UNTIL