diff options
author | Justus Sagemüller <sagemueller@geo.uni-koeln.de> | 2018-03-28 15:51:16 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-05-05 20:28:18 -0400 |
commit | 3ea33411d7cbf32c20940cc72ca07df6830eeed7 (patch) | |
tree | 778eff4c34249fbee3c1fd218a26352f4e5f1c6e /libraries | |
parent | d814dd3862413bdfa5f44d3c67615cac3a0d4a41 (diff) | |
download | haskell-3ea33411d7cbf32c20940cc72ca07df6830eeed7.tar.gz |
Stable area hyperbolic sine for `Double` and `Float`.
This function was unstable, in particular for negative arguments.
https://ghc.haskell.org/trac/ghc/ticket/14927
The reason is that the formula `log (x + sqrt (1 + x*x))` is dominated
by the numerical error of the `sqrt` function when x is strongly negative
(and thus the summands in the `log` mostly cancel). However, the area
hyperbolic sine is an odd function, thus the negative side can as well
be calculated by flipping over the positive side, which avoids this instability.
Furthermore, for _very_ big arguments, the `x*x` subexpression overflows. However,
long before that happens, the square root is anyways completely dominated
by that term, so we can neglect the `1 +` and get
sqrt (1 + x*x) ≈ sqrt (x*x) = x
and therefore
asinh x ≈ log (x + x) = log (2*x) = log 2 + log x
which does not overflow for any normal-finite positive argument, but
perfectly matches the exact formula within the floating-point accuracy.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/GHC/Float.hs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/libraries/base/GHC/Float.hs b/libraries/base/GHC/Float.hs index c534bafa07..d60c660bd0 100644 --- a/libraries/base/GHC/Float.hs +++ b/libraries/base/GHC/Float.hs @@ -367,7 +367,11 @@ instance Floating Float where (**) x y = powerFloat x y logBase x y = log y / log x - asinh x = log (x + sqrt (1.0+x*x)) + asinh x + | x > huge = log 2 + log x + | x < 0 = -asinh (-x) + | otherwise = log (x + sqrt (1 + x*x)) + where huge = 1e10 acosh x = log (x + (x+1.0) * sqrt ((x-1.0)/(x+1.0))) atanh x = 0.5 * log ((1.0+x) / (1.0-x)) @@ -492,7 +496,11 @@ instance Floating Double where (**) x y = powerDouble x y logBase x y = log y / log x - asinh x = log (x + sqrt (1.0+x*x)) + asinh x + | x > huge = log 2 + log x + | x < 0 = -asinh (-x) + | otherwise = log (x + sqrt (1 + x*x)) + where huge = 1e20 acosh x = log (x + (x+1.0) * sqrt ((x-1.0)/(x+1.0))) atanh x = 0.5 * log ((1.0+x) / (1.0-x)) |