blob: 02d8f1c43c80070f01076b1ec09a1119e79e925c [file] [log] [blame]
Mark Dickinson664b5112009-12-16 20:23:42 +00001/* Definitions of some C99 math library functions, for those platforms
2 that don't implement these functions already. */
3
Mark Dickinsonf3718592009-12-21 15:27:41 +00004#include "Python.h"
Mark Dickinson664b5112009-12-16 20:23:42 +00005#include <float.h>
Mark Dickinson82ebc1f2009-12-21 15:42:00 +00006#include "_math.h"
Mark Dickinsonf3718592009-12-21 15:27:41 +00007
8/* The following copyright notice applies to the original
9 implementations of acosh, asinh and atanh. */
10
11/*
12 * ====================================================
13 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
14 *
15 * Developed at SunPro, a Sun Microsystems, Inc. business.
16 * Permission to use, copy, modify, and distribute this
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000017 * software is freely granted, provided that this notice
Mark Dickinsonf3718592009-12-21 15:27:41 +000018 * is preserved.
19 * ====================================================
20 */
21
Victor Stinnerbf965582016-10-18 16:29:27 +020022#if !defined(HAVE_ACOSH) || !defined(HAVE_ASINH)
Mark Dickinsonf3718592009-12-21 15:27:41 +000023static const double ln2 = 6.93147180559945286227E-01;
Mark Dickinsonf3718592009-12-21 15:27:41 +000024static const double two_pow_p28 = 268435456.0; /* 2**28 */
Victor Stinnerbf965582016-10-18 16:29:27 +020025#endif
26#if !defined(HAVE_ASINH) || !defined(HAVE_ATANH)
27static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */
28#endif
29#if !defined(HAVE_ATANH) && !defined(Py_NAN)
Mark Dickinsonf3718592009-12-21 15:27:41 +000030static const double zero = 0.0;
Benjamin Petersonc77e7a42014-03-15 11:50:00 -050031#endif
Mark Dickinsonf3718592009-12-21 15:27:41 +000032
Victor Stinnerbf965582016-10-18 16:29:27 +020033
34#ifndef HAVE_ACOSH
Mark Dickinsonf3718592009-12-21 15:27:41 +000035/* acosh(x)
36 * Method :
37 * Based on
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000038 * acosh(x) = log [ x + sqrt(x*x-1) ]
Mark Dickinsonf3718592009-12-21 15:27:41 +000039 * we have
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000040 * acosh(x) := log(x)+ln2, if x is large; else
41 * acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
42 * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
Mark Dickinsonf3718592009-12-21 15:27:41 +000043 *
44 * Special cases:
45 * acosh(x) is NaN with signal if x<1.
46 * acosh(NaN) is NaN without signal.
47 */
48
49double
50_Py_acosh(double x)
51{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000052 if (Py_IS_NAN(x)) {
53 return x+x;
54 }
55 if (x < 1.) { /* x < 1; return a signaling NaN */
56 errno = EDOM;
Mark Dickinsonf3718592009-12-21 15:27:41 +000057#ifdef Py_NAN
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 return Py_NAN;
Mark Dickinsonf3718592009-12-21 15:27:41 +000059#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000060 return (x-x)/(x-x);
Mark Dickinsonf3718592009-12-21 15:27:41 +000061#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 }
63 else if (x >= two_pow_p28) { /* x > 2**28 */
64 if (Py_IS_INFINITY(x)) {
65 return x+x;
Mark Dickinson6f493b72010-07-06 15:00:40 +000066 }
67 else {
Victor Stinnerbf965582016-10-18 16:29:27 +020068 return log(x) + ln2; /* acosh(huge)=log(2x) */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000069 }
70 }
71 else if (x == 1.) {
Mark Dickinson6c3bcb72010-07-05 20:14:26 +000072 return 0.0; /* acosh(1) = 0 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073 }
Mark Dickinson6c3bcb72010-07-05 20:14:26 +000074 else if (x > 2.) { /* 2 < x < 2**28 */
Victor Stinnerbf965582016-10-18 16:29:27 +020075 double t = x * x;
76 return log(2.0 * x - 1.0 / (x + sqrt(t - 1.0)));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000077 }
78 else { /* 1 < x <= 2 */
79 double t = x - 1.0;
Victor Stinnerbf965582016-10-18 16:29:27 +020080 return m_log1p(t + sqrt(2.0 * t + t * t));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000081 }
Mark Dickinsonf3718592009-12-21 15:27:41 +000082}
Victor Stinnerbf965582016-10-18 16:29:27 +020083#endif /* HAVE_ACOSH */
Mark Dickinsonf3718592009-12-21 15:27:41 +000084
85
Victor Stinnerbf965582016-10-18 16:29:27 +020086#ifndef HAVE_ASINH
Mark Dickinsonf3718592009-12-21 15:27:41 +000087/* asinh(x)
88 * Method :
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000089 * Based on
90 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
91 * we have
92 * asinh(x) := x if 1+x*x=1,
93 * := sign(x)*(log(x)+ln2)) for large |x|, else
94 * := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
95 * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
Mark Dickinsonf3718592009-12-21 15:27:41 +000096 */
97
98double
99_Py_asinh(double x)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000100{
101 double w;
102 double absx = fabs(x);
Mark Dickinsonf3718592009-12-21 15:27:41 +0000103
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000104 if (Py_IS_NAN(x) || Py_IS_INFINITY(x)) {
105 return x+x;
106 }
107 if (absx < two_pow_m28) { /* |x| < 2**-28 */
Mark Dickinson6c3bcb72010-07-05 20:14:26 +0000108 return x; /* return x inexact except 0 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 }
110 if (absx > two_pow_p28) { /* |x| > 2**28 */
Victor Stinnerbf965582016-10-18 16:29:27 +0200111 w = log(absx) + ln2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 }
113 else if (absx > 2.0) { /* 2 < |x| < 2**28 */
Victor Stinnerbf965582016-10-18 16:29:27 +0200114 w = log(2.0 * absx + 1.0 / (sqrt(x * x + 1.0) + absx));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000115 }
116 else { /* 2**-28 <= |x| < 2= */
117 double t = x*x;
118 w = m_log1p(absx + t / (1.0 + sqrt(1.0 + t)));
119 }
120 return copysign(w, x);
121
Mark Dickinsonf3718592009-12-21 15:27:41 +0000122}
Victor Stinnerbf965582016-10-18 16:29:27 +0200123#endif /* HAVE_ASINH */
Mark Dickinsonf3718592009-12-21 15:27:41 +0000124
Victor Stinnerbf965582016-10-18 16:29:27 +0200125
126#ifndef HAVE_ATANH
Mark Dickinsonf3718592009-12-21 15:27:41 +0000127/* atanh(x)
128 * Method :
129 * 1.Reduced x to positive by atanh(-x) = -atanh(x)
130 * 2.For x>=0.5
Mark Dickinson6c3bcb72010-07-05 20:14:26 +0000131 * 1 2x x
132 * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * -------)
133 * 2 1 - x 1 - x
Mark Dickinsonf3718592009-12-21 15:27:41 +0000134 *
135 * For x<0.5
136 * atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
137 *
138 * Special cases:
139 * atanh(x) is NaN if |x| >= 1 with signal;
140 * atanh(NaN) is that NaN with no signal;
141 *
142 */
143
144double
145_Py_atanh(double x)
146{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 double absx;
148 double t;
Mark Dickinsonf3718592009-12-21 15:27:41 +0000149
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000150 if (Py_IS_NAN(x)) {
151 return x+x;
152 }
153 absx = fabs(x);
154 if (absx >= 1.) { /* |x| >= 1 */
155 errno = EDOM;
Mark Dickinsonf3718592009-12-21 15:27:41 +0000156#ifdef Py_NAN
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000157 return Py_NAN;
Mark Dickinsonf3718592009-12-21 15:27:41 +0000158#else
Victor Stinnerbf965582016-10-18 16:29:27 +0200159 return x / zero;
Mark Dickinsonf3718592009-12-21 15:27:41 +0000160#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000161 }
162 if (absx < two_pow_m28) { /* |x| < 2**-28 */
163 return x;
164 }
165 if (absx < 0.5) { /* |x| < 0.5 */
166 t = absx+absx;
167 t = 0.5 * m_log1p(t + t*absx / (1.0 - absx));
168 }
169 else { /* 0.5 <= |x| <= 1.0 */
170 t = 0.5 * m_log1p((absx + absx) / (1.0 - absx));
171 }
172 return copysign(t, x);
Mark Dickinsonf3718592009-12-21 15:27:41 +0000173}
Victor Stinnerbf965582016-10-18 16:29:27 +0200174#endif /* HAVE_ATANH */
Mark Dickinson664b5112009-12-16 20:23:42 +0000175
Victor Stinnerbf965582016-10-18 16:29:27 +0200176
177#ifndef HAVE_EXPM1
Mark Dickinson664b5112009-12-16 20:23:42 +0000178/* Mathematically, expm1(x) = exp(x) - 1. The expm1 function is designed
179 to avoid the significant loss of precision that arises from direct
180 evaluation of the expression exp(x) - 1, for x near 0. */
181
182double
183_Py_expm1(double x)
184{
185 /* For abs(x) >= log(2), it's safe to evaluate exp(x) - 1 directly; this
186 also works fine for infinities and nans.
187
188 For smaller x, we can use a method due to Kahan that achieves close to
189 full accuracy.
190 */
191
192 if (fabs(x) < 0.7) {
Mark Dickinson6f493b72010-07-06 15:00:40 +0000193 double u;
194 u = exp(x);
195 if (u == 1.0)
196 return x;
197 else
198 return (u - 1.0) * x / log(u);
Mark Dickinson664b5112009-12-16 20:23:42 +0000199 }
200 else
Mark Dickinson6f493b72010-07-06 15:00:40 +0000201 return exp(x) - 1.0;
Mark Dickinson664b5112009-12-16 20:23:42 +0000202}
Victor Stinnerbf965582016-10-18 16:29:27 +0200203#endif /* HAVE_EXPM1 */
204
Mark Dickinsonf3718592009-12-21 15:27:41 +0000205
206/* log1p(x) = log(1+x). The log1p function is designed to avoid the
207 significant loss of precision that arises from direct evaluation when x is
208 small. */
209
Mark Dickinson05d79e92012-08-18 12:24:30 +0100210double
211_Py_log1p(double x)
212{
Victor Stinnerbf965582016-10-18 16:29:27 +0200213#ifdef HAVE_LOG1P
Mark Dickinson05d79e92012-08-18 12:24:30 +0100214 /* Some platforms supply a log1p function but don't respect the sign of
215 zero: log1p(-0.0) gives 0.0 instead of the correct result of -0.0.
216
217 To save fiddling with configure tests and platform checks, we handle the
218 special case of zero input directly on all platforms.
219 */
220 if (x == 0.0) {
221 return x;
222 }
223 else {
224 return log1p(x);
225 }
Mark Dickinson05d79e92012-08-18 12:24:30 +0100226#else
Mark Dickinsonf3718592009-12-21 15:27:41 +0000227 /* For x small, we use the following approach. Let y be the nearest float
228 to 1+x, then
229
Mark Dickinson6c3bcb72010-07-05 20:14:26 +0000230 1+x = y * (1 - (y-1-x)/y)
Mark Dickinsonf3718592009-12-21 15:27:41 +0000231
232 so log(1+x) = log(y) + log(1-(y-1-x)/y). Since (y-1-x)/y is tiny, the
233 second term is well approximated by (y-1-x)/y. If abs(x) >=
234 DBL_EPSILON/2 or the rounding-mode is some form of round-to-nearest
235 then y-1-x will be exactly representable, and is computed exactly by
236 (y-1)-x.
237
238 If abs(x) < DBL_EPSILON/2 and the rounding mode is not known to be
239 round-to-nearest then this method is slightly dangerous: 1+x could be
240 rounded up to 1+DBL_EPSILON instead of down to 1, and in that case
241 y-1-x will not be exactly representable any more and the result can be
242 off by many ulps. But this is easily fixed: for a floating-point
243 number |x| < DBL_EPSILON/2., the closest floating-point number to
244 log(1+x) is exactly x.
245 */
246
247 double y;
Victor Stinnerbf965582016-10-18 16:29:27 +0200248 if (fabs(x) < DBL_EPSILON / 2.) {
Mark Dickinson6f493b72010-07-06 15:00:40 +0000249 return x;
250 }
251 else if (-0.5 <= x && x <= 1.) {
Georg Brandle48ec212014-10-28 22:24:46 +0100252 /* WARNING: it's possible that an overeager compiler
Mark Dickinson6f493b72010-07-06 15:00:40 +0000253 will incorrectly optimize the following two lines
254 to the equivalent of "return log(1.+x)". If this
255 happens, then results from log1p will be inaccurate
256 for small x. */
257 y = 1.+x;
Victor Stinnerbf965582016-10-18 16:29:27 +0200258 return log(y) - ((y - 1.) - x) / y;
Mark Dickinson6f493b72010-07-06 15:00:40 +0000259 }
260 else {
261 /* NaNs and infinities should end up here */
262 return log(1.+x);
Mark Dickinsonf3718592009-12-21 15:27:41 +0000263 }
Victor Stinnerbf965582016-10-18 16:29:27 +0200264#endif /* ifdef HAVE_LOG1P */
Mark Dickinsonf3718592009-12-21 15:27:41 +0000265}
Mark Dickinson05d79e92012-08-18 12:24:30 +0100266