Hermitian polynomial

from Wikipedia, the free encyclopedia
Plots of the first five Hermitian polynomials H n

The Hermitian polynomials (after Charles Hermite ) are polynomials with the following equivalent representations:

or.

The Hermitian polynomials (with a fixed one ) are solutions of the Hermitian differential equation , a linear differential equation of the second order:

Explicit representation

The explicit representation is obtained from the first representation with the formula of Faà di Bruno

so

Hermitian polynomials can be calculated using the following recursion formulas :

Since one is multiplied with each iteration step, you can quickly see that a polynomial is of degrees . The coefficient of the highest power is . For even , only even powers of occur, correspondingly for odd, only odd powers, which is mathematically identified by the identity

expresses.

The recursive representation of the above Hermitian polynomials can also be written as follows through simple substitution :

Pascal source code

With the help of the known initial conditions and the function values ​​can easily be calculated with the following recursive Pascal function:

 Function Hermite(n:Byte;x:Extended):Extended;
   Function Go(m:Byte; p,q:Extended): Extended;
   Begin
     If n=m Then Go := p
            Else Go := Go(m+1, q, 2*x*q - 2*(m+1)*p)
   End;
 Begin
   Hermite := Go(0, 1, 2*x)
 End;

The more general derivation formula can be implemented as follows:

 Function HermiteAbleitung(n,m:Byte;x:Extended):Extended;
 Begin
  If m=0 Then HermiteAbleitung:=Hermite(n,x)
         Else
   If n<m Then HermiteAbleitung:=0
          Else If m=1 Then HermiteAbleitung:=2*n*Hermite(n-1,x)
                      Else HermiteAbleitung:=2*n*HermiteAbleitung(n-1,m-1,x)
 End;

Orthogonality

The Hermitian polynomials satisfy the orthogonality relation with regard to the weight function

This means that certain real functions can be expanded into a series according to the Hermitian polynomials .

Different representation of Hermitian polynomials

Plots of the first five Hermitian polynomials He n (physicist convention)

Another way of defining Hermitian polynomials (physicists' convention) is

They are orthogonal to the weight function

and satisfy the differential equation

You can pass through recursively

determine.

Binomial theorem

For the Hermitian polynomials a formula applies which has a similar form to the binomial theorem . For is

Index with negative value

The derivative of the complementary error function is

.

The representation of the Hermitian polynomials can thus also be written as follows:

,

so that one finds for:

.

The functions of higher indices are calculated as:

or recursively with .

The functions obtained in this way, like the polynomials with a positive index, satisfy the Hermitian differential equation.

They are:

Applications

The Hermite polynomials get their importance from their versatile applicability in physics. For example, they are needed to construct the orthonormal solution functions of the quantum mechanical harmonic oscillator . These correspond to the Hermitian functions , which are obtained by multiplying with the Gaussian normal distribution and using suitable normalization.

They are also used in the finite element method as shape functions.

The probability density of the non-central Student's t-distribution can be expressed using Hermitian polynomial functions whose index has negative values.

See also

literature

Web links

Individual evidence

  1. Eric W. Weisstein : Hermite Polynomial . In: MathWorld (English).