Rabab36
Bunuel has already shared the correct way to find the power, sharing a another way you can approach the problem (using successive division). Please note, both methods use the same underline principle.
Suppose you want to find the power of prime number p in n!. To so do, divide p (dividend) by n (divisor) successively and in the process keep a note of the quotient obtained. The division needs to be done till the quotient obtained is less than the divisor. Once the division is performed, add all the quotient to get the powerLet's see this with 77!.
We want to find the power of 2 in 77!.
Step 1 : Divide 77 by 2, and keep a track of the quotient.
\(\frac{77}{2}\) =
Q 38Step 2 : Now divide the obtained quotient from step 1, with the divisor (2) in this case and keep a track of the quotient.
\(\frac{38}{2}\) =
Q 19Keep repeating the process, till the quotient is less than the divisor
\(\frac{19}{2}\) =
Q 9\(\frac{9}{2}\) =
Q 4\(\frac{4}{2}\) =
Q 2\(\frac{2}{2}\) =
Q 1As we have obtained a quotient, 1, which is less than the divisor we can stop the process.
Step 3 Power = Sum of all the quotients obtained =
1 + 2 + 4 + 9 + 19 + 38 = 73
Attachments

Screenshot 2022-12-27 173519.jpg [ 47.19 KiB | Viewed 2916 times ]