Which is the greatest number of divisors that a positive integer number less than 1000 can have?
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.
Hmm.. i use this method to solve this one..
1 0 0 0 > ( a b ) ∗ ( c d ) ∗ ( e f ) . . .
where a,c,e and so on were prime numbers and b,d,f and so on where the exponents that will determine the number of divisors
First thing I do is to determine the largest product of consecutive prime numbers that is less than 1000..
It is indeed 210 which a factors of 2,3,5 and 7. because multiplying again by 11 will result to 2310 which is higher than 1000
so.. ( 2 b ) ∗ ( 3 d ) ∗ ( 5 f ) ∗ ( 7 h ) < 1 0 0 0
I use first, the lowest prime number and raise it to the greatest possible value of the exponent, while the other prime numbers were raised to 1.
( 2 3 ) ( 3 ) ( 5 ) ( 7 ) = 8 4 0 which is < 1 0 0 0
( 2 4 ) ( 3 ) ( 5 ) ( 7 ) = 1 6 8 0 which is > 1 0 0 0
so b = 3
then I use the next prime number which is 3 to do the same thing..
( 2 3 ) ( 3 2 ) ( 5 ) ( 7 ) = 2 5 2 0 which is > 1 0 0 0
so d=1 , f=1 and h=1
therefore, the rest of the factors must only raised to one, and could also conclude that 840 is the integer number with the greatest number of divisors. But the question is to determine its number of divisors, not the number itself..
so ,we can get the number of divisors by using the DIVISOR FUNCTION by looking at the exponents of each prime numbers for the prime factorization of 840,
( 2 3 ) ( 3 1 ) ( 5 1 ) ( 7 1 )
number of divisors = ( 3 + 1 ) ∗ ( 1 + 1 ) ∗ ( 1 + 1 ) ∗ ( 1 + 1 ) = 3 2 , which is the final answer =)
The greatest number of divisors is 32 from the number 8 4 0 = 2 3 ∗ 3 ∗ 5 ∗ 7
You have not proven the fact that the other numbers less than 1 0 0 0 has less than 3 2 distinct divisors.
Log in to reply
I will attempt to fill the gaps, to prove that there are no numbers less than 1000 with more than 32 divisors. Using the equation for the number of factors (i.e. the one in the middle of Seth's argument): the number of factors that a number has cannot be prime. This is because 2 3 7 >1000. For a number N to have two prime-power factors, say p a 1 & p a 2 and have more than 32 factors in total, then the average of a1 and a2 must be more than 3 2 ~ 5.6. However, if we look at 5 X 7, we have 2 6 X 3 4 > 1000. Similarly, for 3 factors the cube root of 32 is ~ 3.1, so our first option is 36 (3 X 3 X 4) factors. However, 2 3 X 3 2 X 5 2 >1000. Finally, with a product of 4 primes the number 2 must have the highest power. This leaves 2 2 X 3 2 X 5 X 7 >1000. In each case the first option represents the number with the lowest value, hence the proof is complete. Hope that helps :)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Problem Loading...
Note Loading...
Set Loading...
To solve this, we want to first find the most primes we can multiply together that result in a number less than 1000. This can easily be found by:
2x3x5x7 = 210
To count the number of divisors of a number, we can take the exponent of each prime factor, add 1, and then multiply them together. As of current, we want to maximize this number.
It can be seen that by multiplying by 4, the # of factors will be maximized. Why?
a p ∗ b q ∗ c r ∗ d t . . . = Q ( p + 1 ) ( q + 1 ) ( r + 1 ) ( t + 1 ) . . . = σ ( Q )
Now, the maximum amount of distinct prime factors we can have is 4, and it can easily be seen that by making our p = 3 [ i.e. multiplying by 4 ] we will maximize this relation with respect to the distinct prime numbers given for the number of factors while remaining below our limit of 1000.
For this reason, σ ( Q ) = 3 2
Note: σ ( Q ) = # of Factors of Q