Figure 7.3 shows the pdf for four different sets of parameters.
Figure 7.3: The pdfs for four gamma-distributed random variables with
different parameter values.
The family of gamma distributions provides a flexible class of pdfs which may
describe the distribution of a non-negative
variable even when there is no strong
probability-model-based justification.
Note that when the gamma distribution reduces to the exponential
distribution. However, unlike the exponential distribution
we cannot evaluate the cdf in closed form for a general (non-integer)
value of .
The statistical package R has built-in functions for
evaluating the pdf, cdf and inverse cdf (for obtaining quantiles)
for many common distributions including the gamma
distribution:
> dgamma(4,shape=6,rate=1) # pdf of Gam(6,1) evaluated at x=4, i.e. f(4)
[1] 0.1562935
> dgamma(4,6,1) # pdf of Gam(6,1) evaluated at x=4, i.e. f(4)
[1] 0.1562935
> pgamma(2,0.5,1) # cdf of Gam(0.5,1) evaluated at x=2, i.e. P(X < 2)
[1] 0.9544997
> qgamma(0.5,3,1) # the median of the Gamma(3,1) distribution
[1] 2.67406
The th moment of a gamma random variable is
where the penultimate line follows from Lemma 7.9.
An alternative to remembering or rederiving Lemma 7.9
is to use the unit integrability property of the density (this trick
can be useful for densities other than the gamma).
Both approaches result in the same formula for , which lets us derive