Inverse gamma distribution

7.1k Views Asked by At

Wikipedia (at the time I write this) has two mutually inconsistent entries (one after the other !, http://en.wikipedia.org/wiki/Inverse-gamma_distribution#Properties):

$$X \sim \mbox{Gamma}(k, \theta) \Leftrightarrow \dfrac{1}{X} \sim \mbox{Inv-Gamma}(k, \theta^{-1})$$

$$ X \sim \mbox{Gamma}(\alpha, \beta) \Leftrightarrow \dfrac{1}{X} \sim \mbox{Inv-Gamma}(\alpha, \beta)$$

My questions are:

  1. Do these two definitions reflect different conventions? Or one of them is plain wrong?
  2. Let's assume the mean of the inverse gamma mean is $\dfrac \beta{\alpha-1}$ (as in the Wikipedia page). Which one of the above definitions is consistent with this?
3

There are 3 best solutions below

3
On BEST ANSWER

Most distributions have alternative or competing definitions or 'parameterisations' -- so using black box names such as $InverseGamma(a,b)$ has no specific meaning unless combined with an explicit statement of the functional form being used. Several software packages make this mistake of assigning black-box names to distributions, which causes a lot of problems and much confusion when users expecting one functional form discover that the software package is using a different form ... and their answers are 'wrong'.

In this specific case, if $X \sim Gamma(a,b)$ with pdf $f(x)$:

$$f(x) = \frac{x^{a-1} e^{-\frac{x}{b}}}{\Gamma(a) b^a }$$

... then the pdf of $Y = 1/X$ is $InverseGamma(a,b)$ with pdf say $g(y)$:

$$g(y) = \frac{y^{-(a+1)} e^{-\frac{1}{b y}}}{\Gamma(a) b^a }$$

Given pdf $g(y)$, $E_g[Y] = \frac{1}{(a-1) b}$ (assuming $a>1$).

1
On

Your confusion arises from the fact that there are different parametrizations for the gamma and inverse gamma distribution. The gamma distribution can be parametrized by shape and scale ($(k,\theta)$ in the Wikipedia notation), or by shape and rate. The inverse gamma distribution's entry in Wikipedia is parametrized only by shape and scale. So both of the statements are correct.

You can check it for yourself by taking the gamma density under either parametrization, and doing the transform $Y = 1/X$.

0
On

I think the main confusion is that Wikipedia calls the Inverse Gamma scale parameter a rate parameter. It is scale as it must be in the units as the random variable.