Decimals.jl icon indicating copy to clipboard operation
Decimals.jl copied to clipboard

Incorrect division of large numbers

Open robsmith11 opened this issue 2 years ago • 0 comments

I had expected this to work:

julia> Decimal(10)^30 / Decimal(2)^100
Decimal(0, 0, 0)

With python:

In [9]: 10**30 / 2**100
Out[9]: 0.7888609052210118

robsmith11 avatar Jul 26 '23 20:07 robsmith11