Inverse Gaussian distribution
Family of continuous probability distributions

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 .
Its probability density function is given by
for , where
is the mean and
is a shape parameter.
Either
or
(or more generally any combination of the form
for any real
) can serve as a scale parameter, so a proper (i.e., unscaled) shape parameter would be any non-zero power of
: Tweedie proposed to use the
and
parametrizations in addition to the standard
parametrization (“Each of these forms is convenient or suggestive for some purpose.”), and later on uses exclusively the
parametrization.
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. The relationship between the Gaussian and inverse Gaussian distributions is thus the same as the relationship between the binomial (number of successes for a fixed number of Bernoulli trials) and negative binomial (number of Bernoulli trials for a fixed number of successes) distributions.
The y-axis reflections of the cumulant generating functions of the Gaussian and inverse Gaussian distributions are inverse of each other (i.e., the graphs of the two cumulant generating functions are reflections of each other across the line ), a property that is also shared between the binomial and negative binomial distributions (after dividing their cumulant generating functions by their respective fixed parameter).
To indicate that a random variable is inverse Gaussian-distributed with mean
and shape parameter
we write
.
01Properties
Single parameter form
The probability density function (pdf) of the 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 ,
, and the
is the cdf of standard normal distribution. The variables
and
are related to each other by the identity
.
In the single parameter form, the MGF simplifies to
An inverse Gaussian distribution in double parameter form can be transformed into a single parameter form
by appropriate scaling
, where
.
The above paragraph can be re-written as: if , then
. This approach is better in the sense that it clearly shows dimensionless nature of the single parameter form (note that
). This property follows from a more general fact: if
and
, then
.
The standard form of inverse Gaussian distribution is
Summation
If has an
distribution for
and all
are independent, then
The special case shows that the inverse Gaussian distribution is infinitely divisible.
Note that
is constant for all . This is a necessary condition for the summation. Otherwise
would not be Inverse Gaussian distributed.
Scaling
For any it holds that
Exponential family
The inverse Gaussian distribution is a two-parameter exponential family with natural parameters and
, and natural statistics
and
.
For fixed, it is also a single-parameter natural exponential family distribution where the base distribution has density
Indeed, with ,
is a density over the reals. Evaluating the integral, we get
Substituting makes the above expression equal to
.

02Relationship with Brownian motion
Let the stochastic process be given by
where is a standard Brownian motion. That is,
is a Brownian motion with drift
.
Then the first passage time for a fixed level by
is distributed according to an inverse-Gaussian:
i.e
(cf. Schrödinger equation 19, Smoluchowski, equation 8, and Folks, equation 1).
| Derivation of the first passage time distribution |
|---|
|
Suppose that we have a Brownian motion And suppose that we wish to find the probability density function for the time when the process first hits some barrier where Define a point where Now we must determine the value of At Therefore, the full solution to the BVP is: Now that we have the full probability density function, we are ready to find the first passage time distribution where Assuming that |
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
(see also Bachelier). This is a Lévy distribution with parameters and
.
03Maximum likelihood
The model where
with all known,
unknown and all
independent has the following likelihood function:
Solving the likelihood equation yields the following maximum likelihood estimates
and
are independent and
04Sampling from an inverse-Gaussian distribution
The following algorithm may be used.
Generate a random variate from a normal distribution with mean
and standard deviation equal
Square the value
and use the relation
Generate another random variate, this time sampled from a uniform distribution between
and
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; }And to plot Wald distribution in Python using matplotlib and NumPy:
import matplotlib.pyplot as plt import numpy as np h = plt.hist(np.random.wald(3, 2, 100000), bins = 200, density = True) plt.show()
06History
This distribution appears to have been first derived in 1900 by Louis Bachelier as the time a stock reaches a certain price for the first time. In 1915 it was used independently by Erwin Schrödinger and Marian v. Smoluchowski as the time to first passage of a Brownian motion. In the field of reproduction modeling it is known as the Hadwiger function, after Hugo Hadwiger who described it in 1940. Abraham Wald re-derived this distribution in 1944 as the limiting form of a sample in a sequential probability ratio test. The name inverse Gaussian was proposed by Maurice Tweedie in 1945. Tweedie investigated this distribution in 1956 and 1957 and established some of its statistical properties. The distribution was extensively reviewed by Folks and Chhikara in 1978.
Rated inverse Gaussian distribution
Assuming that the time intervals between occurrences of a random phenomenon follow an inverse Gaussian distribution, the probability distribution for the number of occurrences of this event within a specified time window is referred to as rated inverse Gaussian. While, first and second moment of this distribution are calculated, the derivation of the moment generating function remains an open problem.
07Numeric 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 several packages including rmutil, SuppDists, STAR, invGauss, LaplacesDemon, and statmod.
Sources and credits
This article is adapted from the Wikipedia article “Inverse Gaussian distribution”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
- Inverse Gaussian Probability Densitiy Function.svg by Gerhard Thallinger, CC BY-SA 4.0
- Inverse gaussian as stopping time of random walk.png by Cosmia Nebula, CC BY-SA 4.0
- Wald Distribution matplotlib.jpg by Bluemix, CC BY-SA 3.0
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.