Find the smallest positive integer value of N > 1 , such that there are exactly N ordered quadruples of positive integers ( a , b , c , d ) which satisfy a × b × c × d = N
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.
That's exactly what I did; you have my vote
Wow, even Mathematica can't solve this. After figuring out that the binomial product must divide N, I couldn't figure out how to progress besides the use of FindInstance[], and even that quit.
I have solved in a different(little bit) way.However, I have inspired by your solution.
I would also be interested in a more efficient solution. I had the right equation, but I could not figure out how to solve it without ugly casework.
Let, N = p 1 k 1 × p 2 k 2 × p 3 k 3
then, the no. of ordered quadruples = ( k 1 + 4 − 1 ) C ( 4 − 1 ) × ( k 2 + 4 − 1 ) C ( 4 − 1 ) × ( k 3 + 4 − 1 ) C ( 4 − 1 )
now, i tried a little bit of trial and error with few values of k 1
(1+4-1) C (4-1) = 4
(2+4-1) C (4-1) = 10
(3+4-1) C (4-1) = 20
with k 1 = 1 ... this is not possible ... as the number of quadruples will have a factor of 4 ... But the number cannot have a factor of 4, as the max power of 2 we can use is '1'
with k 1 = 2 ... we get 10 ... which is product of 2 primes 2*5. Now, we can use 2 powers of the primes. So, if we use that,
100 = 2 2 × 5 2 ... which will have as many quadruples
so our answer must be 1 0 0
why are the number of quadruples equal to your soln??
Problem Loading...
Note Loading...
Set Loading...
Let N = p 1 a 1 p 2 a 2 ⋯ p n a n For each distinct prime factor p i of N , the a i p i 's must be distributed among a , b , c , d . By stars and bars, there are ( 4 − 1 a i + 4 − 1 ) = ( 3 a i + 3 ) Therefore, the number of ordered quadruples is ( 3 a 1 + 3 ) × ( 3 a 2 + 3 ) × ⋯ × ( 3 a n + 3 ) Listing out small values, we can try to see how to combine numbers, ( 3 0 + 3 ) = 1 , ( 3 1 + 3 ) = 4 , ( 3 2 + 3 ) = 1 0 , ( 3 3 + 3 ) = 2 0 , ( 3 4 + 3 ) = 3 5 , ( 3 5 + 3 ) = 5 6 , ( 3 6 + 3 ) = 8 4 , ( 3 7 + 3 ) = 1 2 0 Then, for each power of a prime that divides N , a i , p i ∣ N ⟹ ( 3 a i + 3 ) ∣ N If every prime appears only once, then 4 ∣ N , a contradiction, so at least one a i is at least 2. If an a i is 2, then 1 0 ∣ N . The smallest possible values of N are 20, 40, 50, 60, 80, 90, and 100. The only one of these that works is 1 0 0 .
Then, if there is a smaller N it must be a multiple of 35, 56, or 84. It is easy to see that these do not work, so the answer is 1 0 0 .
I would be interested to see a solution with less casework.