> 0.1 + 0.2 == 0.3
false
> 0.1 + 0.2
0.30000000000000004
Any ideas why this happens?
Any ideas why this happens? |
|||||||||||||||||
|
|
All floating point math is like this and is based on the IEEE 754 standard. JavaScript uses 64-bit floating point representation, which is the same as Java's 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.
For the exact reason why, please read this paper. |
|||||||||||||||||
|
|
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. |
|||||||
|
|
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. |
||||
|
|
Try rounding it off using toFixed().
|
|||||||||||||||
|
|
In addition to the other correct answers, you may want to consider scaling your values to avoid problems with floating-point arithmetic. For example:
... instead of:
The expression 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: 1 Douglas Crockford: JavaScript: The Good Parts: Appendix A - Awful Parts (page 105). |
|||||||
|
A Hardware Designer's PerspectiveI believe I should add a hardware designer’s perspective to this since I design and build floating point hardware. Knowing the origin of the error may help in understanding what is happening in the software, and ultimately, I hope this helps explain the reasons for why floating point errors happen, and seem to accumulate over time. 1. OverviewFrom an engineering perspective, all floating point numbers will have some element of error since the hardware that does the floating point computations will always have an error of less than one unit in the last place. Therefore, much hardware will stop at a precision that's only necessary to yield an error of less than one unit in the last place for a single operation which is especially problematic in floating point division. What constitutes a single operation depends upon how many operands the unit takes. For most, it is two, but some units take 3 or more operands. Because of this, there is no guarantee that repeated operations will result in a desirable error since the errors add up over time. 2. StandardsMost processors follow the IEEE-754 standard but some use denormalized, or different standards . For example, there is a denormalized mode in IEEE-754 which allows representation of very small floating point numbers at the expense of precision. The following however, will cover the normalized mode of IEEE-754 which is the typical mode of operation. In the IEEE-754 standard, hardware designers are allowed any value of error/epsilon as long as it's less than one unit in the last place, and the result only has to be less than one unit in the last place for one operation. This explains why when there are repeated operations, the errors add up. For IEEE-754 double precision, this is the 54th bit, since 53 bits are used to represent the numeric part (normalized), also called the mantissa, of the floating point number (e.g. the 5.3 in 5.3e5). The next sections go into more detail of the causes of hardware error on various floating point operations. 3. Cause of Rounding Error in DivisionThe main cause of the error in floating point division, are the division algorithms used to calculate the quotient. Most computer systems calculate division using multiplication by an inverse, mainly in Z=X/Y, Z = X * (1/Y). Division is computed iteratively i.e. each cycle computes some bits of the quotient until the desired precision is reached, which for IEEE-754 is anything with an error of less than one unit in the last place. The table of reciprocals of Y (1/Y) is known as the quotient selection table (QST), and the size in bits of the quotient selection table is usually the width of the radix, or number of bits of the quotient computed in each iteration, plus a few guard bits. For the IEEE-754 standard, double precision (64-bit), it would be the size of the radix of the divider, plus a few guard bits k, where k>=2. So for example, a typical Quotient Selection Table for a divider that computes 2 bits of the quotient at a time (radix 4) would be 2+2= 4 bits (plus a few optional bits). 3.1 Division Rounding Error: Approximation of Reciprocal What reciprocals are in the quotient selection table depend on the division method: slow division such as SRT division, or fast division such as Goldschmidt division; each entry is modified according to the division algorithm in an attempt to yield the lowest possible error. In any case though, all reciprocals are approximations of the actual reciprocal, and introduce some element of error. Both slow division and fast division methods calculate the quotient iteratively, i.e. some number of bits of the quotient are calculated each step, then the result is subtracted from the dividend, and the divider repeats the steps until the error is less than one unit in the last place. Slow division methods calculate a fixed number of digits of the quotient in each step and are usually less expensive to build, and fast division methods calculate a variable number of digits per step and are usually more expensive to build. The most important part of the division methods is that most of them rely upon repeated multiplication by an approximation of a reciprocal, so they are prone to error. 4. Rounding Errors in Other Operations: TruncationAnother cause of the rounding errors in all operations are the different modes of truncation of the final answer that IEEE-754 allows. There's truncate, round-towards-zero, round-to-nearest (default), round-down, and round-up. All methods introduce an element of error of less than one unit in the last place for a single operation. Over time and repeated operations, truncation also adds cumulatively to the resultant error. This truncation error, is especially problematic in exponentiation, which involves some form of repeated multiplication. 5. Repeated OperationsSince the hardware that does the floating point calculations only needs to yield a result with an error of less than one unit in the last place for a single operation, the error will grow over repeated operations if not watched. This is the reason that in computations that require a bounded error, mathematicians use methods such as using the round-to-nearest even digit in the last place of IEEE-754, because over time, the errors are more likely to cancel each other out, and Interval Arithmetic combined with variations of the IEEE 754 rounding modes to predict rounding errors, and correct them. Because of its low relative error compared to other rounding modes, round to nearest even digit (in the last place), is the default rounding mode of IEEE-754. 6. SummaryIn short, the fundamental reason for the errors in floating point operations is a combination of the truncation in hardware, and the truncation of a reciprocal in the case of division. Since the IEEE-754 standard only requires an error of less than one unit in the last place for a single operation, the floating point errors over repeated operations will add up unless corrected. |
|||||
|
|
A solution to tidy up the unsightly overflow
Using 'toPrecision(12)' leaves trailing zeros which 'parseFloat()' removes. Assume it is accurate to plus/minus one on the least significant digit. |
|||
|
|
|
Floating point rounding error. From What Every Computer Scientist Should Know About Floating-Point Arithmetic:
|
||||
|
|
|
||||
|
|
|
did you try the duct tape solution? try to determine when errors occur and fix them with short if statements, it's not pretty but for some problems it is the only solution and this is one of them.
i had the same problem in a scientific simulation project in c#, and i can tell you that if you ignore the butterfly effect it's gonna turn to a big fat dragon and bite you in the a** |
|||
|
|
|
My workaround:
precision refers to the number of digits you want to preserve after the decimal point during addition. |
|||
|
|
|
I wrote this function that will find the maximum precision and use that to round in a way with integer math:
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.