Quantcast
Channel: CodeSection,代码区,Python开发技术文章_教程 - CodeSec
Viewing all articles
Browse latest Browse all 9596

Dilogarithm, polylogarithm, and related functions

$
0
0

The functions dilogarithm , trilogarithm , and more generally polylogarithm are meant to be generalizations of the logarithm. I first came across the dilogarithm in college when I was evaluatingsome integral with Mathematica, and they’ve paid a visit occasionally ever since.

Unfortunately polylogarithms are defined in several slightly different and incompatible ways. I’ll start by following An Atlas of Functions and then mention differences in A&S , SciPy, and Mathematica.

Polylogarithms

According to Atlas ,

Polylogarithms are themselves special cases of Lerch’s function. Also known as Jonquière’s functions (Ernest Jean Philippe Fauque de Jonquières, 1820 1901, French naval officer and mathematician), they appear in the Feynman diagrams of particle physics.

The idea is to introduce an extra parameter ν in the power series for natural log:


Dilogarithm, polylogarithm, and related functions

When ν = 1 we get the ordinary logarithm, i.e. polyln 1 = log. Then polyln 2 is the dilogarithm diln, and polyln 3 is the trilogarithm triln.

One advantage of the definition in Atlas is that the logarithm is a special case of the polylogarithm. Other conventions don’t have this property.

Other conventions

The venerable A&S defines dilogarithms in a way that’s equivalent to the negative of the definition above and does not define polylogarithms of any other order. SciPy’s special function library follows A&S. SciPy uses the name spence for the dilogarithm for reasons we’ll get to shortly.

Mathematica has the function PolyLog[ν, x] that evaluates to
Dilogarithm, polylogarithm, and related functions
So polyln ν above corresponds to -PolyLog[ν, -x] in Mathematica. Matlab’s polylog is the same as Mathematica’s PolyLog . Relation to other functions

Spence’s integralis the function of x given by the integral


Dilogarithm, polylogarithm, and related functions

and equals diln( x ). Note that the SciPy function spence returns the negative of the integral above.

The Lerch function mentioned above is named for Mathias Lerch (1860 1922) and is defined by the integral


Dilogarithm, polylogarithm, and related functions

The connection with polylogarithms is easier to see from the series expansion:


Dilogarithm, polylogarithm, and related functions

The connection with polylogarithms is then


Dilogarithm, polylogarithm, and related functions

Note that the Lerch function also generalizes the Hurwitz zeta function, which in turn generalizes the Riemann zeta function. When x = 1, the Lerch function reduces to ζ(ν, u ).


Viewing all articles
Browse latest Browse all 9596

Trending Articles