Reputation: 1067
Can someone clarify why ruby returns such big numbers when using to_r
for example:
a = 0.025
a.to_r
3602879701896397/144115188075855872.
Why not use 1/40?
Upvotes: 4
Views: 1440
Reputation: 132207
This sounds like a typical floating point problem, but hidden inside. While 0.025 may be represented exactly, the function to_r
will no doubt perform various floating-point operations internally which are necessarily inexact. The result 3602879701896397/144115188075855872
will no doubt match the intermediate, transformed version of a
more closely than your proposal 1/40
.
Now 3602879701896397/144115188075855872
is extremely close to being the same as 1/40
. But it is not quite equal, so is not simplified.
For more information, look at some of the previous questions related to inexact floating point. This is a nuanced case and a good question therefore, but has its fundamentals in the same things. I'm looking into the ruby C
implementation of Float#to_r
for more details.
Upvotes: 4