I have a case where I am doing some math on a Float object and when I call to_i on it it is being reduced by one.

value = 0.29 * 100
value.to_i
=> 28

I know that floating point numbers are inexact representations but this is off by more than I would expect. What is going on and how can I prevent this?

I'm using ruby 1.8.7 (it also happens in 1.8.6).

link|improve this question

When will people understand floating point values loose precision when converted to integers? – Richard J. Ross III Dec 6 '11 at 17:58
In this case you might want to use value.ceil – Dan Heberden Dec 6 '11 at 18:02
Well, #round anyway. – DigitalRoss Dec 6 '11 at 19:59
What did you expect to happen? – Andrew Grimm Dec 6 '11 at 21:15
I was expecting 29 as the result. – brainimus Dec 6 '11 at 22:59
feedback

2 Answers

(0.29 * 100).round
 => 29 

Not all floating point numbers are inexact. 29 is exact, 0.25 is exact, but 0.29 is not. If even one bit is missing 50 bits to the right of the decimal point, the default truncating conversion will return the next lower integer.

And that's why #round exists.

link|improve this answer
feedback

A quick check in irb reveals that 0.29 * 100 evaluates to 28.999.... Calling Float#to_i does the rest and you end up with 28.

link|improve this answer
How do you see that it evaluates to 28.999...? – brainimus Dec 6 '11 at 19:18
2  
You fire up irb, you enter 0.29 * 100, you hit enter and it tells you the value of the expression. – dominikh Dec 6 '11 at 19:20
I do that and I get 29.0 not 28.999... hence why I would think to_i would return 29. – brainimus Dec 6 '11 at 23:00
Hm, try using "%.20f" % (0.29 * 100) instead then. It's possible that it is rounding the value for output in some versions when using plain Float#inspect – dominikh Dec 6 '11 at 23:23
Ahh... That produced 28.99999999999999644729. – brainimus Dec 7 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

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