(expt 1 (/ (expt 10 100000) (expt 7 100000))) => 1.0
This could be an exact 1, since all numbers used in the computation are exact.
For reference:
- Return exact
1: Chez, Gambit, Chicken, Gauche, Sagittarius
- Return inexact
1.0: Bigloo, Guile, MIT
- Kawa doesn't compute it (returns NaN)
- Loops trying to compute: Chibi
This could be an exact
1, since all numbers used in the computation are exact.For reference:
1: Chez, Gambit, Chicken, Gauche, Sagittarius1.0: Bigloo, Guile, MIT