(inf) min max

2021-09-28 Thread Stefan Israelsson Tampe
Why is (min (inf) 1) = 1.0 inexact?

Re: (inf) min max

2021-09-28 Thread tomas
On Tue, Sep 28, 2021 at 10:15:30AM +0200, Stefan Israelsson Tampe wrote: > Why is (min (inf) 1) = 1.0 inexact? Because inf's result is inexact. The same as (min 3 3.5) is inexact, too. It seems that the `inexactness' is contagious across arithmetic generics (I haven't found an explicit place in

Re: (inf) min max

2021-09-28 Thread Stefan Israelsson Tampe
Then this does not work well (fold min (inf) (list 1 200 3 4)) which is a pity, we should have an exact inf as well On Tue, Sep 28, 2021 at 10:32 AM wrote: > On Tue, Sep

Re: (inf) min max

2021-09-28 Thread tomas
On Tue, Sep 28, 2021 at 11:55:06AM +0200, Stefan Israelsson Tampe wrote: > Then this does not work well > > (fold min (inf) (list 1 > 200 > 3 4)) > > which is a pity, we sho

Re: (inf) min max

2021-09-28 Thread Mikael Djurfeldt
The proper way to handle this would, as you suggest, be to distinguish different kinds on infinities. Then, perhaps, countable infinity could be regarded as scheme:ish exact while infinities of higher cardinality would not (since scheme's handling of that kind of numbers is an approximation and, th