Monniaux's excellent article, "The Pitfalls of Verifying Floating Point Arithmetic", gives examples of unexpected numerical behavior. However, most of the examples depend on extended precision FPUs or extended precision operations (e.g. multiply-accumulate). Besides signed zero and comparisons involving NaN are there any good examples of surprising numerical behavior when extend precision hardware is disabled?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 4 down vote accepted

An example that is often surprising to programmers is when x + 1 == x. In single precision floating point, this is true for x as small as 2^25 because of the limited precision of the mantissa. This often comes up when incrementing time values in a simulation by a small timestep. A similar problem affected the Patriot missile.

link|improve this answer
Yes, good example. I would point out that this loss of precision occurs for any two numbers with different exponents: Complete absorption of one of the terms occurs when the exponents are of sufficiently different magnitude. – user492922 Jul 28 '11 at 13:23
feedback

Your Answer

 
or
required, but never shown

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