Strange floating-point behaviour in a Java program - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:28:23Z http://stackoverflow.com/feeds/question/327544 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program 1 Strange floating-point behaviour in a Java program Stella 2008-11-29T13:44:48Z 2008-11-29T21:44:36Z <p>In my program I have one array with 25 double values 0.04 When I try to sum these values in a loop I get following results:</p> <pre><code>0.0 + 0.04 = 0.04 0.04 + 0.04 = 0.08 0.08 + 0.04 = 0.12 0.12 + 0.04 = 0.16 0.16 + 0.04 = 0.2 0.2 + 0.04 = 0.24000000000000002 0.24000000000000002 + 0.04 = 0.28 0.28 + 0.04 = 0.32 0.32 + 0.04 = 0.36 0.36 + 0.04 = 0.39999999999999997 0.39999999999999997 + 0.04 = 0.43999999999999995 0.43999999999999995 + 0.04 = 0.4799999999999999 0.4799999999999999 + 0.04 = 0.5199999999999999 0.5199999999999999 + 0.04 = 0.5599999999999999 0.5599999999999999 + 0.04 = 0.6 0.6 + 0.04 = 0.64 0.64 + 0.04 = 0.68 0.68 + 0.04 = 0.7200000000000001 0.7200000000000001 + 0.04 = 0.7600000000000001 0.7600000000000001 + 0.04 = 0.8000000000000002 0.8000000000000002 + 0.04 = 0.8400000000000002 0.8400000000000002 + 0.04 = 0.8800000000000002 0.8800000000000002 + 0.04 = 0.9200000000000003 0.9200000000000003 + 0.04 = 0.9600000000000003 </code></pre> <p>Why on earth could that happen?!</p> http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327551#327551 18 Answer by Barry Kelly for Strange floating-point behaviour in a Java program Barry Kelly 2008-11-29T13:50:08Z 2008-11-29T13:50:08Z <p>The most common storage for floating-point values in programming languages - <a href="http://en.wikipedia.org/wiki/IEEE_754" rel="nofollow">IEEE singles and doubles</a> - does not have exact representations for most decimal fractions.</p> <p>The reason is that they store values in binary floating-point format, rather than decimal floating-point format. The only fractional values which can be represented exactly are those which are sums of negative powers of two. Numbers like:</p> <ul> <li>0.5 (2^-1)</li> <li>0.125 (2^-3)</li> <li>0.625 (2^-1 + 2^-3)</li> </ul> <p>Etc.</p> <p>What you are seeing is the fact that representations of numbers like 0.96 are not exactly representable, because they are not expressible as a sum of negative powers of two. Thus, when printed out with full precision as a decimal fraction, they won't match the original value.</p> http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327556#327556 11 Answer by John the Statistician for Strange floating-point behaviour in a Java program John the Statistician 2008-11-29T13:52:24Z 2008-11-29T13:52:24Z <p>See also "<a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">What Every Computer Scientist Should Know About Floating Point</a>"</p> http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327560#327560 0 Answer by Paul for Strange floating-point behaviour in a Java program Paul 2008-11-29T13:55:01Z 2008-11-29T13:55:01Z <p>Duplicate of <a href="http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-214-as-2139999961">this question</a></p> http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327567#327567 2 Answer by CesarB for Strange floating-point behaviour in a Java program CesarB 2008-11-29T14:10:42Z 2008-11-29T14:10:42Z <p>Other answers mentioned why, but not how to avoid it.</p> <p>There are several solutions:</p> <ul> <li>Scaling: if all your numbers are multiples of 0.01 (for instance), multiply everything by 100 and use integer arithmetic (which is exact).</li> <li>Numeric type: if your language has a numeric type (like a <code>numeric</code> type in SQL), you can use it.</li> <li>Arbitrary precision rationals: use a bignum library like <a href="http://gmplib.org/" rel="nofollow">GMP</a>, which allows you to represent these numbers as the ratio of two integers.</li> <li>Decimal floating point: if you have a decimal floating point like the one in <a href="http://en.wikipedia.org/wiki/IEEE_754_revision#decimal_arithmetic" rel="nofollow">IEEE-754r</a>, you can use it.</li> </ul> http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/328049#328049 1 Answer by Ewen Cartwright for Strange floating-point behaviour in a Java program Ewen Cartwright 2008-11-29T21:44:36Z 2008-11-29T21:44:36Z <p>You may wish to check out the java <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html" rel="nofollow">BigDecimal</a> class as an alternative to floats and doubles.</p>