Tagged Questions

2
votes
1answer
87 views

Why subtraction doesn't work properly using bcmath?

Let's say I have $foo = bcsub(bcdiv(1, 3, 20), 0.00001, 20); it returns me 0.33333333333333333333 If I have $foo = bcsub(bcdiv(1, 3, 20), 0.0001, 20); it returns me 0.33323333333333333332 If ...
2
votes
2answers
389 views

Calculating roots with bc_math or GMP

I'm having trouble calculating roots of rather large numbers using bc_math, example: - pow(2, 2) // 4, power correct - pow(4, 0.5) // 2, square root correct - bcpow(2, 2) // 4, power ...
1
vote
3answers
296 views

Raising to power in PHP

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