Univariate orthonormal polynomials¶
This page provides mathematical details on sequences of univariate
polynomials which are orthonornal with respect to a distribution .
These sequences are used to build multivariate polynomial basis by tensorization in the polynomial chaos expansion (refer to Functional Chaos Expansion and Multivariate Orthonormal basis).
A sequence of univariate orthonormal polynomials is defined by a three-term recurrence
formula. Let by the polynomial of degree
.
Then the sequence
verifies the relation:
where for all ,
and
.
We detail:
some well-known sequences of univariate orthonormal polynomials,
how to compute any sequence of univariate orthonormal polynomials.
Orthonormal polynomials with respect to usual probability distributions¶
Below is a table showing some usual sequences of
polynomials orthonormal with respect to continuous distribution .
Ortho. poly. |
Weight |
Recurrence coefficients |
|
|---|---|---|---|
Hermite |
|||
Legendre |
|||
Laguerre |
|||
Jacobi |
|
||
Furthermore, two families of orthonormal polynomials with respect to discrete distribution are well-known and detailed in the Table below.
Ortho. poly. |
Probability mass function |
Recurrence coefficients |
|
|---|---|---|---|
Charlier |
|||
Krawtchouk |
Notice that the Krawtchouk polynomials are only defined up to the
degree . Indeed, for the degree
, some
factors of the denominators of the recurrence coefficients would be
equal to zero.
The Table below sums up the available polynomials sequences and the distribution with respect to which they are orthonormal.
Distribution |
Support |
Polynomial family |
In the library |
|---|---|---|---|
Normal |
Hermite |
||
Uniform |
Legendre |
||
Gamma |
Laguerre |
||
Beta |
Jacobi |
||
Poisson |
Charlier |
||
Binomial |
Krawtchouk |
||
Negative Binomial |
Meixner |
Orthonormal polynomials with respect to arbitrary probability distributions¶
It is also possible to generate a family of orthonormal polynomials
with respect to an arbitrary probability distribution .
The Gram-Schmidt algorithm can be used to this end. Note that this algorithm gives a constructive proof of the existence of orthonormal bases. However it is known to be numerically unstable, so alternative procedures are often used in practice.
For all arbitrary distributions, the three-term recurrence is computed (see AdaptiveStieltjesAlgorithm)
and used to build its orthonormal polynomial family (see StandardDistributionPolynomialFactory).
OpenTURNS