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.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

There's an inherent ambiguity about the term "machine epsilon", so to fix this, it is commonly defined to be the difference between 1 and the next bigger representable number. (This number is actually (and not by accident) obtained by literally incrementing the binary representation by one.)

The IEEE754 64-bit float has 52 explicit mantissa bits, so 53 including the implicit leading 1. So the two consecutive numbers are:

1.0000  .....  0000
1.0000  .....  0001
  \-- 52 digits --/

So the difference betwen the two is 2-52.

link|improve this answer
feedback

It depends on which way you round.

1 + 2^-53 is exactly half way between 1 and 1 + 2^-52, which are consecutive in double-precision floating point. So if you round it up, it is different from 1; if you round it down, it is equal to 1.

link|improve this answer
So is it the rounding error that allows the result to sometimes show up as 2^-53 and sometimes as 2^-52? because that is that part the really confused me. – user381261 Nov 3 '11 at 13:28
Mathematically, as Kerrek points out,1 and 1 + 2^-52 definitely have consecutive double-precision representations. Rounding is the only explanation I can imagine for why your experiments would show something else. Have you tried adding 1 and (e.g.) 1.5 * 2^-53? – Nemo Nov 3 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

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