vote up 1 vote down star

Possible Duplicate:
Precision of Floating Point

Hello

If I run this code:

    float f = 10f;
    f -= 0.2f;
    f -= 0.2f;
    f -= 0.2f;
    f -= 0.2f;
    f -= 0.2f;
    System.out.println(f);

Why is the output not 9 but 9.000001???

flag

4  
Floating point precision problem. Dupe of many questions. – Mehrdad Sep 12 at 20:09
Mehrdad is correct. And of course you don't actually subtract 0.2 but something like 0.200000002980232. – Nick D Sep 12 at 20:14
stackoverflow.com/questions/872544/… – Kieveli Sep 12 at 20:20
You may want to learn more about "numerical stability" which is important to know about if you to know how to control the inaccuracy in such calculations. "An algorithm is called numerically stable if an error, whatever its cause, does not grow to be much larger during the calculation. " en.wikipedia.org/wiki/… – Thorbjørn Ravn Andersen Sep 12 at 21:40

closed as exact duplicate by chaos, Mehrdad, Bombe, Nick D, Kieveli Sep 12 at 20:19

2 Answers

vote up 3 vote down check

See this article. To quote:

It may come as a surprise that terminating decimal fractions can have repeating expansions in binary. It is for this reason that many are surprised to discover that 0.1 + ... + 0.1, (10 additions) differs from 1 in floating point arithmetic. In fact, the only binary fractions with terminating expansions are of the form of an integer divided by a power of 2, which 1/10 is not.

link|flag
vote up 2 vote down

Because “0.2” can not be exactly represented as a float. Check IEEE 754 for details.

link|flag

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