Inverse Gaussian distribution
| Probability density function |
|
| Parameters | ![]() ![]() |
|---|---|
| Support | ![]() |
![]() |
|
| CDF | ![]() ![]() where |
| Mean | ![]() |
| Mode | ![]() |
| Variance | ![]() |
| Skewness | ![]() |
| Ex. kurtosis | ![]() |
| MGF | ![]() |
| CF | ![]() |
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,∞).
Its probability density function is given by
for x > 0, where
is the mean and
is the shape parameter.
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
Properties
Summation
If Xi has a 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.
Relationship with Brownian motion
The stochastic process Xt given by
(where Wt is a standard Brownian motion and
) is a Brownian motion with drift ν.
Then, the first passage time for a fixed level
by Xt is distributed according to an inverse-gaussian:
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
and
.
Maximum likelihood
The model where
with all wi known, (μ, λ) unknown and all Xiindependent has the following likelihood function
Solving the likelihood equation yields the following maximum likelihood estimates
and
are independent and
Generating random variates from an inverse-Gaussian distribution
The following algorithm may be used.[1]
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 uniformed distribution between 0 and 1
If
then return
else return
Sample code in Java:
public double inverseGaussian(double mu, double lambda) { Random rand = new Random(); double v = rand.nextGaussian(); // sample from a normal distribution with a mean of 0 and 1 standard deviation double y = v*v; double x = mu + (mu*mu*y)/(2*lambda) - (mu/(2*lambda)) * Math.sqrt(4*mu*lambda*y + mu*mu*y*y); double test = rand.nextDouble(); // sample from a uniform distribution between 0 and 1 if (test <= (mu)/(mu + x)) return x; else return (mu*mu)/x; }
Related distributions
- If
then 
- If
then 
- If
for
then 
- If
then 
The convolution of a Wald distribution and an exponential (the ex-Wald distribution) is used as a model for response times in psychology.[2]
History
This distribution appears to have been first derived by Schrödinger in 1915 as the time to first passage of a Brownian motion.[3] The name inverse Gaussian was proposed by Tweedie in 1945.[4] 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.
See also
- Generalized inverse Gaussian distribution
- Tweedie distributions—The inverse Gaussian distribution is a member of the family of Tweedie exponential dispersion models
Notes
- ^ Generating Random Variates Using Transformations with Multiple Roots by John R. Michael, William R. Schucany and Roy W. Haas, American Statistician, Vol. 30, No. 2 (May, 1976), pp. 88–90
- ^ Schwarz W (2001) The ex-Wald distribution as a descriptive model of response times. Behav Res Methods Instrum Comput 33(4):457-469
- ^ Schrodinger E (1915) Zur Theorie der Fall—und Steigversuche an Teilchenn mit Brownscher Bewegung. Physikalische Zeitschrift 16, 289-295
- ^ Folks JL & Chhikara RS (1978) The inverse Gaussian and its statistical application - a review. J Roy Stat Soc 40(3) 263-289
References
- The inverse gaussian distribution: theory, methodology, and applications by Raj Chhikara and Leroy Folks, 1989 ISBN 0-8247-7997-5
- System Reliability Theory by Marvin Rausand and Arnljot Høyland
- The Inverse Gaussian Distribution by Dr. V. Seshadri, Oxford Univ Press, 1993
External links
- Inverse Gaussian Distribution in Wolfram website.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

![\left[\frac{\lambda}{2 \pi x^3}\right]^{1/2} \exp{\frac{-\lambda (x-\mu)^2}{2 \mu^2 x}}](http://upload.wikimedia.org/math/2/c/6/2c6c7ef1a504f4998fe143af8151a018.png)


is the 
![\mu\left[\left(1+\frac{9 \mu^2}{4 \lambda^2}\right)^\frac{1}{2}-\frac{3 \mu}{2 \lambda}\right]](http://upload.wikimedia.org/math/d/5/0/d50e806b11641fa78d3ddc5f7cbc0c0b.png)



![e^{\left(\frac{\lambda}{\mu}\right)\left[1-\sqrt{1-\frac{2\mu^2t}{\lambda}}\right]}](http://upload.wikimedia.org/math/8/5/2/85271b04c5e31bcecd19c3687e9447da.png)
![e^{\left(\frac{\lambda}{\mu}\right)\left[1-\sqrt{1-\frac{2\mu^2\mathrm{i}t}{\lambda}}\right]}](http://upload.wikimedia.org/math/6/b/b/6bbfc39a08f359b23390648366ec800d.png)
![f(x;\mu,\lambda)
= \left[\frac{\lambda}{2 \pi x^3}\right]^{1/2} \exp{\frac{-\lambda (x-\mu)^2}{2 \mu^2 x}}](http://upload.wikimedia.org/math/1/4/b/14b32d96e7fcbbd2b08cab10865aa654.png)



















then 
then 
then 
then 
