Calculating Total Zeros in a Large Factorial: Number Theory Explained

  • Context: Graduate 
  • Thread starter Thread starter whatever84
  • Start date Start date
Click For Summary
SUMMARY

This discussion focuses on calculating the total number of zeros in large factorials without computing the entire factorial value. Key methods mentioned include using modular arithmetic with mod 10^n and applying Legendre's Theorem to determine the number of times prime factors divide n!. The example of 20! illustrates that it has 7 zeros, with the discussion emphasizing the computational inefficiency of directly calculating factorials for large numbers. Participants suggest alternative algorithms and improvements to enhance efficiency, such as utilizing Stirling's approximation.

PREREQUISITES
  • Understanding of factorials and their properties
  • Familiarity with modular arithmetic and concepts like mod 10^n
  • Knowledge of Legendre's Theorem and its application in number theory
  • Basic programming skills for implementing algorithms in languages like C++ or Python
NEXT STEPS
  • Research Stirling's approximation for estimating large factorials
  • Learn about advanced algorithms for computing factorials efficiently
  • Explore the implementation of Legendre's Theorem in programming
  • Investigate the use of arbitrary-precision arithmetic libraries for handling large integers
USEFUL FOR

Mathematicians, computer scientists, and software developers interested in number theory, particularly those working on algorithms for calculating properties of large factorials and optimizing computational efficiency.

whatever84
Messages
3
Reaction score
0
Hi all,

Is there any number theory for calculating the total number of zeros ( NOT only the right zeros) in a big factorial without calculating the whole n!.
 
Physics news on Phys.org
Removed wrong answer that ignored the bit in brackets in the OP.
 
Last edited:
Not that I can think of. Counting internal zeros instead of just number of factors of 5 is hard.
 
Are there any attempts to figure out how to count the total number of zeros?
 
Though it's utterly off the top of my head, could you do something with mod 10^n ?

For instance, if X mod 10^n = X mod 10^(n+1) then the n+1'th entry in X is 0. For instance, 301 mod 100 = 1 = 301 mod 10, so the 2nd entry of 301 is zero.

Unfortunately that's about the limit of my understanding of mods which aren't prime other than phrases like "Chinese Remainder Theorem". I imagine you could write a computer program to do the method I just suggested but it'd be much more convoluted than just computing n! and counting zeros.
 
whatever84 said:
Hi all,

Is there any number theory for calculating the total number of zeros ( NOT only the right zeros) in a big factorial without calculating the whole n!.
Lets take an example:

20! = 2432902008176640000

Therefore 20! has 7 0's.

Now it's easy enough to calculate the fact it has 4 end 0s, but the real question is it computationally efficient to consider looking at each of the other digits rather than just explicitly working it out.

Maybe, say you have the number of end 0's, let's call it k, and you're trying to work out the number of 0's in x!, then the obvious algorithm would be:

Code:
For i = (k + 1) to (Floor[Log_10(x!)] - 1)
   If Number of digits (x! mod 10^i) < i
      counter = counter + 1
   End If
End

Number of Zeros = counter + k

Obviously that's not a very efficient code. There are easy improvements you can make, like coming up with your own algorithm to work out x! mod 10^i, easy enough to make quite efficient, also the Log function has some obvious properties making Log_10(x!) very easy to work out. Actually, for very large x, you may want to look at stirlings approximation ( http://mathworld.wolfram.com/StirlingsApproximation.html ) and see if it's accurate enough.

But even so, you have to work out almost x!, with x! mod 10^(number of digits of x - 1), so I'm not sure it'd be any quicker at all, you'd need to test it. Also, ultimately multiplication isn't very hard task for computers, so working out x! isn't particularly difficult.
 
Last edited:
number of trailing zeroes

// computes number of trailing zeroes in n!
int TrailingZeros(int n) {
int num = 0;
while (n >= 5) {
n /= 5;
num += n;
}
return num;
}

The idea is that number factors 5 in p! / (5p)! is p. You can prove this by recurrence. Thus, you do not need to compute p!
 
Zurtex said:
Lets take an example:

Also, ultimately multiplication isn't very hard task for computers, so working out x! isn't particularly difficult.

Working out x! is impossible for x large. 100! does not fit on an integer. Even using 64-bit integer won't take you very far if you need to compute N!
the program you have would overflow very quickly and return invalid results.
 
whatever84 said:
Hi all,

Is there any number theory for calculating the total number of zeros ( NOT only the right zeros) in a big factorial without calculating the whole n!.

You can use a theorem referred to as "Legendre's Theorem"

n! = \prod_{p\leq n} p^{\sum_{k=1}^{\infty} [ n/p^k] }

This is based on the consequence that the total number of times p (a prime) divides n! is:
\sum_{k=1}^{\infty} \left[ \frac{n}{p^k} \right]. So the number of zero's the the minimum of the number of times 2 divides n! and 5 divides n! since 10 = 2*5. Furthermore, since 5>2 it means that the smaller number is the number of times 5 divides n!.
And so by Legendre's formula we have:
\sum_{k=1}^{\infty} \left[ \frac{n}{p^k} \right]
 
  • #10
Both of you should look at the opening post again; you answered the question that the opening poster specifically said he did not want answered.



udwdreams said:
Working out x! is impossible for x large. 100! does not fit on an integer. Even using 64-bit integer won't take you very far if you need to compute N!
the program you have would overflow very quickly and return invalid results.
Why limit yourself to 64-bit integers?
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 12 ·
Replies
12
Views
753
  • · Replies 3 ·
Replies
3
Views
995
  • · Replies 5 ·
Replies
5
Views
1K
Replies
8
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 11 ·
Replies
11
Views
4K