Why does the order affect the rounding when adding multiple doubles in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:03:22Z http://stackoverflow.com/feeds/question/696769 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c 6 Why does the order affect the rounding when adding multiple doubles in C# d4nt 2009-03-30T11:05:47Z 2009-03-30T15:54:45Z <p>Consider the following C# code:</p> <pre><code>double result1 = 1.0 + 1.1 + 1.2; double result2 = 1.2 + 1.0 + 1.1; if (result1 == result2) { ... } </code></pre> <p>result1 should always equal result2 right? The thing is, it doesn't. result1 is 3.3 and result2 is 3.3000000000000003. The only difference is the order of the constants.</p> <p>I know that doubles are implemented in such a way that rounding issues can occur. I'm aware that I can use decimals instead if I need absolute precision. Or that I can use Math.Round() in my if statement. I'm just a nerd who wants to understand what the C# compiler is doing. Can anyone tell me?</p> <p><strong>Edit:</strong></p> <p>Thanks to everyone who's so far suggested reading up on floating point arithmetic and/or talked about the inherent inaccuracy of how the CPU handles doubles. But I feel the main thrust of my question is still unanswered. Which is my fault for not phrasing it correctly. Let me put it like this:</p> <p>Breaking down the above code, I would expect the following operations to be happening:</p> <pre><code>double r1 = 1.1 + 1.2; double r2 = 1.0 + r1 double r3 = 1.0 + 1.1 double r4 = 1.2 + r3 </code></pre> <p>Let's assume that each of the above additions had a rounding error (numbered e1..e4). So r1 contains rounding error e1, r2 includes rounding errors e1 + e2, r3 contains e3 and r4 contains e3 + e4.</p> <p>Now, I don't know how exactly how the rounding errors happen but I would have expected e1+e2 to equal e3+e4. Clearly it doesn't, but that seems somehow wrong to me. Another thing is that when I run the above code, I don't get any rounding errors. That's what makes me think it's the C# compiler that's doing something weird rather than the CPU.</p> <p>I know I'm asking a lot and maybe the best answer anyone can give is to go and do a PHD in CPU design, but I just thought I'd ask.</p> <p><strong>Edit 2</strong></p> <p>Looking at the IL from my original code sample, it's clear that it's the compiler not the CPU that's doing this:</p> <pre><code>.method private hidebysig static void Main(string[] args) cil managed { .entrypoint .maxstack 1 .locals init ( [0] float64 result1, [1] float64 result2) L_0000: nop L_0001: ldc.r8 3.3 L_000a: stloc.0 L_000b: ldc.r8 3.3000000000000003 L_0014: stloc.1 L_0015: ret } </code></pre> <p>The compiler is adding up the numbers for me!</p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/696779#696779 2 Answer by Mitch Wheat for Why does the order affect the rounding when adding multiple doubles in C# Mitch Wheat 2009-03-30T11:08:46Z 2009-03-30T11:21:09Z <p>Order of floating point operations is important. Doesn't directly answer your question, but you should always be careful comparing floating point numbers. It's usual to include a tolerance:</p> <pre><code>double epsilon = 0.0000001; if (abs(result1 - result2) &lt;= epsilon) { ... } </code></pre> <p>This may be of interest: <a href="http://docs.sun.com/source/806-3568/ncg%5Fgoldberg.html" rel="nofollow">What Every Computer Scientist Should Know About Floating-Point Arithmetic</a> </p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/696780#696780 6 Answer by Brann for Why does the order affect the rounding when adding multiple doubles in C# Brann 2009-03-30T11:09:15Z 2009-03-30T11:14:26Z <p>The c# compiler isn't doing anything. The CPU is.</p> <p>if you have A in a CPU register, and you then add B, the result stored in that register is A+B, approximated to the floating precision used</p> <p>If you then add C, the error adds up. This error addition is not a transitive operation, thus the final difference.</p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/696803#696803 1 Answer by vartec for Why does the order affect the rounding when adding multiple doubles in C# vartec 2009-03-30T11:16:43Z 2009-03-30T11:16:43Z <blockquote> <p>result1 should always equal result2 right?</p> </blockquote> <p><strong>Wrong</strong>. That's true in mathematics, but no in <a href="http://en.wikipedia.org/wiki/Floating%5Fpoint" rel="nofollow">floating-point arithmetics</a>.</p> <p>You'll need to read some <a href="http://docs.sun.com/source/806-3568/ncg%5Fgoldberg.html" rel="nofollow">Numerical Analysis primer</a>. </p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/696807#696807 0 Answer by chris for Why does the order affect the rounding when adding multiple doubles in C# chris 2009-03-30T11:18:05Z 2009-03-30T11:18:05Z <p>You are actually not using the same values because the intermediate results are different:</p> <pre><code>double result1 = 2.1 + 1.2; double result2 = 2.2 + 1.1; </code></pre> <p>Because doubles can't represent decimal values exactly you get different results.</p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/696808#696808 4 Answer by Pontus Gagge for Why does the order affect the rounding when adding multiple doubles in C# Pontus Gagge 2009-03-30T11:18:32Z 2009-03-30T11:18:32Z <p>See <a href="http://docs.sun.com/source/806-3568/ncg%5Fgoldberg.html" rel="nofollow">the classic paper (What every computer scientist should know about floating-point arithmetic)</a> on the subject. This kind of stuff is what happens with floating point arithmetic. It takes a computer scientist to tell you that 1/3+1/3+1/3 <strong>is'nt</strong> equal to 1... </p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/697070#697070 0 Answer by Christopher Klein for Why does the order affect the rounding when adding multiple doubles in C# Christopher Klein 2009-03-30T12:56:47Z 2009-03-30T12:56:47Z <p>makes for interesting reading...</p> <p><a href="http://www.yoda.arachsys.com/csharp/floatingpoint.html" rel="nofollow">http://www.yoda.arachsys.com/csharp/floatingpoint.html</a></p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/697205#697205 8 Answer by Pete Kirkham for Why does the order affect the rounding when adding multiple doubles in C# Pete Kirkham 2009-03-30T13:31:45Z 2009-03-30T15:39:49Z <blockquote> <p>I would have expected e1+e2 to equal e3+e4. </p> </blockquote> <p>That's not entirely unlike expecting </p> <pre><code> floor( 5/3 ) + floor( 2/3 + 1 ) </code></pre> <p>to equal</p> <pre><code> floor( 5/3 + 2/3 ) + floor( 1 ) </code></pre> <p>except you're multiplying by 2^53 before taking the floor.</p> <p>Using 12 bit precision floating point and truncation with your values:</p> <pre> 1.0 = 1.00000000000 1.1 = 1.00011001100 1.2 = 1.00110011001 1.0 + 1.1 = 10.00011001100 // extended during sum r1 = 1.0 + 1.1 = 10.0001100110 // truncated to 12 bit r1 + 1.2 = 11.01001100101 // extended during sum r2 = r1 + 1.2 = 11.0100110010 // truncated to 12 bit 1.1 + 1.2 = 10.01001100110 // extended during sum r3 = 1.1 + 1.2 = 10.0100110011 // truncated to 12 bit r3 + 1.0 = 11.01001100110 // extended during sum r4 = r3 + 1.0 = 11.0100110011 // truncated to 12 bit </pre> <p>So changing the order of operations/truncations causes the the error to change, and r4 != r2. If you add 1.1 and 1.2 in this system, the last bit carries, so in not lost on truncation. If you add 1.0 to 1.1, the last bit of 1.1 is lost and so the result is not the same.</p> <p>In one ordering, the rounding (by truncation) removes a trailing <code>1</code>. </p> <p>In the other ordering, the rounding removes a trailing <code>0</code> both times.</p> <p>One does not equal zero; so the errors are not the same.</p> <p>Doubles have many more bits of precision, and C# probably uses rounding rather than truncation, but hopefully this simple model shows you different errors can happen with different orderings of the same values.</p> <p>The difference between fp and maths is that + is shorthand for 'add then round' rather than just add.</p> http://stackoverflow.com/questions/696769/why-does-the-order-affect-the-rounding-when-adding-multiple-doubles-in-c/697792#697792 1 Answer by Lasse V. Karlsen for Why does the order affect the rounding when adding multiple doubles in C# Lasse V. Karlsen 2009-03-30T15:54:45Z 2009-03-30T15:54:45Z <p>Why the errors aren't the same depending on order can be explained with a different example.</p> <p>Let's say that for numbers below 10, it can store all the numbers, so it can store 1, 2, 3, and so on up to and including 10, but after 10, it can only store every second number, due to internal loss of precision, in other words, it can only store 10, 12, 14, etc.</p> <p>Now, with that example, you'll see why the following produces different results:</p> <pre><code>1 + 1 + 1 + 10 = 12 (or 14, depending on rounding) 10 + 1 + 1 + 1 = 10 </code></pre> <p>The problem with floating point numbers is that they can't be represented accurately, and the error doesn't always go the same way, so the order will matter.</p> <p>For instance, 3.00000000003 + 3.00000000003 might end up being 6.00000000005 (notice not 6 at the end), but 3.00000000003 + 2.99999999997 might end up being 6.00000000001, and with that:</p> <pre><code>step 1: 3.00000000003 + 3.00000000003 = 6.00000000005 step 2: 6.00000000005 + 2.99999999997 = 9.00000000002 </code></pre> <p>but, change the order:</p> <pre><code>step 1: 3.00000000003 + 2.99999999997 = 6.00000000001 step 2: 6.00000000001 + 3.00000000003 = 9.00000000004 </code></pre> <p>So it will matter.</p> <p>Now, of course, you might be lucky in that the above examples balance each other out, in that the first will swing up by .xxx1 and the other down by .xxx1, giving you .xxx3 in both, but there's no guarantee.</p>