The five Second Order Linear Heun equations and the corresponding Heun function solutions
Description
Examples
Some important facts about Heun functions
References
The five multiparameter Heun equations have been popping up with surprising frequency in applications during the last 15 years. Heun equations include as particular cases the Lame, Mathieu, spheroidal wave, hypergeometric, and with them most of the known equations of mathematical physics.
Five Heun functions are defined as the solutions to each of these five Heun equations, computed as power series solutions around the origin satisfying prescribed initial conditions.
The five Heun equations and their singularities
The General Heun equation, with four regular singular points, is
with(DEtools,singularities);
singularities
PDEtools[declare](y(z), prime=z, quiet);
GHE := diff(y(z),z,z) + (gamma/z+delta/(z-1)+epsilon/(z-a))*diff(y(z),z) + (alpha*beta*z-q)/z/(z-1)/(z-a)*y(z) = 0;
GHE≔y''+γz+δz−1+εz−a⁢y'+α⁢β⁢z−q⁢yz⁢z−1⁢z−a=0
singularities( GHE );
regular=0,1,a,∞,irregular=∅
The solution to this equation is implemented in Maple as the HeunG function. The sum of the exponents of the singularities of Heun's equation is equal to two and the parameter ε is expressed in terms of the other ones by
epsilon = alpha+beta+1 -gamma-delta;
ε=α+β+1−γ−δ
The choice of standard form for the GHE is uniform in the literature except in one particular: the numerator of the coefficient of y is sometimes presented as α⁢β⁢z−q. The Maple choice of standard form, and so the definition of HeunG implemented, follows Chapter 1 in [2] (see references at the end) and has the small but significant advantage that you can take α=0 (or β=0) without eliminating the term in y completely.
The other four Heun equations are confluent cases, obtained from the general Heun equation above through confluence processes. These are: the Heun Confluent equation
CHE := diff(y(z),z,z) + (gamma/z+delta/(z-1)-epsilon)*diff(y(z),z) +((q-alpha*beta)/(z-1)-q/z)*y(z) = 0;
CHE≔y''+γz+δz−1−ε⁢y'+−α⁢β+qz−1−qz⁢y=0
singularities( CHE );
regular=0,1,irregular=∞
having for solution the HeunC function; the Biconfluent equation
BHE := diff(y(z),z,z) + (-2*z-beta+(1+alpha)/z)*diff(y(z),z) + (gamma-alpha-2 - 1/2*((1+alpha)*beta+delta)/z)*y(z) = 0;
BHE≔y''+−2⁢z−β+1+αz⁢y'+γ−α−2−1+α⁢β+δ2⁢z⁢y=0
singularities( BHE );
regular=0,irregular=∞
having for solution the HeunB function; the Doubleconfluent equation
DHE := diff(y(z),z,z)-(alpha+2*z+z^2*alpha-2*z^3)/(z+1)^2/(z-1)^2*diff(y(z),z)+(delta+(2*alpha+gamma)*z+beta*z^2)/(z-1)^3/(z+1)^3*y(z);
DHE≔y''−α⁢z2−2⁢z3+α+2⁢z⁢y'z+12⁢z−12+δ+2⁢α+γ⁢z+β⁢z2⁢yz−13⁢z+13
singularities( DHE );
regular=∅,irregular=−1,1
having for solution the HeunD function, and the Triconfluent equation
THE := diff(y(z),z,z) + (-gamma-3*z^2)*diff(y(z),z) + (alpha+z*beta-3*z)*y(z) = 0;
THE≔y''+−3⁢z2−γ⁢y'+β⁢z+α−3⁢z⁢y=0
singularities( THE );
regular=∅,irregular=∞
having for solution the HeunT function.
The standard form of the four confluent equations is not uniform in the literature. The Maple choice of standard form follows [1], the classic reference for these equations, except for one particular: for the Doubleconfluent equation (DHE above) (and so the definition of HeunD) Maple uses the so-called Jaffe form, see [3], so that the two irregular singular points are symmetrically located at z=−1 and z=1.
The confluence process and the confluent Heun equation
To illustrate the confluence process leading to the four confluent Heun equations, the CHE is obtained from the general equation as follows.
Redefine the parameters entering the GHE using
beta=beta*a, epsilon=epsilon*a, q=q*a;
β=β⁢a,ε=ε⁢a,q=q⁢a
eval(GHE, [(13)]);
Take the limit a -> ∞
Limit((14), a=infinity);
Evaluating this limit, the singularity at a "coalesces" with the one at ∞ resulting in
value((15));
−y'⁢ε⁢z2−y⁢α⁢β⁢z+y''⁢z2+y'⁢γ⁢z+y'⁢δ⁢z+y'⁢ε⁢z−y''⁢z−y'⁢γ+y⁢qz2−z=0
Rearranging the terms you get the CHE
(lhs-rhs)(collect(isolate((16), diff(y(z),z,z)), [y(z),diff(y(z),z)], u -> convert(u,parfrac,z))) = 0;
Since the two singularities being coalesced are regular, the resulting single singularity at ∞ will be irregular (this is typical; there are exceptions though)
singularities((17));
The five Heun functions
The Heun functions, HeunG, HeunC, HeunB, HeunD and HeunT, are defined as the solutions to the corresponding General, Confluent, Biconfluent, Doubleconfluent and Triconfluent Heun equations. These solutions are constructed as power series solutions around the origin, for certain initial conditions. The five equations and the initial conditions used to define the corresponding five Heun functions can be seen through the FunctionAdvisor
FunctionAdvisor(definition,HeunG);
FunctionAdvisor(definition,HeunC);
HeunC⁡α,β,γ,δ,η,z=DESol⁡_Yz,z−−z2⁢α+−β+α−γ−2⁢z+β+1⁢_Yzz⁢z−1−−β−γ−2⁢α−2⁢δ⁢z+β+1⁢α+−γ−1⁢β−2⁢η−γ⁢_Y⁡z2⁢z⁢z−1,_Y⁡z,_Y⁡0=1,D⁡_Y⁡0=−α+1+γ⁢β+γ−α+2⁢η2⁢β+1
FunctionAdvisor(definition,HeunB);
FunctionAdvisor(definition,HeunD);
FunctionAdvisor(definition,HeunT);
The power series solutions at the base of the functions' definitions have restricted radius of convergence in the HeunG, HeunC and HeunD cases, where the numerical evaluation is done using analytic extensions, exploring closed form identities satisfied by these functions, as well as series expansions around different singularities. For arbitrary values of the parameters, however, closed form formulas for the connection constants relating series expansions around different singularities, are not known.
As an example of the use of identities, for HeunD,
FunctionAdvisor(identities,HeunD);
HeunD⁡α,β,γ,δ,z=HeunD⁡−α,−δ,−γ,−β,1z
Hence, the evaluation of the function in the complex plane outside the unit circle is performed by mapping the problem into that of evaluating the function inside that circle. A similar situation is described in the help page for HeunG.
Remark: The coefficients entering the series expansions represented by the Heun functions satisfy three term recurrence relations. A solution to these recursion equations is not known in the general case, so a closed form for the series's coefficients is not available and the computation of - say - the nth coefficient requires the explicit computation of all the previous ones.
They are more general than the rest of the functions of the mathematical language in that they contain most of them as particular cases. Consequently, the Heun equations cannot have their solution expressed (but as infinite sum power series) without using the corresponding Heun functions.
The Heun functions have a rich structure and so satisfy a rather large number of identities.
Because they have such a rich structure and include as particular so many functions, including the Mathieu, Lame, Spheroidal Wave and hypergeometric 2F1, 1F1 and 0F1 functions, the interrelations between them and the Heun ones are a source of many nontrivial identities between the former.
Due to the enlarged structure of singularities (if compared for instance with hypergeometric functions) the Heun functions are increasingly appearing in the modeling of different types of problems in applied mathematics.
[1] Decarreau, A.; Dumont-Lepage, M.C.; Maroni, P.; Robert, A.; and Ronveaux, A. "Formes Canoniques de Equations confluentes de l'equation de Heun." Annales de la Societe Scientifique de Bruxelles, Vol. I-II. (1978): 53-78.
[2] Ronveaux, A., ed. Heun's Differential Equations. Oxford, England: Oxford University Press, 1995.
[3] Slavyanov, S.Y., and Lay W. Special Functions, A Unified Theory Based on Singularities. Oxford, England: Oxford Mathematical Monographs, 2000.
See Also
Appell
DESol
HeunB
HeunC
HeunD
HeunG
HeunT
hypergeom
Mathieu
MeijerG
Download Help Document