hermite {EQL}R Documentation

Hermite Polynomials

Description

Computes the Hermite polynomial Hn(x)H_n(x).

Usage

hermite(x, n, prob = TRUE)

Arguments

x

a numeric vector or array giving the values at which the Hermite polynomial should be evaluated.

n

an integer vector or array giving the degrees of the Hermite polynomials. If length(x) != 1, n must be either of the same length as x or a single value.

prob

logical. If TRUE (the default) the probabilistic version of the Hermite polynomial is evaluated, otherwise the physicists' Hermite polynomials are used. See the ‘Details’ section below for further information.

Details

The Hermite polynomials are given by:

and the relationship between the two versions is given by

HnPh(x)=2n/2HnPr(2x).H_n^{Ph}(x)=2^{n/2}H_n^{Pr}(\sqrt{2}x).

The term ‘probabilistic’ is motivated by the fact that in this case the Hermite polynomial Hn(x)H_n(x) can be as well defined by

Hn(x)=(1)n1φ(x)φ(n)(x),H_n(x)=(-1)^{n}\frac{1}{\varphi(x)} \varphi^{(n)}(x),

where φ(x)\varphi(x) denotes the density function of the standard normal distribution and φ(k)(x)\varphi^{(k)}(x) denotes the kkth derivative of φ(x)\varphi(x) with respect to xx.

If the argument n is a vector it must be of the same length as the argument x or the length of the argument x must be equal to one. The Hermite polynomials are then evaluated either at xix_i with degree nin_i or at xx with degree nin_i, respectively.

Value

the Hermite polynomial (either the probabilists' or the physicists' version) evaluated at x.

Author(s)

Thorn Thaler

References

Fedoryuk, M.V. (2001). Hermite polynomials. Encyclopaedia of Mathematics, Kluwer Academic Publishers.

Examples

2^(3/2)*hermite(sqrt(2)*5, 3)    # = 940
hermite(5, 3, FALSE)             # = 940
hermite(2:4, 1:3)                # H_1(2), H_2(3), H_3(4)
hermite(2:4, 2)                  # H_2(2), H_2(3), H_2(4)
hermite(2, 1:3)                  # H_1(2), H_2(2), H_3(2)
## Not run: 
hermite(1:3, 1:4)                # Error!

## End(Not run)

[Package EQL version 1.0-1 Index]