SED navigation bar go to SED home page go to Dataplot home page go to NIST home page SED Home Page SED Staff SED Projects SED Products and Publications Search SED Pages
Dataplot Vol 2 Vol 1

IGPDF

Name:
    IGPDF (LET)
Type:
    Library Function
Purpose:
    Compute the inverse Gaussian probability density function with shape parameters gamma and mu.
Description:
    The inverse Gaussian distribution has the following probability density function:

      f(x;gamma,mu) = (gamma/(2*PI*x**3)) *
 EXP[gamma*(x-mu)**2/(2*mu**2*x)]
 x >= 0; gamma, mu > 0

    with gamma and mu denoting the shape parameters.

    The inverse Gaussian distribution has mean mu and standard deviation mu gamma.

    The inverse Gaussian distribution can be generalized with location and scale parameters in the usual way.

Syntax:
    LET <y> = IGPDF(<x>,<gamma>,<mu>,<loc>,<scale>)
                            <SUBSET/EXCEPT/FOR qualification>
    where <x> is a variable or a parameter;
                <gamma> is number or parameter that specifies the first shape parameter;
                <mu> is number or parameter that specifies the second shape parameter;
                <loc> is number or parameter that specifies the location parameter;
                <scale> is number or parameter that specifies the scale parameter;
                <y> is a variable or a parameter (depending on what <x> is) where the computed inverse Gaussian pdf value is stored;
    and where the <SUBSET/EXCEPT/FOR qualification> is optional.

    Note that the location and scale parameters are optional.

Note that the location and scale parameters are optional. Examples:
    LET A = IGPDF(3,2,1)
    LET A = IGPDF(A1,2,1)
    LET X2 = IGPDF(X1,2,3)
    PLOT IGPDF(X,2,1.5) FOR X = 0.1 0.1 5
Note:
    Random numbers, probability plots, and Kolmogorov-Smirnov and chi-square goodness of fit tests can be generated with the commands:

      LET GAMMA = <value>
      LET MU = <value>
      LET Y = INVERSE GAUSSIAN RANDOM NUMBERS FOR I = 1 1 N
      INVERSE GAUSSIAN PROBABILITY PLOT Y
      INVERSE GAUSSIAN KOLMOGOROV-SMIRNOV GOODNESS OF FIT Y
      INVERSE GAUSSIAN CHI-SQUARE FIT Y

    The following commands can be used to generate estimates for the shape parameters of the inverse Gaussian distribution:

      LET GAMMA1 = <value>
      LET GAMMA2 = <valuee>
      LET MU1 = <value>
      LET MU2 = <value>
      INVERSE GAUSSIAN PPCC PLOT Y
      INVERSE GAUSSIAN KS PLOT Y

    The default values for GAMMA1 and GAMMA2 are 0.5 and 25. The default values for MU1 and MU2 are 0.5 and 25.

    Maximum likelihood estimates can be obtained by entering the command

      INVERSE GAUSSIAN MAXIMUM LIKELIHOOD Y

    The maximum likelihood estimates are

      muhat = xbar

      gammahat = n/(SUM[i=1 to n][(1/x(i) - (1/xbar)]

    with xbar and n denoting the sample mean and sample size, respectively.

Note:
    The inverse Gaussian distribution is symmetric and moderate tailed for small gamma. It is highly skewed and long tailed for large gamma. It approaches normality as gamma approaches zero.
Note:
    The case where mu = 1 is referred to as the Wald distribution. Enter HELP WALPDF for details.
Default:
    None
Synonyms:
    None
Related Commands:
    IGCDF = Compute the inverse Gaussian cumulative distribution function.
    IGPPF = Compute the inverse Gaussian percent point function.
    CHSPDF = Compute the chi-square probability density function.
    FPDF = Compute the F probability density function.
    NORPDF = Compute the normal probability density function.
    TPDF = Compute the t probability density function.
    WEIPDF = Compute the Weibull probability density function.
    WALPDF = Compute the Wald probability density function.
    FLPDF = Compute the fatigue life probability density function.
    RIGPDF = Compute the reciprocal inverse Gaussian probability density function.
Reference:
    "Continuous Univariate Distributions--Volume 1", Second Edition, Johnson, Kotz, and Balakrishnan, Wiley, 1994, chapter 15.

    "Statistical Distributions", Third Edition, Evans, Hastings, and Peacock, Wiley, 2000, pp. 114-116.

Applications:
    Distributional Modeling
Implementation Date:
    1990/5: Original implementation
    2003/12: Modified to treat mu as a shape parameter instead of a location parameter
Program:
     
    Y1LABEL Probability
    X1LABEL X
    LABEL CASE ASIS
    X1LABEL DISPLACEMENT 12
    Y1LABEL DISPLACEMENT 12
    MULTIPLOT SCALE FACTOR 2
    MULTIPLOT 2 2
    MULTIPLOT CORNER COORDINATES 0 0 100 100
    YLIMITS 0 1.5
    TITLE GAMMA = 2, MU = 1
    PLOT IGPDF(X,2,1) FOR X = 0.01  0.01  5
    TITLE GAMMA = 5, MU = 1
    PLOT IGPDF(X,5,1) FOR X = 0.01  0.01  5
    TITLE GAMMA = 2, MU = 2
    PLOT IGPDF(X,2,2) FOR X = 0.01  0.01  5
    TITLE GAMMA = 5, MU = 2
    PLOT IGPDF(X,5,2) FOR X = 0.01  0.01  5
    END OF MULTIPLOT
    JUSTIFICATION CENTER
    MOVE 50 97
    CASE ASIS
    TEXT Inverse Gaussian PDF
        
    plot generated by sample program

Date created: 7/7/2004
Last updated: 7/7/2004
Please email comments on this WWW page to alan.heckert@nist.gov.