is NaN a number? Alex Shinn 19 May 2005 02:18 UTC

Hi,

Is the following a typo?

  (complex? 0/0)                         ==>  #t
  (real? 0/0)                            ==>  #f

One would assume that

  (complex? x)    ->    (real? (real-part x))

Moreover, since 0/0 is by definition "Not a Number" it seems natural that

  (number? 0/0)    ==>   #f

--
Alex