Orange08
If 60! is written out as an integer, with how many consecutive 0’s will that integer end?
6
12
14
42
56
Trailing zeros:Trailing zeros are a sequence of 0's in the decimal representation (or more generally, in any positional representation) of a number, after which no other digits follow.
125000 has 3 trailing zeros;
The number of trailing zeros in the decimal representation of
n!, the factorial of a non-negative integer n, can be determined with this formula:
\(\frac{n}{5}+\frac{n}{5^2}+\frac{n}{5^3}+...+\frac{n}{5^k}\), where k must be chosen such that 5^(k+1)>nIt's more simple if you look at an example:
How many zeros are in the end (after which no other digits follow) of 32!?
\(\frac{32}{5}+\frac{32}{5^2}=6+1=7\) (denominator must be less than 32, \(5^2=25\) is less)
So there are 7 zeros in the end of 32!
The formula actually counts the number of factors 5 in n!, but since there are at least as many factors 2, this is equivalent to the number of factors 10, each of which gives one more trailing zero.
BACK TO THE ORIGINAL QUESTION:According to above 60! has \(\frac{60}{5}+\frac{60}{25}=12+2=14\) trailing zeros.
Answer: C.
For more on this issues check Factorials and Number Theory links in my signature.
Hope it helps.
a question Bunuel (just for sure): 32/25 is 1.28 ....BUT if the result was for instance a number / another number = 1,764 we round it to 2 (the next integer) ??