Perché GHCi fornisce una risposta errata di seguito?
GHCi
λ> ((-20.24373193905347)^12)^2 - ((-20.24373193905347)^24)
4.503599627370496e15
python3
>>> ((-20.24373193905347)**12)**2 - ((-20.24373193905347)**24)
0.0
AGGIORNAMENTO Vorrei implementare la funzione di Haskell (^) come segue.
powerXY :: Double -> Int -> Double
powerXY x 0 = 1
powerXY x y
| y < 0 = powerXY (1/x) (-y)
| otherwise =
let z = powerXY x (y `div` 2)
in if odd y then z*z*x else z*z
main = do
let x = -20.24373193905347
print $ powerXY (powerXY x 12) 2 - powerXY x 24 -- 0
print $ ((x^12)^2) - (x ^ 24) -- 4.503599627370496e15
Sebbene la mia versione non appaia più corretta di quella fornita di seguito da @WillemVanOnsem, fornisce almeno stranamente la risposta corretta per questo caso particolare.
Python è simile.
def pw(x, y):
if y < 0:
return pw(1/x, -y)
if y == 0:
return 1
z = pw(x, y//2)
if y % 2 == 1:
return z*z*x
else:
return z*z
# prints 0.0
print(pw(pw(-20.24373193905347, 12), 2) - pw(-20.24373193905347, 24))
2.243746917640863e31 - 2.2437469176408626e31
che ha un piccolo errore di arrotondamento che viene amplificato. Sembra un problema di cancellazione.
a^24
è approssimativamente2.2437e31
, e quindi c'è un errore di arrotondamento che produce questo.