Some people say that machine epsilon for double precision floating point numbers is 2^-53 and other (more commonly) say its 2^-52. I have messed around estimating machine precision using integers besides 1 and aproaching from above and below (in matlab), and have gotten both values as results. Why is it that both values can be observed in practice? I thought that it should always produce an epsilon around 2^-52.
|
feedback
|
|
There's an inherent ambiguity about the term "machine epsilon", so to fix this, it is commonly defined to be the difference between The IEEE754 64-bit float has 52 explicit mantissa bits, so 53 including the implicit leading
So the difference betwen the two is 2-52. | ||||
|
feedback
|
|
It depends on which way you round.
| |||||
feedback
|