I'm using GMP to calculate very large factorials (e.g. 234234!). Is there any way of knowing, before one does the calculation, how many digits long the result will (or might) be?
|
|
|
|
|
|
|
The logarithm of the factorial can be used to calculate the number of digits that the factorial number will take:
This can be easily translated to an algorithmic form:
|
||||||
|
|
|
Yes, see Stirling approximation It says n! ~= sqrt(2*Pi*n)*(n/e)^n. To get the number of digits, take 1+log(n!)/log(10). |
||||||
|
|
|
Stirling's Approximation gives an approximation of of the size of n!
See the Wikipedia page for the derivation. |
||||
|
|
|
You can transform Stirling's approximation formula using simple logarithmic math to get you the number of digits:
Hardware float math is sufficient for this, which makes it lightning fast. |
||||
|
|
|
it would be
see topic "rate of growth" @ http://en.wikipedia.org/wiki/Factorial Srinivasa Ramanujan method |
|||
|
|
|
|
Well about four people have mentioned Stirling so... another option is a LUT storing the number of digits for each of the first N factorials. Assuming 4 bytes for the integer and 4 bytes for the number of digits, you could store the first 1,000,000 factorials in around 8MB. |
||||||
|


