The GAMMA.INV function in Excel is a powerful statistical tool used for determining the inverse of the gamma cumulative distribution function. This function is crucial when dealing with statistical models that require the analysis of variability and distribution, making it invaluable in fields such as finance, data analysis, and engineering.
Syntax
GAMMA.INV(probability, alpha, beta)
- probability: The probability at which you want to evaluate the inverse gamma cumulative distribution.
- alpha: The shape parameter of the gamma distribution.
- beta: The scale parameter of the gamma distribution.
Example #1
GAMMA.INV(0.95, 2, 3)
This function returns the point at which 95% of the distribution is below. For this specific input, it might return approximately 8.57, indicating that 95% of outcomes will be below this value.
Example #2
GAMMA.INV(0.5, 5, 1)
In this case, the function calculates the value for which 50% of the distribution is below, resulting in approximately 6.25, demonstrating the midpoint of the distribution for the given parameters.
Example #3
GAMMA.INV(0.99, 3, 4)
Here, the function returns the value below which 99% of the gamma distribution lies. The output for these values could be around 17.48, representing an extreme case in the distribution.
Error handling
- NUM!: This error occurs when the input parameters do not yield a valid gamma distribution. Ensure that the probability is between 0 and 1, and both alpha and beta are greater than 0.
- VALUE!: This error indicates that one or more arguments are of the wrong type (text instead of numeric). Always input numeric values.