vote up 2 vote down star

If I have the following code (this was written in .NET)

double i = 0.1 + 0.1 + 0.1;

Why doesn't i equal 0.3?
Any ideas?

flag
This is not specific to .NET by the way, Float and Double based in binary have this problem for many decimal values converted to binary. – Jared Updike Oct 23 '08 at 7:20

7 Answers

vote up 6 vote down

You need to read up on floating point numbers. Many decimal numbers don't have an exact representation in binary so they won't be an exact match.

That's why in comparisons, you tend to see:

if (abs(a-b) < epsilon) { ...

where epsilon is a small value such as 0.00000001, depending on the accuracy required.

link|flag
vote up 3 vote down

Double is a 64-bit floating point data type. It stores decimals as approximate values. If you need exact values, use the Decimal data type which is a Binary Coded Decimal data type.

link|flag
Some fractional values are not approximate in binary (like 1/2, or 1/4 or 3/4), just many numbers in base ten (like 0.1, 0.3) get approximated when converted to base two. – Jared Updike Oct 23 '08 at 7:18
vote up 1 vote down

The precision of floating point arithmetic cannot be guaranteed.

link|flag
It can and is guaranteed in many systems - but it's guaranteeing a certain level of precision rather than perfection (which is unattainable here, as neither 0.1 nor 0.3 can be exactly represented in binary floating point). – Jon Skeet Oct 23 '08 at 8:05
vote up 1 vote down

Equality with floating point numbers is often not used because there is always an issue with the representation. Normally we compare the difference between two floats and if it is smaller than a certain value (for example 0.0000001) it is considdered equal.

link|flag
vote up 1 vote down

Double calculation is not exact. You have two solution:

  • Use the Decimal type which is exact
  • compare abs(i - 0.3) < espilon
link|flag
Decimal is not "exact" - it just has a different representation, that happens to work better with typical decimal values - i.e. base-10 rounding. That doesn't make it "exact". – Marc Gravell Oct 23 '08 at 7:16
+1 to Marc's comment :) – Jon Skeet Oct 23 '08 at 8:03
Having never used .NET, in what sense is Decimal not exact? Do you mean such things as sqrt(2) and pi or are there actually decimal values (I mean any base-10 number with finite number of digits) that can't be represented by it? – paxdiablo Oct 23 '08 at 8:06
Doing arithmetic on things with different scales (i.e. add a very large number and a very small number) would be a trivial example - but just things like "divide by 3" then "multiply by 3" should be enough to not count as "exact". – Marc Gravell Oct 23 '08 at 8:15
vote up 1 vote down

Jon Skeet has a very good walkthrough of this here, and the same for decimal here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.