In how many ways $1000000$ can be expressed as a product of $3$ integers where each integer is greater than 1? Here $a \times b \times c$, $b \times a \times c...$ are considered to be same.
I've tried many ways. But couldn't solve anyway. please help me...
Given number is $2^6\times 5^6$. Any factor of it of the form $2^x\times 5^y$ with both $x,y$ not exceeding 6, possibly zero.
We want $$2^6\times 5^6= 2^{x_1}\times 5^{y_1}\times 2^{x_2}\times 5^{y_2}\times 2^{x_3}\times 5^{y_3}= 2^{x_1+x_2+x_3}\times 5^{y_1+y_2+y_3}$$
Now it is clear that we have to find $0\le x_i,y_i\le 6$ such that $x_1+x_2+x_3=6 $ and $y_1+y_2+y_3=6$. The number of solutions is the answer. This is not difficult as the problem is only about addition and that too with numbers upto 6.