Well, i need to do some calculations in PHP script. And i have one expression that behaves wrong.

echo 10^(-.01);

Outputs 10

echo 1 / (10^(.01));

Outputs 0

echo bcpow('10', '-0.01') . '<br/>';

Outputs 1

echo bcdiv('1', bcpow('10', '0.01'));

Outputs 1.000....

I'm using bcscale(100) for BCMath calculations.

Excel and Wolfram Mathematica give answer ~0,977237.

Any suggestions?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

The caret is the bit-wise XOR operator in PHP. You need to use pow() for integers.

link|improve this answer
feedback

The ^ operator is the bitwise XOR operator. You have to use either pow, bcpow or gmp_pow:

var_dump(pow(10, -0.01));  // float(0.977237220956)
link|improve this answer
I tried using bcpow. No luck. – Kuroki Kaze Jul 31 '09 at 9:42
2  
And it seems like gmp_pow accepts only positive powers. Of course, we can convert in to 1/gmp_pow('10', '.01') :) – Kuroki Kaze Jul 31 '09 at 9:49
feedback

The bcpow function only supports integer exponents. Try using pow 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.