Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There are at least three ways to recover a rational from one of its numerical approximations:

sage: a = .1/8
sage: a.simplest_rational()
1/80
sage: a.nearby_rational(0.0001)
1/80
sage: a.exact_rational()
3602879701896397/288230376151711744

You can have a look to their respective documentations to see the differences.

click to hide/show revision 2
No.2 Revision

There are at least three ways to recover a rational from one of its numerical approximations:

sage: a = .1/8
sage: a.simplest_rational()
1/80
sage: a.nearby_rational(0.0001)
1/80
sage: a.exact_rational()
3602879701896397/288230376151711744

You can have a look to their respective documentations to see the differences.differences. And you should understand that a is not equal to 1/80 but to 3602879701896397/288230376151711744 !

click to hide/show revision 3
No.3 Revision

There are at least three ways to recover a rational from one of its numerical approximations:

sage: a = .1/8
sage: a.simplest_rational()
1/80
sage: a.nearby_rational(0.0001)
1/80
sage: a.exact_rational()
3602879701896397/288230376151711744

You can have a look to their respective documentations to see the differences. And you should understand that a the floating point number a is not equal to 1/80 but to 3602879701896397/288230376151711744 !