The first few polynomialsThese are the first few Laguerre polynomials:
Recursive definitionWe can also define the Laguerre polynomials recursively, defining the first two polynomials as and then using the recurrence relation for any Generalized Laguerre polynomialsThe orthogonality property stated above is equivalent to saying that if X is an exponentially distributed random variable with probability density function then The exponential distribution is not the only gamma distribution. A polynomial sequence orthogonal with respect to the gamma distribution whose probability density function is, for α > − 1, (see gamma function) is given by the defining Rodrigues equation for the generalized Laguerre polynomials: These are also sometimes called the associated Laguerre polynomials. The simple Laguerre polynomials are recovered from the generalized polynomials by setting α = 0: Explicit examples of generalized Laguerre polynomialsThe generalized Laguerre polynomial of degree n is (as follows from applying Leibniz's theorem for differentiation of a product to the defining Rodrigues formula) from which we see that the coefficient of the leading term is ( − 1)n / n! and the constant term (which is also the value at the origin) is The first few generalized Laguerre polynomials are: Recurrence RelationsLaguerre's polynomials satisfy the recurrence relations in particular
They can be used to derive
combined they give this additional, popular recurrence relation Derivatives of generalized Laguerre polynomialsDifferentiating the power series representation of a generalized Laguerre polynomial k times leads to moreover, this following equation holds The generalized associated Laguerre polynomials obey the differential equation OrthogonalityThe associated Laguerre polynomials are orthogonal over
recursively Moreover, The following integral is needed in the quantum mechanical treatment of the hydrogen atom, Series ExpansionsMonomials are representated as This leads directly to and, even more generally, For β a non-negative integer this simplifies to for γ = 0 to The Bessel function Jα can be expressed (using an arbitrarily chosen parameter t) as
is an immediate consequence of the definition of Laguerre's polynomials; derived from that are the identities
As contour integralThe polynomials may be expressed in terms of a contour integral where the contour circles the origin once in a counterclockwise direction. Relation to Hermite polynomialsThe generalized Laguerre polynomials are related to the Hermite polynomials: and where the Hn(x) are the Hermite polynomials based on the weighting function exp( − x2), the so-called "physicist's version." Because of this, the generalized Laguerre polynomials arise in the treatment of the quantum harmonic oscillator. Relation to hypergeometric functionsThe Laguerre polynomials may be defined in terms of hypergeometric functions, specifically the confluent hypergeometric functions, as where (a)n is the Pochhammer symbol (which in this case represents the rising factorial). Computation using Horner's method
function LaguerreL(n, alpha, x) {
LaguerreL:= 1; bin:= 1
for i:= n to 1 step -1 {
bin:= bin* (alpha+ i)/ (n+ 1- i)
LaguerreL:= bin- x* LaguerreL/ i
}
return LaguerreL;
}
External linksReferences
| |