A little diversion into floating point (im)precision, part 1 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:15:44Z http://stackoverflow.com/feeds/question/1053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1 2 A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-04T06:21:38Z 2009-11-20T20:37:54Z <p>Most mathematicians agree that e ** (πi) + 1 = 0. However, most floating point implementations disagree. How well can we settle this dispute?</p> <p>I'm keen to hear about different languages and implementations, and various methods to make the result as close to zero as possible. Be creative!</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/1054#1054 3 Answer by Chris Jester-Young for A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-04T06:22:18Z 2008-08-25T00:36:45Z <p>Here's a short list of implementations and languages I've tried. It's sorted by closeness to zero:</p> <ul> <li>Scheme: <code>(+ 1 (make-polar 1 (atan 0 -1)))</code> <ul> <li>⇒ <code>0.0+1.2246063538223773e-16i</code> (Chez Scheme, MIT Scheme)</li> <li>⇒ <code>0.0+1.22460635382238e-16i</code> (Guile)</li> <li>⇒ <code>0.0+1.22464679914735e-16i</code> (Chicken with <code>numbers</code> egg)</li> <li>⇒ <code>0.0+1.2246467991473532e-16i</code> (MzScheme, SISC, Gauche, Gambit)</li> <li>⇒ <code>0.0+1.2246467991473533e-16i</code> (SCM)</li> </ul></li> <li>Common Lisp: <code>(1+ (exp (complex 0 pi)))</code> <ul> <li>⇒ <code>#C(0.0L0 -5.0165576136843360246L-20)</code> (CLISP)</li> <li>⇒ <code>#C(0.0d0 1.2246063538223773d-16)</code> (CMUCL)</li> <li>⇒ <code>#C(0.0d0 1.2246467991473532d-16)</code> (SBCL)</li> </ul></li> <li>Perl: <code>use Math::Complex; Math::Complex-&gt;emake(1, pi) + 1</code> <ul> <li>⇒ <code>1.22464679914735e-16i</code></li> </ul></li> <li>Python: <code>from cmath import exp, pi; exp(complex(0, pi)) + 1</code> <ul> <li>⇒ <code>1.2246467991473532e-16j</code> (CPython)</li> </ul></li> <li>Ruby: <code>require 'complex'; Complex::polar(1, Math::PI) + 1</code> <ul> <li>⇒ <code>Complex(0.0, 1.22464679914735e-16)</code> (MRI)</li> <li>⇒ <code>Complex(0.0, 1.2246467991473532e-16)</code> (JRuby)</li> </ul></li> <li>R: <code>complex(argument = pi) + 1</code> <ul> <li>⇒ <code>0+1.224606353822377e-16i</code></li> </ul></li> </ul> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/1057#1057 2 Answer by Ryan Fox for A little diversion into floating point (im)precision, part 1 Ryan Fox 2008-08-04T06:29:03Z 2008-08-04T06:29:03Z <p>Is it possible to settle this dispute?</p> <p>My first thought is to look to a symbolic language, like <a href="http://en.wikipedia.org/wiki/Maple_%28software" rel="nofollow">Maple</a>. I don't think that counts as floating point though.</p> <p>In fact, how does one represent <em>i</em> (or <em>j</em> for the engineers) in a conventional programming language?</p> <p>Perhaps a better example is sin(π) = 0? (Or have I missed the point again?)</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/1060#1060 0 Answer by Chris Jester-Young for A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-04T06:36:06Z 2008-08-04T06:49:33Z <p>@Ryan: It is, in fact, very much like the question of whether sin π = 0. Again, no FP implementation I have here shows it to be 0, thus, I suppose the "dispute" cannot fully be resolved 100%. But since we're talking about FP, approximate solutions will have to do. :-P</p> <p>Many programming languages have a complex-number class, that simply holds two <code>double</code>s. To me, that's good enough, if the language also has facilities for doing (some sort of) overloaded operations on them (e.g., the use of <code>cmath</code> in Python is okay, despite not being strictly an overload).</p> <p>I haven't used Maple, so I can't comment on that. :-P</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/25528#25528 2 Answer by Dana the Sane for A little diversion into floating point (im)precision, part 1 Dana the Sane 2008-08-25T01:10:29Z 2008-08-25T01:10:29Z <p>I agree with Ryan, you would need to move to another number representation system. The solution is outside the realm of floating point math because you need pi to represented as an infinitely long decimal so any limited precision scheme just isn't going to work (at least not without employing some kind of fudge-factor to make up the lost precision).</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/26026#26026 1 Answer by dmckee for A little diversion into floating point (im)precision, part 1 dmckee 2008-08-25T13:29:01Z 2008-08-25T13:40:18Z <p>@Ryan Fox <blockquote>In fact, how does one represent i (or j for the engineers) in a conventional programming language?</blockquote></p> <p>Native complex data types are far from unknown. Fortran had it by the mid-sixties, and the OP exhibits a variety of other languages that support them in hist followup. </p> <p>And complex numbers can be added to other languages as libraries (with operator overloading they even look just like native types in the code).</p> <p>But unless you provide a special case for this problem, the "non-agreement" is just an expression of imprecise machine arithmetic, no? It's like complaining that</p> <pre><code>float r = 2/3; float s = 3*r; float t = s - 2; </code></pre> <p>ends with (t != 0) (At least if you use an dumb enough compiler)...</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/26038#26038 3 Answer by Herms for A little diversion into floating point (im)precision, part 1 Herms 2008-08-25T13:37:28Z 2008-08-25T13:37:28Z <p>Your question seems a little odd to me, as you seem to be suggesting that the Floating Point math is implemented by the language. That's generally not true, as the FP math is done using a floating point processor in hardware. But software or hardware, floating point will always be inaccurate. That's just how floats work.</p> <p>If you need better precision you need to use a different number representation. Just like if you're doing integer math on numbers that don't fit in an int or long. Some languages have libraries for that built in (I know java has BigInteger and BigDecimal), but you'd have to explicitly use those libraries instead of native types, and the performance would be (sometimes significantly) worse than if you used floats.</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/26055#26055 1 Answer by Chris for A little diversion into floating point (im)precision, part 1 Chris 2008-08-25T13:48:46Z 2008-08-25T13:48:46Z <blockquote> <p>In fact, how does one represent i (or j for the engineers) in a conventional programming language?</p> </blockquote> <p>In a language that doesn't have a native representation, it is usually added using OOP to create a <code>Complex</code> class to represent <code>i</code> and <code>j</code>, with operator overloading to properly deal with operations involving other <code>Complex</code> numbers and or other number primitives native to the language.</p> <p>Eg: <a href="http://www.math.ksu.edu/~bennett/jomacg/c.html" rel="nofollow">Complex.java</a>, <a href="http://msdn.microsoft.com/en-us/library/0352zzhd%28VS.80%29.aspx" rel="nofollow">C++ &lt; complex ></a></p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/27068#27068 0 Answer by Chris Jester-Young for A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-25T22:53:29Z 2008-08-25T22:53:29Z <p>Excellent answers all; thank you. (I believe I've upmodded every answer here so far.)</p> <p>@Dana: Bingo! My question indeed is to see which implementations employ some sort of fudge factor to make the answer closer to 0 than others. One way to do this, for example, is to have a special quantity π, much like many languages have a special quantity i for complex numbers; numbers are then stored in terms of multiples of 1, i, and π, as appropriate.</p> <p>Of course this probably shouldn't be built into the central language, but a library module to do this transparently would be nice. And it will make a variety of trigonometric operations more precise (if special versions are provided by said library module).</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/394225#394225 4 Answer by Lasse V. Karlsen for A little diversion into floating point (im)precision, part 1 Lasse V. Karlsen 2008-12-26T20:22:01Z 2008-12-26T20:22:01Z <p>It's not that most floating point implementations disagree, it's just that they cannot get the accuracy necessary to get a 100% answer. And the correct answer is that they can't.</p> <p>PI is an infinite series of digits that nobody has been able to denote by anything other than a symbolic representation, and e^X is the same, and thus the only way to get to 100% accuracy is to go symbolic.</p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/394290#394290 1 Answer by Brent.Longborough for A little diversion into floating point (im)precision, part 1 Brent.Longborough 2008-12-26T21:22:09Z 2008-12-27T12:10:04Z <p>Numerical Analysis teaches us that you can't rely on the precise value of small differences between large numbers. </p> <p>This doesn't just affect the equation in question here, but can bring instability to everything from solving a near-singular set of simultaneous equations, through finding the zeros of polynomials, to evaluating log(~1) or exp(~0) (I have even seen special functions for evaluating log(x+1) and (exp(x)-1) to get round this).</p> <p>I would encourage you not to think in terms of zeroing the difference -- you can't -- but rather in doing the associated calculations in such a way as to ensure the minimum error.</p> <p>I'm sorry, it's 43 years since I had this drummed into me at uni, and even if I could remember the references, I'm sure there's better stuff around now. I suggest <strong><em><a href="http://en.wikipedia.org/wiki/Numerical_analysis#The_generation_and_propagation_of_errors" rel="nofollow">this</a></em></strong> as a starting point.</p> <p><hr /></p> <p>If that sounds a bit patronising, I apologise. My "Numerical Analysis 101" was part of my Chemistry course, as there wasn't much CS in those days. I don't really have a feel for the place/importance numerical analysis has in a modern CS course. </p> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1/1773104#1773104 1 Answer by Mark Essel for A little diversion into floating point (im)precision, part 1 Mark Essel 2009-11-20T20:37:54Z 2009-11-20T20:37:54Z <p>It's a limitation of our current floating point computational architectures. Floating point arithmetic is only an approximation of numeric poles like e or pi (or anything beyond the precision your bits allow). I really enjoy these numbers because they defy classification, and appear to have greater entropy(?) than even primes, which are a canonical series. A ratio defy's numerical representation, sometimes simple things like that can blow a person's mind (I love it).</p> <p>Luckily entire languages and libraries can be dedicated to precision trigonometric functions by using notational concepts (similar to those described by <a href="http://stackoverflow.com/users/267/lasse-v-karlsen">Lasse V. Karlsen</a> ). </p> <p>Consider a library/language that describes concepts like e and pi in a form that a machine can understand. Does a machine have any notion of what a perfect circle is? Probably not, but we can create an object - circle that satisfies all the known features we attribute to it (constant radius, relationship of radius to circumference is 2*pi*r = C). An object like pi is only described by the aforementioned ratio. r &amp; C can be numeric objects described by whatever precision you want to give them. e can be defined "as the e is the unique real number such that the value of the derivative (slope of the tangent line) of the function f(x) = ex at the point x = 0 is exactly 1" from <a href="http://en.wikipedia.org/wiki/E%5F%28mathematical%5Fconstant%29" rel="nofollow">wikipedia</a>.</p> <p>Fun question.</p>