Get inverse of gamma cumulative distribution
=GAMMA.INV(probability, alpha, beta)
| Parameter | Description |
|---|---|
probability |
The probability associated with the gamma distribution (must be between 0 and 1). |
alpha |
The shape parameter of the distribution. |
beta |
The scale parameter of the distribution. |
To find the time by which there is a 90% chance the 20th customer will have arrived:
=GAMMA.INV(0.9, 20, 0.1) // returns 2.590252861
GAMMA.INV is the inverse of GAMMA.DIST with cumulative = TRUE. For example, using the result from above, you can check the probability of the 20th cus
=GAMMA.DIST(2.590252861, 20, 0.1, TRUE) // returns 0.9
In general, you can use GAMMA.INV to find the value at the percentile of a gamma distribution. For example, to find the value at the 25th, 50th, and 7
=GAMMA.INV(0.25, 20, 0.1) // returns 1.683014746
=GAMMA.INV(0.50, 20, 0.1) // returns 1.966767242
=GAMMA.INV(0.75, 20, 0.1) // returns 2.280800681