|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
Why do floating point numeric equality/inequality tests fail mysteriously? |
| ( #403957=categorized question: print w/ replies, xml ) | Need Help?? |
|
Contributed by itub
on Oct 30, 2004 at 02:49 UTC
Q&A > numbers
Description:Rule #1 of floating-point computing in any language, not just Perl: Never compare two floating-point numbers with == or != (or expect >= et al. to work in the edge cases). Use a tolerance range instead.The reason for this is that floating-point numbers are represented internally as a binary approximation. A consequence of that is that calculations that would be exact in decimal notation are not exact in binary. For example, a simple test like 36.6 + 0.2 == 36.8 may be return false! The same test could be done safely like this:
This topic is covered in greater depth in the Q&A math section, under the title of : My floating point comparison does not work. Why ?. Please post any further answers there. Please (register and) log in if you wish to add an answer
|
|