What is the smallest positive number that has 1000 divisors?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Yeahhhhhh... It's just 30^4 x 1001 if you're good
Okay, so the first thing I did was to do the prime factorization of 1000. It gave me 2 3 × 5 3 . Then, with this principle in mind: https://brilliant.org/practice/counting-divisors-2/?p=7 you want to give the first 3 primes (2,3,5) the 3 powers of 4. Knowing that 7 3 > 1 1 × 1 3 we will then take 7,11 and 13 as our next primes. 2 4 × 3 4 × 5 4 × 7 × 1 1 × 1 3 = 8 1 0 8 1 0 0 0 0 ( 4 + 1 ) × ( 4 + 1 ) × ( 4 + 1 ) × ( 1 + 1 ) × ( 1 + 1 ) × ( 1 + 1 ) = 1 0 0 0
Problem Loading...
Note Loading...
Set Loading...
If you write a number as its prime factorization, 2 m ∗ 3 n ∗ 5 p ∗ 7 q . . . , then you have m+1 choices for the power of 2 in a factor, n+1 choices for the power of 3, and so on, giving a total of 9 m + 1 ) ( n + 1 ) ( p + 1 ) ( q + 1 ) . . . distinct factors. We need to factor 1000 in the way which gives us the smallest product of primes possible. Given how rapidly exponentiation gives massive numbers, it seems probable that simply making all the factors as small as possible is the way to go. 1 0 0 0 = 5 ∗ 5 ∗ 5 ∗ 2 ∗ 2 ∗ 2 , so a good guess is 2 4 ∗ 3 4 ∗ 5 4 ∗ 7 ∗ 1 1 ∗ 1 3 , or 3 0 4 ∗ 7 ∗ 1 1 ∗ 1 3 (Spoiler alert: this turns out to be the answer)
The next step I took was to find all the different factorizations of 1000, but this is a lot of work, and some of them clearly are too large. For example, 2 1 2 4 ∗ 3 7 is clearly much larger than most of the other possibilities. So what is the cutoff? Our current working guess of 3 0 4 ∗ 7 ∗ 1 1 ∗ 1 3 is a bit less than 3 2 4 , or 2 2 0 . This means any factorization with a factor greater than 21 will give too large of a power of 2, and not be the smallest. The factorizations which have all factors 20 or less are 5 ∗ 5 ∗ 5 ∗ 2 ∗ 2 ∗ 2 , 1 0 ∗ 5 ∗ 5 ∗ 2 ∗ 2 , 5 ∗ 5 ∗ 5 ∗ 4 ∗ 2 ∗ 2 , 2 0 ∗ 5 ∗ 5 ∗ 2 , 1 0 ∗ 1 0 ∗ 5 ∗ 2 , 2 0 ∗ 1 0 ∗ 5 , and 1 0 ∗ 1 0 ∗ 1 0 . All of the numbers these form are divisible by 3 0 4 , which makes them easier to compare. We are left with 7 ∗ 1 1 ∗ 1 3 , 2 5 ∗ 7 ∗ 1 1 , 7 3 ∗ 1 1 , 2 1 5 ∗ 7 , 2 5 ∗ 3 5 ∗ 7 , 2 1 5 ∗ 3 5 , and 3 0 5 . Of these, 7 ∗ 1 1 ∗ 1 3 is clearly the smallest, so our answer is 3 0 4 ∗ 7 ∗ 1 1 ∗ 1 3 = 8 1 0 8 1 0 0 0 0