vote up 0 vote down star

Using PHP I want to do millions of 2^n exponentiation but so far I only got up to n^1023 before PHP printed INF.

Any ideas?

flag

2^1023 is the upper limit for IEEE double-precision floating point values. – Loadmaster Oct 29 at 23:01

2 Answers

vote up 3 vote down check

You can use the BC Math functions:

  $num = bcpow(2, 1000000); // Takes a few seconds to run!
link|flag
I'll experiment with both BC Math and GMP – Chad Oct 29 at 22:20
vote up 4 vote down

As Greg said, BC Math is fine, but if you really need efficiency, try GMP instead.

link|flag

Your Answer

Get an OpenID
or

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