GAMMA.DIST()/GAMMADIST()

Syntax. GAMMA.DIST(x,alpha,beta,cumulative)

Definition. This function returns the probabilities of a gamma-distributed random variable. Use this function to examine variables that have a skewed distribution. The gamma distribution is commonly used in queuing analyses.

Arguments

Note

If x, alpha, or beta isn’t a numeric expression, the GAMMA.DIST() function returns the #VALUE! error.

If x is less than 0, the function returns the #NUM! error.

If alpha or beta is less than or equal to 0, the GAMMA.DIST() function returns the #NUM! error.

The density function for the standard gamma distribution is:

image with no caption

If alpha = 1, GAMMA.DIST() returns the exponential distribution with the following:

Background. The gamma distribution is a continuous probability distribution of positive real numbers (see Figure 12-62). The gamma distribution is defined by the probability density with x greater than 0.

image with no caption
The gamma density function (25.4).

Figure 12-62. The gamma density function (25.4).

For other values, the gamma density function is continued with f(x)=0. The parameters are p and q (alpha and beta). To ensure standardization p,q has to be greater than 0. The prefactor bp/Γ(p) ensures that the standardization is correct. The expression Γ(p) is the gamma function.

The following shows the expected value and variance of the gamma distribution:

image with no caption

The gamma distribution is reproductive.

Note

The reproductivity of a probability distribution indicates that the sum of independent random variables is distributed based on the distribution type.

The normal distribution, the Poisson distribution, the gamma distribution, and the Cauchy distribution are examples of a reproductive distribution.

The sum of the stochastically independent random variables x and y, gamma-distributed with the parameters b and px or py, is gamma-distributed with the parameters b and px + py.

The gamma distribution creates a family for several theoretical distribution functions:

Alternatively, the parameters are as follows:

image with no caption

The density and moments are changed accordingly (for example, the expected value would be αβ). Because this parameterization is commonly used in the English-speaking world, it can often be found in technical literature. To avoid misunderstandings, it is recommended that you explicitly specify the moments—for example, the expected value ab and variance ab2—for a gamma distribution (see Figure 12-63).

The gamma distribution function (25.4).

Figure 12-63. The gamma distribution function (25.4).

The GAMMA.DIST() function is a mathematical distribution function with two parameters (alpha and beta) based on the gamma function. GAMMA.DIST() is the inverse function of GAMMA.INV.

Example. Use the following values to calculate GAMMA.DIST():

Figure 12-64 shows the calculation of GAMMA.DIST().

Calculating GAMMA.DIST()

Figure 12-64. Calculating GAMMA.DIST()

With the parameters shown in Figure 12-42, the GAMMA.DIST() function returns the following results:

See Also

CHISQ.DIST.RT(), EXPON.DIST(), GAMMA.INV()