Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whats wrong here? (ruby version: 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin11.0.0]

x = 523.8
w = 46.9
xm = x + w
assert_equal w, (xm - x) # FAILS with: <46.9> expected but was <46.89999999999998>
share|improve this question
8  
1  
@Vache: unfortunately this site is for programmers, not computer scientists, and Goldberg's paper rather more complex and detailed than people can be expected to accept as an answer to a simple question. – Michael Borgwardt Aug 17 '11 at 11:50
2  
Which is why I posted this as a comment and not an answer. :) – Vache Aug 17 '11 at 11:51
2  
"programmers, not computer scientists" - they ought to be synonymous, enough to be able to understand that article and floating point numbers. – duffymo Aug 17 '11 at 13:43
This has to be a duplicate question. – Andrew Grimm Aug 17 '11 at 22:21
show 5 more comments

4 Answers

From The Floating-Point Guide:

Why don’t my numbers, like 0.1 + 0.2 add up to a nice round 0.3, and instead I get a weird result like 0.30000000000000004?

Because internally, computers use a format (binary floating-point) that cannot accurately represent a number like 0.1, 0.2 or 0.3 at all.

When the code is compiled or interpreted, your “0.1” is already rounded to the nearest number in that format, which results in a small rounding error even before the calculation happens.

Read the linked-to site for details and ways to get around this.

share|improve this answer
-1 for gaining rep on a duplicate question. – Andrew Grimm Aug 18 '11 at 5:26

This is perfectly normal; it is a fact about the lower-level concept of floating point arithmetic rather than Ruby and therefore can occur in any language.

Floating point arithmetic is not exact. Equality should be replaced with closeness along the lines of assert((xm-x).abs < epsilon), where epsilon is some small number like 0.01.

share|improve this answer

(sigh)

Read this. It describes the way binary representation of floating point numbers work in every language, not just Ruby.

share|improve this answer

The answer to your question is: No.

(Other answers tell you why, but you didn't ask that. :p)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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