up vote 44 down vote favorite
29
share [g+] share [fb]
0.1 + 0.2 == 0.3  
// returns false

0.1 + 0.2 
// returns 0.30000000000000004

Any ideas why this happens?

link|improve this question

74% accept rate
75  
Is it just me or is this the most common programming question of all time. – AnthonyWJones Feb 25 '09 at 21:45
7  
I'd say it's in the top ten – matt b Feb 25 '09 at 21:49
28  
Another candidate for the SO drinking game, along with HTML regexps, posting PHP code with injection holes, and gratuitous mentions of Jon Skeet. Dook dook dook! – bobince Feb 25 '09 at 21:51
3  
Jon Skeet would approve of your drinking game – stimms Feb 25 '09 at 21:59
9  
I'm a chemist, but I took a course in numerical methods and machine precision. Are these courses disappearing from curriculums ? – Stefano Borini Apr 9 '10 at 12:49
show 3 more comments
feedback

16 Answers

up vote 87 down vote accepted

All floating point math is like this and is based on the IEEE standard.

You need to never compare with == but instead compare the absolute value of their differences, and make sure that this difference is smaller than the Epsilon value, which is a very very small number.

x = 0.2;
y = 0.3;
equal = (Math.abs(x - y) < 0.000001)

For the exact reason why, please read this paper.

link|improve this answer
2  
'Some error constant' also known as an Epsilon value. – Gary Willoughby Apr 9 '10 at 12:47
@Gary Thanks for the info. I edited the answer and added a link to "Machine epsilon" in Wikipedia. – Patrick McElhaney Apr 9 '10 at 15:44
6  
I think "some error constant" is more correct than "The Epsilon" because there is no "The Epsilon" which could be used in all cases. Different epsilons need to be used in different situations. And the machine epsilon is almost never a good constant to use. – Rotsor Sep 4 '10 at 23:33
@Rotsor couldn't agree more. I think linking to machine epsilon adds confusion - it's really something else. – Peter Sep 5 '10 at 2:10
@Rostor @Peter After noticing your comments six months later, I've removed the link to "Machine epsilon." – Patrick McElhaney Mar 1 '11 at 13:42
feedback

Floating point rounding errors. 0.1 cannot be represented as accurately in base-2 as in base-10 due to the missing prime factor of 5. Just as 1/3 takes an infinite number of digits to represent in decimal, but is "0.1" in base-3, 0.1 takes an infinite number of digits in base-2 where it does not in base-10. And computers don't have an infinite amount of memory.

link|improve this answer
computers don't need an infinite amount of memory to get 0.1 + 0.2 = 0.3 right – Pacerier Oct 15 '11 at 16:27
@Pacerier Sure, they could use two unbounded-precision integers to represent a fraction, or they could use quote notation. It's the specific notion of "binary" or "decimal" that makes this impossible -- the idea that you have a sequence of binary/decimal digits and, somewhere in there, a radix point. To get precise rational results we'd need a better format. – Devin Jeanpierre Oct 15 '11 at 19:45
feedback

When you convert .1 or 1/10 to base 2 (binary) you get a repeating pattern after the decimal point, just like trying to represent 1/3 in base 10. The value is not exact, and therefore you can't do exact math with it using normal floating point methods.

link|improve this answer
Nice concise answer! – Patrick McElhaney Feb 25 '09 at 21:55
Wish i could double upvote. Good answer. – conqenator Sep 29 '11 at 14:32
feedback

Try rounding it off using toFixed().

(0.1 + 0.2).toFixed(1) == 0.3
link|improve this answer
Finally, an answer with a workaround. :) – conqenator Sep 29 '11 at 14:34
toFixed doesn't perform consistently across all browsers. – ajbeaven Oct 10 '11 at 22:42
@ajbeaven What do you mean? – Patrick McElhaney Oct 11 '11 at 0:03
For example, in ie8 (0.09).toFixed(1) will result in 0.0, in most other browsers it will be 0.1 – ajbeaven Oct 11 '11 at 1:38
@ajbeaven Ugh, you're right. Here's a workaround: jibbering.com/faq/#formatNumber – Patrick McElhaney Oct 11 '11 at 19:41
feedback

JavaScript treats decimals as floating point numbers, which means operations like addition might be subject to rounding error.

You might want to take a look at this article: What Every Computer Scientist Should Know About Floating-Point Arithmetic

link|improve this answer
1  
What about non decimal numbers? – Pablo Cabrera Feb 26 '09 at 11:13
Integers are treated as well, integers – matt b Feb 26 '09 at 14:10
Just for information, ALL numeric types in javascript are IEEE-754 Doubles. – Gary Willoughby Apr 11 '10 at 13:01
@Gary True, although you are guaranteed to have perfect integer precision for integers up to 15 digits, see hunlock.com/blogs/The_Complete_Javascript_Number_Reference – Ender Aug 1 '10 at 23:26
feedback

Yes, it's 'broken', and is proposed to be fixed in the next version with support for decimal numeric values.

link|improve this answer
feedback

Floating point numbers.

link|improve this answer
I think there was a < 14sec difference in the post time of this vs. the +8. That's pretty harsh – TheTXI Feb 25 '09 at 21:43
+1, we all posted this at nearly the same time. – Ed S. Feb 25 '09 at 21:45
feedback

In addition to the other correct answers, you may want to consider scaling your values to avoid problems with floating-point arithmetic.

For example:

var result = 1.0 + 2.0;     // result === 3.0 returns true

... instead of:

var result = 0.1 + 0.2;     // result === 0.3 returns false

The expression 0.1 + 0.2 === 0.3 returns false in JavaScript, but fortunately integer arithmetic in floating-point is exact, so decimal representation errors can be avoided by scaling.

As a practical example, to avoid floating-point problems where accuracy is paramount, it is recommended1 to handle money as an integer representing the number of cents: 2550 cents instead of 25.50 dollars.


1 Douglas Crockford: JavaScript: The Good Parts: Appendix A - Awful Parts (page 105).

link|improve this answer
The problem is that the conversion itself is inaccurate. 16.08 * 100 = 1607.9999999999998. Do we have to resort to splitting the number and converting separately (as in 16 * 100 + 08 = 1608)? – Jason Oct 7 '11 at 19:13
1  
The solution here is to do all your calculations in integer then divide by your proportion (100 in this case) and round only when presenting the data. That will ensure that your calculations will always be precise. – Just a guy Dec 8 '11 at 21:38
feedback

Floating point variables typically have this behaviour. It's caused by how they are stored in hardware.

For more info check out the Wikipedia article on floating point numbers.

link|improve this answer
feedback

Floating point rounding error. From http://docs.sun.com/source/806-3568/ncg_goldberg.html:

Squeezing infinitely many real numbers into a finite number of bits requires an approximate representation. Although there are infinitely many integers, in most programs the result of integer computations can be stored in 32 bits. In contrast, given any fixed number of bits, most calculations with real numbers will produce quantities that cannot be exactly represented using that many bits. Therefore the result of a floating-point calculation must often be rounded in order to fit back into its finite representation. This rounding error is the characteristic feature of floating-point computation.

link|improve this answer
feedback

A solution to tidy up the unsightly overflow

function strip(number) {
    return (parseFloat(number.toPrecision(12)));
}

Using 'toPrecision(12)' leaves trailing zeros which 'parseFloat()' removes. Assume it is accurate to plus/minus one on the least significant digit.

link|improve this answer
feedback

They are floats.

link|improve this answer
1  
Why the downvote eh? – Ed S. Feb 25 '09 at 21:43
@Ed: Probably because our posts were seen as copies of the top vote getter, even though all our posts were made within less than a minute of one another. – TheTXI Feb 25 '09 at 21:44
Seriously, leave a comment if you think this is wrong. The OP is more than capable of figuring out what floating point numbers are. – Ed S. Feb 25 '09 at 21:45
@Ed: I voted you up anyway. No reason to get punished just because one answer went in 15 seconds faster. – TheTXI Feb 25 '09 at 21:46
I voted you up too. now you should be back to zero. – Real Red. Feb 25 '09 at 21:51
show 2 more comments
feedback

Don't forget the comp.lang.javascript FAQ which covers this and many other questions.

link|improve this answer
feedback

All numbers in JavaScript are represented in binary as IEEE-754 Doubles, which provides an accuracy to about 14 or 15 significant digits. Because they are floating point numbers, they do not always exactly represent real numbers, including fractions.

http://en.wikipedia.org/wiki/JavaScript_syntax#Number

link|improve this answer
feedback

I asked this question myself with different wording bc I didn't know to look for "floating-point". I would suggest tagging it with "decimals" and "fractions" "addition subtraction". If I search for "javascript adding decimals inaccurate", the search mechanism isn't smart enough to equate "decimals" with "floating-point" and "adding" with "math".

link|improve this answer
Good-enough suggestion. This answer will also help future searches, with those terms, hit this question. – Brock Adams Aug 10 '10 at 6:34
feedback

My workaround:

function add(a, b, precision) {
    var x = Math.pow(10, precision || 2);
    return (Math.round(a * x) + Math.round(b * x)) / x;
}

precision refers to the number of digits you want to preserve after the decimal point during addition.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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