vote up 1 vote down star

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?

flag

6 Answers

vote up 5 vote down check

The logarithm of the factorial can be used to calculate the number of digits that the factorial number will take:

logn!

This can be easily translated to an algorithmic form:

//Pseudo-code
function factorialDigits (n) 
  var result = 0;

  for(i = 1; i<=n; i++)
    result += log10(n);

  return result;
link|flag
2  
This isn't the most efficient method, but by Knuth, every programmer should know enough math to think of it almost immediately. – Michael Borgwardt Jul 11 at 8:16
except me, of course, who doesn't know enough math (or maths, as we call it in this country.) – boost Jul 17 at 6:39
vote up 1 vote down

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).

link|flag
to clarify - 1+log(n)/log(10) would give the number of digits of n, not of n! – grifaton Jul 11 at 7:41
thanks, I fixed it – Eric Bainville Jul 11 at 7:47
it will require to calculate n! any ways :), that is not what boost wants to do – Ratnesh Maurya Jul 11 at 7:50
vote up 3 vote down

Stirling's Approximation gives an approximation of of the size of n!

alt text

See the Wikipedia page for the derivation.

link|flag
As Rats remarked on my previously identical reply, calculating n^n is not really feasible either. It quickly goes beyond what even a double-precision float can hold, and using Java BigInteger, calculation time on my (admittedly slow) system were 30s for 100,000, 130s for 200,000 - you can see where that's going. – Michael Borgwardt Jul 11 at 8:57
that's a fair point! – grifaton Jul 12 at 10:54
vote up 9 vote down

You can transform Stirling's approximation formula using simple logarithmic math to get you the number of digits:

n!         ~ sqr(2*pi*n) * (n/e)^n
log10(n!)  ~ log10(2*pi*n)/2 + n*log10(n/e)

Hardware float math is sufficient for this, which makes it lightning fast.

link|flag
it will require to calculate n^n, again a costly calulation – Ratnesh Maurya Jul 11 at 8:04
I just remembered that I actually once faced exactly the same problem and how I solved it – Michael Borgwardt Jul 11 at 8:06
vote up 1 vote down

it would be

nlog(n) - n + log(n(1 + 4n(1 + 2n)))/6 + log(pi)/2

see topic "rate of growth" @ http://en.wikipedia.org/wiki/Factorial Srinivasa Ramanujan method

link|flag
vote up 1 vote down

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.

link|flag
1  
You still have to calculate the values for the table though. And I doubt you want to spend a few years or decades doing, which is what you would, calculating it straightforward. – Michael Borgwardt Jul 11 at 8:50
Well, you'd calculate all N factorials from 1! to N! in a single consecutive pass. So you'd be looking at N total multiplications and at some point you'd bog down in heavy-number arithmetic but should this take decades? What's the correlation between N and processing time? – Coding the Wheel Jul 11 at 10:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.