Inverse Gaussian Distribution

The inverse Gaussian distribution, also known as the Wald distribution, is a two-parameter family of continuous probability distributions. It is related to the normal distribution but is not the distribution of the reciprocal of a normal variable.

Definition

The inverse Gaussian distribution has a location parameter μ and a scale parameter λ. The probability density function (PDF) is given by:

f(x)=λ2πx3exp(λ(xμ)22μ2x)

The cumulative distribution function (CDF) is:

F(x)=Φ(λx(xμ1))+e2λμΦ(λx(xμ+1))

where Φ(x) is the standard normal CDF.

The inverse Gaussian distribution is defined for all positive real numbers (x > 0), with both its location parameter μ and scale parameter λ required to be strictly positive as well.

Applications

  • Survival analysis uses this distribution to model time-to-event data with positive skewness.

  • Financial modeling employs the distribution for analyzing asset prices and interest rates.

  • Reliability engineering uses it to model failure times in degradation processes.

  • Physics applications include modeling Brownian motion with drift.

Properties

Statistical Properties
PropertyValue
Meanμ
Modeμ(1+9μ24λ23μ2λ)
Varianceμ3λ
Skewness3μλ
Excess Kurtosis15μλ

Notable properties of the inverse Gaussian distribution include:

  • The distribution is unimodal and positively skewed.

  • The distribution exhibits infinite divisibility.

Relationships to Other Distributions

  • The inverse Gaussian distribution approaches a normal distribution as λ.

  • The distribution is a member of the exponential family.

  • It is related to the Lévy distribution when μ.

The InverseGaussianDistribution Class

The inverse Gaussian distribution is implemented by the InverseGaussianDistribution class. It has just one constructor with two arguments. The first argument is the shape parameter. The second argument is the scale parameter.

The following constructs an inverse Gaussian distribution of order 4.2 and scale parameter 1:

C#
var invGaussian = new InverseGaussianDistribution(4.2, 1.0);

The InverseGaussianDistribution class has two specific properties, LocationParameter and ScaleParameter, which return the location and scale parameters of the distribution.

References

For more information on the inverse Gaussian distribution, refer to the following sources:

  • Johnson, N. L., Kotz, S., & Balakrishnan, N. (1994). "Continuous Univariate Distributions, Volume 1", Chapter 15. Wiley Series in Probability and Statistics.

  • Forbes, C., Evans, M., Hastings, N., & Peacock, B. (2011). "Statistical Distributions", Chapter 25. Wiley Series in Probability and Statistics.

  • Chhikara, R. S., & Folks, J. L. (1989). The Inverse Gaussian Distribution: Theory, Methodology, and Applications. CRC Press.

See Also