Marcin 'Qrczak' Kowalczyk scripsit:
> > (/ +0.0) => +Inf
> > (/ 0) => NaN
> > (/ -0.0) => -Inf
>
> I believe (/ 0) should be an error.
I can see arguments both ways. Since -0 = +0 = 0, dividing by 0
logically produces a projective rather than an affine infinity,
but IEEE 754 lacks a representation for this. By applying the
R6RS definition of NaN as a number so exact that it could even
be (positive or negative) infinity, we get in some sense the
Right Thing.
On the whole, though, I think treating division by 0 as an error is
better than relaxing the constraint that / with exact arguments
always produces an exact result. The alternative would be to
introduce an exact projective infinity (exact affine infinities
are a Bad Thing, as explained in the SRFI-73 archive, because
they make +0 and -0 distinct).
--
John Cowan cowan_at_ccil.org http://ccil.org/~cowan
In the sciences, we are now uniquely privileged to sit side by side
with the giants on whose shoulders we stand.
--Gerald Holton
Received on Mon Sep 25 2006 - 09:29:32 UTC