The GAMMADIST function in Excel is designed to return the value of the gamma distribution for a specified set of parameters. This statistical function is particularly useful for processes that can be modeled by the gamma distribution, such as queuing or reliability problems, making it a valuable tool for analysts and data scientists in their statistical calculations.
Syntax
GAMMADIST(x, alpha, beta, cumulative)
- x: The value at which you want to evaluate the function.
- alpha: The shape parameter of the gamma distribution, which must be greater than 0.
- beta: The scale parameter of the gamma distribution, which must be greater than 0.
- cumulative: A logical value that determines the form of the function. If TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
Example #1
GAMMADIST(5, 2, 1, TRUE)
This function calculates the cumulative probability of the gamma distribution for x = 5, with a shape parameter (alpha) of 2 and a scale parameter (beta) of 1. It would return approximately 0.857123, indicating the probability of observing a value less than or equal to 5.
Example #2
GAMMADIST(3, 2, 1, FALSE)
This function computes the probability density for x = 3, with alpha = 2 and beta = 1. The result would be around 0.176788, providing the likelihood of specifically observing the value of 3 in the distribution.
Example #3
GAMMADIST(10, 3, 2, TRUE)
Here, the function evaluates the cumulative probability for x = 10, with a shape parameter of 3 and a scale parameter of 2. The output would be approximately 0.551921, offering insight into the cumulative likelihood of observing a value up to 10.
Error handling
- NUM!: This error occurs if alpha or beta parameters are less than or equal to zero.
- VALUE!: This error appears when non-numeric values are entered in any of the parameters.
- N/A: This indicates that for the given inputs, the gamma distribution cannot be computed.”