I have a question. I compute this simple sum on Matlab:
2*0.04-0.5*0.4^2 = -1.387778780781446e-017
but the result is not zero. What can I do?
|
I have a question. I compute this simple sum on Matlab:
but the result is not zero. What can I do? |
||||
|
I'm pretty sure this is a case of ye olde floating point accuracy issues. Do you need 1e-17 accuracy? Is this merely a case of wanting 'pretty' output? In that case, you can just use a formatted sprintf to display the number of significant digits you want. Realize that this is not a matlab problem, but a fundamental limitation of how numbers are represented in binary. For fun, work out what .1 is in binary... Some references: http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems http://www.mathworks.com/support/tech-notes/1100/1108.html |
|||
|
|
|
Aabaz and Jim Clay have good explanations of what's going on. It's often the case that, rather than exactly calculating the value of 2*0.04 - 0.5*0.4^2, what you really want is to check whether 2*0.04 and 0.5*0.4^2 differ by an amount that is small enough to be within the relevant numerical precision. If that's the case, than rather than checking whether EDIT: Thanks to Jim and Tal for suggested improvement. Altered to compare the absolute value of the difference to a threshold, rather than the difference. |
|||||
|
|
Matlab uses double-precision floating-point numbers to store real numbers. These are numbers of the form All numbers used in calculations must be floating-point numbers. Often, this can be done exactly, as with So, whenever you write something like In addition, the exact result of operations like addition and multiplication on floating-point numbers may not be a floating-point number. Although it is always of the form At the end of the day, a simple expression like yours will be off by about 2^-52 times the size of the operands, or about 10^-17. In summary: the reason your expression does not evaluate to zero is two-fold:
|
|||
|
|
|
What you are seeing is quantization error. Matlab uses doubles to represent numbers, and while they are capable of a lot of precision, they still cannot represent all real numbers because there are an infinite number of real numbers. I'm not sure about Aabaz's trick, but in general I would say there isn't anything you can do, other than perhaps massaging your inputs to be double-friendly numbers. |
|||
|
|
|
I do not know if it is applicable to your problem but often the simplest solution is to scale your data. For example:
EDIT: of course I did not mean to give a universal solution to these kind of problems but it is still a good practice that can make you avoid a few problems in numerical computation (curve fitting, etc ...). See Jim Clay's answer for the reason why you are experiencing these problems. |
|||||||||
|
0.3 - 0.1*3which gives5.5511e-017. – Amro Oct 28 '11 at 3:21eps. – Mike DeSimone Oct 29 '11 at 1:42