Is it possible to establish, even roughly, what the maximum precision loss would be when dealing with two double values in java (adding/subtracting)? Probably the worst case scenario is when two numbers cannot be represented exactly, and then an operation is performed on them, which results in a value that also cannot be represented exactly.
|
|
|||||||||
|
|
Have a look at |
||||
|
|
|
The worst case is that all precision can be lost. This can for example happen if the result is larger than the largest representable finite number. Then it will be stored as POSITIVE_INFINITY (or NEGATIVE_INFINITY). Regarding your update, it can happen with addition.
Result:
See it online: ideone In general the size of the representation error is relative to the size of your numbers. |
||||
|
|
|
You could have a look at the actual precision of your inputs, for example the code below outputs:
You would still need to then estimate the loss on the result of your operation. And that does not work with corner cases (around Infinity, NaN etc.). |
|||
|
|