Thread Closed

zeroes at the end of a FACTORIAL

 
Share Thread
Aug4-05, 02:26 AM   #1
 
Question

zeroes at the end of a FACTORIAL


how can i find the number of zeroes at the end of 100!
how can i find the number of zeroes at the end of n!

thanks in advance.
PhysOrg.com science news on PhysOrg.com

>> Leading 3-D printer firms to merge in $403M deal (Update)
>> LA to give every student an iPad; $30M order
>> CIA faulted for choosing Amazon over IBM on cloud contract
Aug4-05, 06:44 AM   #2
 
Quote by murshid_islam
how can i find the number of zeroes at the end of 100!
how can i find the number of zeroes at the end of n!

thanks in advance.
Your question is the same as finding out how often 5 is a prime factor on the natural numbers.

So I am guessing that 100! has 20 zeros, because in counting by fives, we get to 100 after 20 steps.
Aug4-05, 07:02 AM   #3
 
Recognitions:
Homework Helper Homework Help
Quote by SteveRives
Your question is the same as finding out how often 5 is a prime factor on the natural numbers.

So I am guessing that 100! has 20 zeros, because in counting by fives, we get to 100 after 20 steps.
You are WRONG, SteveRives.
24 zeros is the answer.
(*)You will have a number which is divisible by 5 for every 5 successive integer.
(*)You will have a number which is divisible by 25 (ie 5.5) for every 25 successive integer.
(*)You will have a number which is divisible by 125 (ie 5.5.5) for every 125 successive integer, and so on...
So you will have 20 numbers which is divisible by 5 (included numbers that is divisible by 25).
And you will have 4 numbers which is divisible by 25.
So you will have: 20 + 4 = 24 zeros in 100!
In general, you will have: n! has:
[tex]C = \left[ \frac{n}{5} \right] + \left[ \frac{n}{5 ^ 2} \right] + \left[ \frac{n}{5 ^ 3} \right] + ... + \left[ \frac{n}{5 ^ q} \right][/tex] zeros at the end.
You can stop the sum at any q such that:
[tex]\left[ \frac{n}{5 ^ q} \right] = 0[/tex]
Where [...] denotes the integer part of a number. For example : [1.55] = 1, [0.77] = 0, [14.333333] = 14.
Viet Dao,
Aug4-05, 08:07 AM   #4
 

zeroes at the end of a FACTORIAL


Yes, I just realized that we have to add four more! Why? Because in 20 steps, there are four times that five is reduplicated.

Finding the number of times 5 is a prime factor is right, but, for example, when we get to 25 it is in there twice. And so 20 / 5 is 4. There are four times that happens. Add that back into the 20 and we get 24.
Oct9-10, 01:56 PM   #5
 
The formula given in this thread is inaccurate. It's not the rounding function, but the floor function that should be used.

floor(n/5)+floor(n/(52))+floor(n/(53))+...

This is because rounding each quotient may occasionally result in counts that are too high. For example: 999!

999/5=199.8~200 (correct value: 199)
999/25=39.96~40 (correct value: 39)
999/125=7.992~8 (correct value: 7)
999/625=1.5984~2 (correct value: 1)
Total: 250 (correct value: 246)

As you can see, there's an error of 4 zeros!

Edit: Never mind. I misinterpreted his symbols. The Rounding function is usually indicated by square brackets. The Floor, or the integer part of the number, is indicated by L-shaped brackets. So naturally without reading the entire post, I jumped to a conclusion.
Mar29-12, 05:19 AM   #6
 
for writing a program it may be useful to get the number of zeros at the end of a factorial without usage of floor function:

n = p(1)*5 + q(1)

p(1) = p(2)*5 + q(2)
p(2) = p(3)*5 + q(3)

etc

p(n-1) = p(n)*5 + q(n)

so,

p(n) = (p(n-1) - q(n))/5
p(n-1) = (p(n-2) - q(n-1))/5

etc

where q(i) is actually p(i-1) mod 5 , or q(i) = p(i-1)%5
Apr7-12, 12:55 PM   #7
 
You provided the easiest solution.

One 5 each from 5,10,15,20,30,35,40,45,55.......70,80,85…
(excluded 25,50,75,100) so that's 15x1=15

Two 5s each from 25,50,100
Three 5s from 75

15+2x3+3x1=24

It was an easy problem. Why did I think its tough :/
Thanks for answering, everyone.
Apr23-12, 11:18 AM   #8
 
Mentor
Blog Entries: 8
This thread is 7 years old.
Thread Closed

Similar discussions for: zeroes at the end of a FACTORIAL
Thread Forum Replies
Locus of zeroes Calculus 3
multiplicities of zeroes Calculus & Beyond Homework 1
rooted zeroes Calculus 4
Proof of function zeroes. Calculus & Beyond Homework 1
Zeroes Linear & Abstract Algebra 15