Is the method of prime factorization valid for finding largest power of a number n such that n divides the number x also x>n?
E.g:-
Question: Highest power of 2 that divides $2^2 * 3^3 * 4^4 * 5^5 * 6^6$ ?
Ans: $16$ by using prime factorization for eliminating $2$ as $2^{16}$ will divide $2^2 * 3^3 * 4^4 * 5^5 * 6^6$.
Steps:
- $2^2 * 3^3 * 4^4 * 5^5 * 6^6$.
- $2^2 * 3^3 * 2^8 * 5^5 * 3^6 * 2^6 $
- $2^{16} * 3^9 * 5^5 $
- Now max power of 2 that can divide $2^{16} * 3^9 * 5^5 $ is $2^{16}$ only.
My doubt is after getting rid of $2^{16}$ from numerator in step 4 we still have $3^9 * 5^5$ which can be divided using 2 though we won't get an integral solution so the approach using prime factorization is incorrect ?
Reference Video:- https://www.youtube.com/watch?v=HNeiXfQ6EAk&list=PLK4eozjPKMfHJCRkHI34sOG7Pk5c31UTq&index=24
Also we cannot make use of calculator for solving this problem can anyone verify the method in the video if possible do describe an alternate method.
Thanks
The method of prime factorization is correct, as shown through your first example. The second example you have cited is wrong. $2$ does not divide $3^{9} \cdot 5^{5} = 61509375$ because there is no even number in the prime factorization.