vote up 4 vote down star
1

So far I've seen many posts dealing with equality of floating point numbers. The standard answer to a question like "how should we decide if x and y are equal?" is

abs(x - y) < epsilon

where epsilon is a fixed, small constant. This is because the "operands" x and y are often the results of some computation where a rounding error is involved, hence the standard equality operator == is not what we mean, and what we should really ask is whether x and y are close, not equal.

Now, I feel that if x is "almost equal" to y, then also x*10^20 should be "almost equal" to y*10^20, in the sense that the relative error should be the same (but "relative" to what?). But with these big numbers, the above test would fail, i.e. that solution does not "scale".

How would you deal with this issue? Should we rescale the numbers or rescale epsilon? How? (Or is my intuition wrong?)

Here is a related question, but I don't like its accepted answer, for the reinterpret_cast thing seems a bit tricky to me, I don't understand what's going on. Please try to provide a simple test.

flag

50% accept rate

3 Answers

vote up 7 vote down check

It all depends on the specific problem domain. Yes, using relative error will be more correct in the general case, but it can be significantly less efficient since it involves an extra floating-point division. If you know the approximate scale of the numbers in your problem, using an absolute error is acceptable.

This page outlines a number of techniques for comparing floats. It also goes over a number of important issues, such as those with subnormals, infinities, and NaNs. It's a great read, I highly recommend reading it all the way through.

link|flag
Thank you. The paper also explains the motivations behind the rude cast to int (although in ordinary code I would opt for understandability and use one of the all-float solutions :) – Federico Ramponi Nov 30 '08 at 5:40
vote up 0 vote down

As an alternative solution, why not just round or truncate the numbers and then make a straight comparison? By setting the number of significant digits in advance, you can be certain of the accuracy within that bound.

link|flag
vote up 1 vote down

The problem is that with very big numbers, comparing to epsilon will fail.

Perhaps a better (but slower) solution would be to use division, example:

div(max(a, b), min(a, b)) < eps + 1

Now the 'error' will be relative.

link|flag
Precisely, it is relative to the minimum between a and b, isn't it? – Federico Ramponi Nov 30 '08 at 5:59
Hmmm. Beware of divisions by zero :) – Federico Ramponi Nov 30 '08 at 5:59
And pay attention to their sign. The paper in Adam's answer suggests comparison relative absolute maximum. – Federico Ramponi Nov 30 '08 at 6:02
I actually just went thru that link now. Very good info :) – leppie Nov 30 '08 at 6:48

Your Answer

Get an OpenID
or

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