HeunT (Triconfluent Heun function)
What this page is (and isn’t)
Section titled “What this page is (and isn’t)”The triconfluent Heun function (often denoted HeunT) is the canonical local solution of the triconfluent Heun equation (THE)—the most confluent member of the Heun family—whose only singular point is an irregular singularity at infinity. As a consequence, the standard power series about any finite point (in particular the origin) converges everywhere in , so HeunT is an entire function of for fixed parameters.
This page is written for researchers who use special functions in analytic/numerical work and want a reliable “how-to” reference: what equation HeunT solves, how it is normalized, how to compute it (series and asymptotics), and what special parameter regimes produce polynomials or closed forms.
The canonical triconfluent Heun equation (THE)
Section titled “The canonical triconfluent Heun equation (THE1_11)”A common and very convenient normalization (used in the classic reference Heun’s Differential Equations, Part E) is the canonical THE:
All finite points are ordinary; the only singularity is at (irregular, rank ).
Representative “Schrödinger” form (THE)
Section titled “Representative “Schrödinger” form (THE2_22)”It is often useful (especially for asymptotics/WKB) to remove the first-derivative term. With
the canonical equation is equivalent to the representative form
Definition of HeunT (normalization)
Section titled “Definition of HeunT (normalization)”Because is an ordinary point, solutions are uniquely determined by . The standard basis of entire solutions is:
- : the solution with
- : the solution with
In the reduced-parameter convention used on this site, the triconfluent Heun function is
i.e. the unique entire solution of THE with and .
Power series at the origin (global, since the function is entire)
Section titled “Power series at the origin (global, since the function is entire)”Write
A convenient order-3 recurrence (from the Euler-operator form of THE) is:
where are the Taylor coefficients of a solution.
For HeunT specifically:
and for ,
The companion entire solution
Section titled “The companion entire solution E2E_2E2”Similarly,
with
and for ,
Symmetries and parameter transformations (the “” action)
Section titled “Symmetries and parameter transformations (the “G6G_6G6” action)”A characteristic feature of THE is a discrete symmetry under multiplication of the argument by a 6th root of unity.
Let satisfy . Define the operator acting on a solution of THE by
Then:
- the six operators form a group isomorphic to the cyclic group ;
- maps solutions of THE to solutions of THE (with transformed parameters);
- in the THE representation (no first derivative),
These symmetries are extremely useful for:
- generating solutions in different angular sectors,
- relating asymptotics across rotations by ,
- reducing computations to a “principal wedge” and rotating.
Asymptotics at infinity and Stokes phenomenon
Section titled “Asymptotics at infinity and Stokes phenomenon”Since is an irregular singularity, the natural objects are formal asymptotic expansions, valid in angular sectors and related by Stokes matrices.
A formal fundamental system (THE)
Section titled “A formal fundamental system (THE1_11)”A standard formal basis of solutions of THE as is:
The coefficients satisfy:
- normalization and first terms
- recurrence (valid for all )
Stokes rays and sectors
Section titled “Stokes rays and sectors”Because the dominant exponential in is , the Stokes geometry is governed by :
- anti-Stokes directions (oscillatory/transition) satisfy , i.e. giving 6 rays separated by ;
- between these rays lie Stokes sectors where one exponential dominates.
Special parameter regimes
Section titled “Special parameter regimes”1) Polynomial solutions (“triconfluent Heun polynomials”)
Section titled “1) Polynomial solutions (“triconfluent Heun polynomials”)”THE can admit polynomial solutions because it has no finite singularities: any rational solution must be a polynomial.
A polynomial solution of degree exists (and is unique up to scaling) iff both conditions hold:
where is a determinantal condition (dimension ) arising from truncation of the coefficient recurrence.
A useful way to see the truncation is to substitute into THE, which yields the coefficient relations
valid for all integers with for and .
From the highest-degree conditions one gets ; the remaining linear relations form a homogeneous system in whose determinant is .
For small degrees one obtains explicit constraints; for instance:
- : , , with ;
- : , , with ;
- : , , with an explicit quadratic polynomial.
2) Liouvillian (closed-form) solutions
Section titled “2) Liouvillian (closed-form) solutions”A Liouvillian solution is one expressible via a finite tower of algebraic operations, integration, and exponentials of integrals. For THE, a particularly concrete characterization holds:
THE is Liouvillian iff
In that case, one solution can be written as
with the corresponding polynomial from the previous section.
How to compute HeunT in practice
Section titled “How to compute HeunT in practice”If you have a CAS implementation
Section titled “If you have a CAS implementation”Most researchers should start here.
-
Maple implements the reduced-parameter convention directly:
HT := HeunT(alpha, beta, gamma, x);dHT := HeunTPrime(alpha, beta, gamma, x);Maple computes HeunT as a power series at the origin and analytically continues as needed; because the series has infinite radius of convergence, this is unusually robust for a Heun-type function.
-
Wolfram Language / Mathematica provides
HeunT[...]but uses a different parameterization (more parameters in the differential equation). If you want to match the 3-parameter THE used here, convert your ODE to this canonical form first (affine change of variable plus a gauge transformation). Consult the system documentation for the exact equation it uses.
If you need a custom numerical implementation
Section titled “If you need a custom numerical implementation”A reliable strategy is hybrid:
-
Near the origin: use Taylor series with the recurrence for .
- Stop when the tail estimate is below your tolerance.
- Use compensated summation if parameters produce alternating/canceling series.
-
For moderate/large : integrate the ODE numerically along a path in the complex plane, using initial data at a point where the Taylor series is still accurate.
-
For very large or sector-sensitive problems (e.g. eigenvalue quantization via connection problems):
- use the formal asymptotics within a chosen Stokes sector,
- rotate sectors using the symmetry (),
- track Stokes rays carefully.
Common pitfalls (and how to avoid them)
Section titled “Common pitfalls (and how to avoid them)”-
Confusing THE with THE: they are equivalent but not identical; mixing their normalizations will change prefactors by .
-
Ignoring Stokes geometry: when is large, crossing a Stokes ray changes which asymptotic combination represents a given actual solution. If you’re matching boundary conditions at infinity, you must specify the sector.
-
Resonant parameters: when the fractional powers in the asymptotic prefactors simplify, but special solutions (polynomials/Liouvillian cases) may occur and numerics can become delicate.
References (starting points)
Section titled “References (starting points)”- A. Ronveaux (ed.), Heun’s Differential Equations, Oxford University Press (1995).
- A. Decarreau et al., “Formes canoniques d’équations confluentes de l’équation de Heun”, Ann. Soc. Sci. Bruxelles 92 (1978) 53–78.
- S. Yu. Slavyanov and W. Lay, Special Functions: A Unified Theory Based on Singularities, Oxford Mathematical Monographs (2000).
- CAS documentation: Maplesoft HeunT and Wolfram Language HeunT reference pages (check the equation/normalization each uses).