![]() | ||
Parameters λ > 0 {displaystyle lambda >0} μ > 0 {displaystyle mu >0} Support x ∈ ( 0 , ∞ ) {displaystyle xin (0,infty )} PDF [ λ 2 π x 3 ] 1 / 2 exp { − λ ( x − μ ) 2 2 μ 2 x } {displaystyle left[{rac {lambda }{2pi x^{3}}}ight]^{1/2}exp left{{rac {-lambda (x-mu )^{2}}{2mu ^{2}x}}ight}} CDF Φ ( λ x ( x μ − 1 ) ) {displaystyle Phi left({sqrt {rac {lambda }{x}}}left({rac {x}{mu }}-1ight)ight)} + exp ( 2 λ μ ) Φ ( − λ x ( x μ + 1 ) ) {displaystyle +exp left({rac {2lambda }{mu }}ight)Phi left(-{sqrt {rac {lambda }{x}}}left({rac {x}{mu }}+1ight)ight)} where Φ ( ) {displaystyle Phi left(ight)} is the standard normal (standard Gaussian) distribution c.d.f. Mean E [ X ] = μ {displaystyle scriptstyle mathbf {E} [X]=mu } E [ 1 X ] = 1 μ + 1 λ {displaystyle scriptstyle mathbf {E} [{rac {1}{X}}]={rac {1}{mu }}+{rac {1}{lambda }}} Mode μ [ ( 1 + 9 μ 2 4 λ 2 ) 1 2 − 3 μ 2 λ ] {displaystyle mu left[left(1+{rac {9mu ^{2}}{4lambda ^{2}}}ight)^{rac {1}{2}}-{rac {3mu }{2lambda }}ight]} |
In probability theory, the inverse Gaussian distribution (also known as the Wald distribution) is a two-parameter family of continuous probability distributions with support on (0,∞).
Contents
- Single parameter form
- Summation
- Scaling
- Exponential family
- Differential equation
- Relationship with Brownian motion
- When drift is zero
- Maximum likelihood
- Generating random variates from an inverse Gaussian distribution
- Related distributions
- History
- Numeric computation and software
- References
Its probability density function is given by
for x > 0, where
As λ tends to infinity, the inverse Gaussian distribution becomes more like a normal (Gaussian) distribution. The inverse Gaussian distribution has several properties analogous to a Gaussian distribution. The name can be misleading: it is an "inverse" only in that, while the Gaussian describes a Brownian Motion's level at a fixed time, the inverse Gaussian describes the distribution of the time a Brownian Motion with positive drift takes to reach a fixed positive level.
Its cumulant generating function (logarithm of the characteristic function) is the inverse of the cumulant generating function of a Gaussian random variable.
To indicate that a random variable X is inverse Gaussian-distributed with mean μ and shape parameter λ we write
Single parameter form
The probability density function (pdf) of inverse Gaussian distribution has a single parameter form given by
In this form, the mean and variance of the distribution are equal,
Also, the cumulative distribution function (cdf) of the single parameter inverse Gaussian distribution is related to the standard normal distribution by
where
In the single parameter form, the MGF simplifies to
An inverse Gaussian distribution in double parameter form
The standard form of inverse Gaussian distribution is
Summation
If Xi has an IG(μ0wi, λ0wi2) distribution for i = 1, 2, ..., n and all Xi are independent, then
Note that
is constant for all i. This is a necessary condition for the summation. Otherwise S would not be inverse Gaussian.
Scaling
For any t > 0 it holds that
Exponential family
The inverse Gaussian distribution is a two-parameter exponential family with natural parameters -λ/(2μ²) and -λ/2, and natural statistics X and 1/X.
Differential equation
Relationship with Brownian motion
The stochastic process Xt given by
(where Wt is a standard Brownian motion and
Then, the first passage time for a fixed level
When drift is zero
A common special case of the above arises when the Brownian motion has no drift. In that case, parameter μ tends to infinity, and the first passage time for fixed level α has probability density function
This is a Lévy distribution with parameters
Maximum likelihood
The model where
with all wi known, (μ, λ) unknown and all Xi independent has the following likelihood function
Solving the likelihood equation yields the following maximum likelihood estimates
Generating random variates from an inverse-Gaussian distribution
The following algorithm may be used.
Generate a random variate from a normal distribution with a mean of 0 and 1 standard deviation
Square the value
and use this relation
Generate another random variate, this time sampled from a uniform distribution between 0 and 1
If
then return
else return
Sample code in Java:
And to plot Wald distribution in Python using matplotlib and NumPy:
Related distributions
The convolution of an inverse Gaussian distribution (a Wald distribution) and an exponential (an ex-Wald distribution) is used as a model for response times in psychology, with visual search as one example.
History
This distribution appears to have been first derived by Schrödinger in 1915 as the time to first passage of a Brownian motion. The name inverse Gaussian was proposed by Tweedie in 1945. Wald re-derived this distribution in 1947 as the limiting form of a sample in a sequential probability ratio test. Tweedie investigated this distribution in 1957 and established some of its statistical properties.
Numeric computation and software
Despite the simple formula for the probability density function, numerical probability calculations for the inverse Gaussian distribution nevertheless require special care to achieve full machine accuracy in floating point arithmetic for all parameter values. Functions for the inverse Gaussian distribution are provided for the R programming language by the statmod package, available from the Comprehensive R Archive Network (CRAN).