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?

link|improve this question

64% accept rate
2^1023 is the upper limit for IEEE double-precision floating point values. – Loadmaster Oct 29 '09 at 23:01
feedback

2 Answers

up vote 3 down vote accepted

You can use the BC Math functions:

  $num = bcpow(2, 1000000); // Takes a few seconds to run!
link|improve this answer
I'll experiment with both BC Math and GMP – Chad Oct 29 '09 at 22:20
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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