Content deleted Content added
→Simple implementation: Removed memoization note from code. |
Citation bot (talk | contribs) Added issue. | Use this bot. Report bugs. | Suggested by Abductive | Category:Gamma and related functions | #UCB_Category 18/38 |
||
(33 intermediate revisions by 23 users not shown) | |||
Line 1:
{{Short description|Numerical method for calculating the gamma function}}
In [[mathematics]], the '''Lanczos approximation''' is a method for computing the [[gamma function]] numerically, published by [[Cornelius Lanczos]] in 1964. It is a practical alternative to the more popular [[Stirling's approximation]] for calculating the gamma function with fixed precision.
Line 4 ⟶ 5:
The Lanczos approximation consists of the formula
:<math>\Gamma(z+1) = \sqrt{2\pi} {\left( z + g + \tfrac12 \right)}^{z +
for the gamma function, with
Line 10 ⟶ 11:
:<math>A_g(z) = \frac12p_0(g) + p_1(g) \frac{z}{z+1} + p_2(g) \frac{z(z-1)}{(z+1)(z+2)} + \cdots.</math>
Here ''g'' is a real [[Constant (mathematics)|constant]] that may be chosen arbitrarily subject to the restriction that Re(''z''
:<math>\Gamma(1-z) \; \Gamma(z) = {\pi \over \sin \pi z}.</math>
The series ''A'' is [[convergent series|convergent]], and may be truncated to obtain an approximation with the desired precision. By choosing an appropriate ''g'' (typically a small integer), only some 5–10 terms of the series are needed to compute the
:<math>A_g(z) = c_0 + \sum_{k=1}^{N} \frac{c_k}{z+k}</math>
Thus computing the gamma function becomes a matter of evaluating only a small number of [[elementary function]]s and multiplying by stored constants. The Lanczos approximation was popularized by ''[[Numerical Recipes]]'', according to which computing the
==Coefficients==
The coefficients are given by
:<math>p_k(g) = \frac{\sqrt{2\,}}{\pi} \sum_{
:<math>\begin{align}
\end{align}</math>
==Derivation==
Line 47 ⟶ 48:
==Simple implementation==
The following implementation in the [[Python (programming language)|Python programming language]] works for complex arguments and typically gives
Note that omitting the smallest coefficients (in pursuit of speed, for example) gives totally inaccurate results; the coefficients must be recomputed from scratch for an expansion with fewer terms.
<
from cmath import sin, sqrt, pi, exp
"""
The coefficients used in the code are for when g = 7 and n = 9
Here are some other samples
g = 5
n = 5
p = [
1.0000018972739440364,
76.180082222642137322,
-86.505092037054859197,
24.012898581922685900,
-1.2296028490285820771
]
g = 5
n = 7
p = [
1.0000000001900148240,
76.180091729471463483,
-86.505320329416767652,
24.014098240830910490,
-1.2317395724501553875,
0.0012086509738661785061,
-5.3952393849531283785e-6
]
g = 8
n = 12
p = [
0.9999999999999999298,
1975.3739023578852322,
-4397.3823927922428918,
3462.6328459862717019,
-1156.9851431631167820,
154.53815050252775060,
-6.2536716123689161798,
0.034642762454736807441,
-7.4776171974442977377e-7,
6.3041253821852264261e-8,
-2.7405717035683877489e-8,
4.0486948817567609101e-9
]
"""
g = 7
n = 9
p = [
0.99999999999980993,
676.5203681218851,
-1259.1392167224028,
771.32342877765313,
-176.61502916214059,
12.507343278686905,
-0.13857109526572012,
9.9843695780195716e-6,
1.5056327351493116e-7
]
EPSILON = 1e-07
def drop_imag(z):
if abs(z.imag) <= EPSILON:
z = z.real
return z
def gamma(z):
z = complex(z)
if z.real < 0.5:
else:
z -= 1
x = p[0
for i in range(1, len(p)):
t = z +
y = sqrt(2 * pi) * t ** (z + 0.5) * exp(-t) * x
return
"""
The above use of the reflection (thus the if-else structure) is necessary, even though
it may look strange, as it allows to extend the approximation to values of z where
Re(z) < 0.5, where the Lanczos method is not valid.
"""
print(gamma(1))
print(gamma(5))
print(gamma(0.5))
</syntaxhighlight>
==See also==
Line 101 ⟶ 163:
| title = A Precision Approximation of the Gamma Function
| jstor = 2949767
| journal =Journal of the Society for Industrial and Applied Mathematics, Series B: Numerical Analysis
| volume = 1
| pages = 86–96
| year = 1964
| issue = 1
| doi= 10.
| bibcode = 1964SJNA....1...86L
}}
* {{Citation | last1=Press | first1=W. H. | last2=Teukolsky | first2=S. A. | last3=Vetterling | first3=W. T. | last4=Flannery | first4=B. P. | year=2007 | title=Numerical Recipes: The Art of Scientific Computing | edition=3rd | publisher=Cambridge University Press |
* {{cite thesis
|last=Pugh
Line 129 ⟶ 192:
[[Category:Gamma and related functions]]
[[Category:Numerical analysis]]
[[Category:Articles with example Python (programming language) code]]
|