Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:30:18Zhttp://stackoverflow.com/feeds/question/177506http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-3999996117Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?yesraaj2008-10-07T07:40:17Z2009-01-13T10:01:09Z
<pre><code>double r = 11.631;
double theta = 21.4;
</code></pre>
<p>In the debugger, these are shown as 11.631000000000000 and 21.399999618530273.</p>
<p>How can I avoid this?</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177512#17751233Answer by Konrad Rudolph for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Konrad Rudolph2008-10-07T07:42:32Z2008-10-07T07:42:32Z<p>These <a href="http://en.wikipedia.org/wiki/Floating_point_number#Accuracy_problems" rel="nofollow">accuracy problems</a> are due to the <a href="http://en.wikipedia.org/wiki/Floating_point_number#Internal_representation" rel="nofollow">internal representation</a> of floating point numbers and there's not much you can do to avoid it.</p>
<p>By the way, printing these values at run-time often still leads to the correct results, at least using modern C++ compilers. For most operations, this isn't much of an issue.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177525#1775258Answer by Mark Ingram for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Mark Ingram2008-10-07T07:51:26Z2008-10-07T07:57:30Z<p>If you have a value like:</p>
<pre><code>double theta = 21.4;
</code></pre>
<p>And you want to do:</p>
<pre><code>if (theta == 21.4)
{
}
</code></pre>
<p>You have to be a bit clever, you will need to check if the value of theta is <strong>really</strong> close to 21.4, but not necessarily that value.</p>
<pre><code>if (fabs(theta - 21.4) <= 1e-6)
{
}
</code></pre>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177527#1775272Answer by Shane MacLaughlin for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Shane MacLaughlin2008-10-07T07:52:18Z2008-10-07T07:52:18Z<p>One way you can avoid this is to use a library that uses an alternative method of representing decimal numbers, such as <a href="http://en.wikipedia.org/wiki/Binary_coded_decimal" rel="nofollow">BCD</a></p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177531#1775311Answer by Shimi Bandiel for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Shimi Bandiel2008-10-07T07:57:29Z2008-10-07T07:57:29Z<p>If you are using Java and you need accuracy, use the BigDecimal class for floating point calculations. It is slower but safer.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177539#17753918Answer by Jeff Atwood for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Jeff Atwood2008-10-07T08:01:40Z2008-10-07T08:01:40Z<p>I liked Joel's explanation, which deals with a similar binary floating point precision issue in Excel 2007</p>
<p><a href="http://www.joelonsoftware.com/items/2007/09/26b.html" rel="nofollow">http://www.joelonsoftware.com/items/2007/09/26b.html</a></p>
<blockquote>
<p>See how there's a lot of 0110 0110 0110 there at the end? That's because <strong>0.1</strong> has <em>no exact representation in binary</em>... it's a repeating binary number. It's sort of like how 1/3 has no representation in decimal. 1/3 is 0.33333333 and you have to keep writing 3's forever. If you lose patience, you get something inexact.</p>
<p>So you can imagine how, in decimal, if you tried to do 3*1/3, and you didn't have time to write 3's forever, the result you would get would be 0.99999999, not 1, and people would get angry with you for being wrong.</p>
</blockquote>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177749#1777494Answer by Peter Wone for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Peter Wone2008-10-07T09:25:49Z2008-11-02T13:55:50Z<p>Use the fixed-point <code>decimal</code> type if you want stability at the limits of precision. There are overheads, and you must explicitly cast if you wish to convert to floating point. If you do convert to floating point you will reintroduce the instabilities that seem to bother you.</p>
<p>Alternately you can get over it and learn to work <em>with</em> the limited precision of floating point arithmetic. For example you can use rounding to make values converge, or you can use epsilon comparisons to describe a tolerance. "Epsilon" is a constant you set up that defines a tolerance. For example, you may choose to regard two values as being equal if they are within 0.0001 of each other.</p>
<p>It occurs to me that you could use operator overloading to make epsilon comparisons transparent. That would be very cool.</p>
<p><hr /></p>
<p>For mantissa-exponent representations EPSILON must be computed to remain within the representable precision. For a number N, Epsilon = N / 10E+14</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177760#1777605Answer by Jon Skeet for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Jon Skeet2008-10-07T09:35:14Z2008-10-07T09:35:14Z<p>This is partly platform-specific - and we don't know what platform you're using.</p>
<p>It's also partly a case of knowing what you actually <em>want</em> to see. The debugger is showing you - to some extent, anyway - the precise value stored in your variable. In my <a href="http://pobox.com/~skeet/csharp/floatingpoint.html" rel="nofollow">article on binary floating point numbers in .NET</a>, there's a <a href="http://pobox.com/~skeet/csharp/DoubleConverter.cs" rel="nofollow">C# class</a> which lets you see the absolutely <em>exact</em> number stored in a double. The online version isn't working at the moment - I'll try to put one up on another site.</p>
<p>Given that the debugger sees the "actual" value, it's got to make a judgement call about what to display - it could show you the value rounded to a few decimal places, or a more precise value. Some debuggers do a better job than others at reading developers' minds, but it's a fundamental problem with binary floating point numbers.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177776#1777760Answer by MikeJ-UK for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?MikeJ-UK2008-10-07T09:41:06Z2008-10-07T09:41:06Z<p>Seems to me that 21.399999618530273 is the <em>single precision</em> (float) representation of 21.4. Looks like the debugger is casting down from double to float somewhere.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177792#1777920Answer by ControlBreak for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?ControlBreak2008-10-07T09:47:43Z2008-10-07T09:47:43Z<p>If it bothers you, you can customize the way some values are displayed during debug. Use it with care :-)</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms228992.aspx" rel="nofollow">Enhancing Debugging with the Debugger Display Attributes</a></p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177924#1779241Answer by akalenuk for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?akalenuk2008-10-07T10:50:27Z2008-10-07T10:50:27Z<p>You cant avoid this as you're using floating point numbers with fixed quantity of bytes. There's simply no isomorphism possible between real numbers and its limited notation.</p>
<p>But most of the time you can simply ignore it. 21.4==21.4 would still be true because it is still the same numbers with the same error. But 21.4f==21.4 may not be true because the error for float and double are different. </p>
<p>If you need fixed precision, perhaps you should try fixed point numbers. Or even integers. I for example often use int(1000*x) for passing to debug pager.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/178191#1781912Answer by Keith for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Keith2008-10-07T12:22:22Z2008-10-10T15:59:14Z<p>I've come across this before (<a href="http://bizvprog.blogspot.com/2008/05/floating-point-numbers-more-inaccurate.html" rel="nofollow">on my blog</a>) - I think the surprise tends to be that the 'irrational' numbers are different.</p>
<p>By 'irrational' here I'm just referring to the fact that they can't be accurately represented in this format. Real irrational numbers (like π - pi) can't be accurately represented at all.</p>
<p>Most people are familiar with 1/3 not working in decimal: 0.3333333333333...</p>
<p>The odd thing is that 1.1 doesn't work in floats. People expect decimal values to work in floating point numbers because of how they think of them:</p>
<blockquote>
<p>1.1 is 11 x 10^-1</p>
</blockquote>
<p>When actually they're in base-2</p>
<blockquote>
<p>1.1 is 154811237190861 x 2^-47 </p>
</blockquote>
<p>You can't avoid it, you just have to get used to the fact that some floats are 'irrational', in the same way that 1/3 is.</p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/256912#2569121Answer by Chobicus for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Chobicus2008-11-02T14:21:30Z2008-11-02T14:21:30Z<p><a href="http://spiff.rit.edu/classes/phys317/lectures/dangers.html" rel="nofollow">Dangers of computer arithmetic</a></p>
http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/438498#4384980Answer by grom for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?grom2009-01-13T10:01:09Z2009-01-13T10:01:09Z<p>Refer to <a href="http://speleotrove.com/decimal/#summary" rel="nofollow">General Decimal Arithmetic</a></p>
<p>Also take note when comparing floats, see <a href="http://stackoverflow.com/questions/17333/most-effective-way-for-float-and-double-comparison#17467">this answer</a> for more information.</p>