Find the last three digits of the product of all the positive factors of 144.
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.
Let's generalize at first. Suppose we need to find the product of all positive factors of n with k factors. We'll use a simple fact: if d ∣ n , then n / d ∣ n and d ⋅ n / d = n . So we can pair them up. In case of a non-perfect square, the number of factors of a natural is even. So we have k / 2 such pairs. And hence, the product of all factors of n is given by:
n k / 2 [ n = a i ∈ N 0 ∏ p i ∈ P p i a i , k = ∏ ( a i + 1 ) ]
In case of a perfect square the number of factors is odd. So we have ( k − 1 ) / 2 pairs. Hence, the product of all factors of n is given by:
n ( k − 1 ) / 2 ⋅ n = n ( k − 1 ) / 2 ⋅ n 1 / 2 = n k / 2 [ n = a i ∈ N 0 ∏ p i ∈ P p i a i , k = ∏ ( a i + 1 ) ]
Therefore, in both case, the product is n k / 2 . Let's come back to earth, we are given 1 4 4 = 2 4 ⋅ 3 2 which has k = ( 4 + 1 ) ( 2 + 1 ) = 1 5 factors. Our desired answer is:
1 4 4 1 5 / 2 = 1 2 1 5 = 2 3 0 ⋅ 3 1 5 ≡ 8 2 4 ⋅ 9 0 7 ≡ 3 6 8 ( m o d 1 0 0 0 )