$a = '35';
$b = '-34.99';
echo ($a + $b);
Results in 0.009999999999998
What is up with that? I wondered why my program kept reporting odd results.
Why doesn't PHP return the expected 0.01?
Results in 0.009999999999998 What is up with that? I wondered why my program kept reporting odd results. Why doesn't PHP return the expected 0.01? |
||||
|
Because floating point arithmetic != real number arithmetic. An illustration of the difference due to imprecision is, for some floats Since floating point are binary numbers with finite precision, there's a finite amount of representable numbers, which leads accuracy problems and surprises like this. Here's another interesting read: What Every Computer Scientist Should Know About Floating-Point Arithmetic. Back to your problem, basically there is no way to accurately represent 34.99 or 0.01 in binary (just like in decimal, 1/3 = 0.3333...), so approximations are used instead. To get around the problem, you can:
It's a pity that PHP doesn't have a decimal datatype like other languages do. |
|||||||||||||||||
|
|
Floating point numbers, like all numbers, must be stored in memory as a string of 0's and 1's. It's all bits to the computer. How floating point differs from integer is in how we interpret the 0's and 1's when we want to look at them. One bit is the "sign" (0 = positive, 1 = negative), 8 bits are the exponent (ranging from -128 to +127), 23 bits are the number known as the "mantissa". So the binary representation of (S1)(P8)(M23) has the value (-1^S)M*2^P The "mantissa" takes on a special form. In normal scientific notation we display the "one's place" along with the fraction. For instance: 4.39 x 10^3 = 439 In binary the "one's place" is a single bit. Since we ignore all the left-most 0's in scientific notation (we ignore any insignificant figures) the first bit is guaranteed to be a 1 1.101 x 2^4 = 1101 = 13 Since we are guaranteed that the first bit will be a 1, we remove this bit when storing the number to save space. So the above number is stored as just 101 (for the mantissa). The leading 1 is assumed As an example, let's take the binary string
Breaking it into it's components:
Applying our simple formula:
In other words, 00000010011011000000000000000000 is 27 in floating point (according to IEEE-754 standards). For many numbers there is exact binary representation, however. Much like how 1/3 = 0.333.... repeating forever, 1/100 is 0.00000010100011110101110000..... with a repeating "10100011110101110000". A 32-bit computer can't store the entire number in floating point, however. So it makes its best guess.
(note that negative 7 is produced using 2's complement) It should be immediately clear that 01111100101000111101011100001010 looks nothing like 0.01 More importantly, however, this contains a truncated version of a repeating decimal. The original decimal contained a repeating "10100011110101110000". We've simplified this to 01000111101011100001010 Translating this floating point number back into decimal via our formula we get 0.0099999979 (note that this is for a 32-bit computer. A 64-bit computer would have much more accuracy) When the Operating System sees a number like this, it has to determine if it should use the number as it sees it, or if it should round to a more meaningful number. Most computers will use the number as it's stored, since this is considered "safer". Some computers, however (Windows does this, I believe) will "round" to the nearest "simple" decimal number. In this case, 0.01 looks like a good candidate. |
|||||
|
|
There's plenty of answers here about why floating point numbers work the way they do... But there's little talk of arbitrary precision (Pickle mentioned it). If you want (or need) exact precision, the only way to do it (for rational numbers at least) is to use the BC Math extension (which is really just a BigNum, Arbitrary Precision implementation... To add two numbers:
will result in This is called arbitrary precision math. Basically all numbers are strings which are parsed for every operation and operations are performed on a digit by digit basis (think long division, but done by the library). So that means it's quite slow (in comparison to regular math constructs). But it's very powerful. You can multiply, add, subtract, divide, find modulo and exponentiate any number that has an exact string representation. So you can't do But, if you want to know what Using 32 bit floats (double precision) gives the estimated result of:
But bcmath gives the exact answer of:
It all depends on the precision you need. Also, something else to note here. PHP can only represent either 32 bit or 64 bit integers (depending on your install). So if an integer exceeds the size of the native int type (2.1 billion for 32bit, 9.2 x10^18, or 9.2 billion billion for signed ints), PHP will convert the int into a float. While that's not immediately a problem (Since all ints smaller than the precision of the system's float are by definition directly representable as floats), if you try multiplying two together, it'll lose significant precision. For example, given As a number, As a string (using BC math), So if you need the precision with large numbers, or rational decimal points, you might want to look into bcmath... |
|||||
|
|
Use PHP's This answer solves problem, but not explains why. I thought that it is obvious [I am also programming in C++, so it IS obvious for me ;]], but if not, let's say that PHP has it's own calculating precision and in that particular situation it returned most complying information regarding that calculation. |
|||||||||||||||
|
|
my php returns 0.01...
maybe it have todo with php version, (i using 5.2) |
|||||||||||||||
|
|
Because 0.01 can't be represented exactly as sum of series of binary fractions. And that is how floats are stored in memory. I guess it is not what you want to hear, but it is answer to question. For how to fix see other answers. |
|||||
|
|
bcadd() might be useful here.
(inefficient output for clarity) First line gives me 0.009999999999998. Second gives me 0.01 |
|||
|
|
$a = 35; $b = -34.99instead. – NullUserException♦ Sep 16 '10 at 13:41