Assume that $X \sim Ga(\alpha_1, \beta_1)$ and $Y \sim Ga(\alpha_2, \beta_2)$. Define $Z= X/Y$. What 's the distribution of $Z$?

- 63,378
- 26
- 142
- 467

- 1,324
- 2
- 17
- 31
-
5See https://en.wikipedia.org/wiki/F-distribution#Related_distributions_and_properties. (The $\chi^2$ distributions referred to there are scaled Gamma distributions.) Obviously the scale parameters only scale $Z$ by predetermined amounts, so there's no trouble with them. – whuber Apr 15 '16 at 20:37
-
This reads like a routine textbook-style question. Is this work for some class? (whether assigned work or practice question or past exam of ...) – Glen_b Apr 16 '16 at 03:13
-
@Glen_b No, this is not for hw or exam etc. – user9292 Apr 18 '16 at 13:35
-
@Glen_b what if two gamma is not independent? Are their ratio still follow chi-square or F? – overwhelmed Oct 04 '18 at 14:12
-
Generally not. .. . . . – Glen_b Oct 05 '18 at 02:36
2 Answers
$\beta_1X \sim Gamma(\alpha_1, 1)$ and $\beta_2 Y \sim Gamma(\alpha_2, 1)$, then according to Wikipedia
$$\dfrac{\beta_1X}{\beta_2Y} \sim \text{Beta Prime distribution}(\alpha_1, \alpha_2). $$
In addition, short hand you write $\beta'(\alpha_1, \alpha_2)$. Now the Wiki page also describes the density of the general Beta-prime distribution $\beta'(\alpha_1, \alpha_2, p, q)$, as
$$ f(x) = \dfrac{p \left( \frac{x}{q}\right)^{\alpha_1 p-1} \left(1 + \left(\frac{x}{q} \right)^p \right)^{-\alpha_1 -\alpha_2} }{q B(\alpha_1, \alpha_2)}.$$
The Beta-prime distribution is the special case of the general Beta-prime distribution when $p = q = 1$. In addition the wiki page says for a constant $k$
$$k\beta'(\alpha_1, \alpha_2, p, q) = \beta'(\alpha_1, \alpha_2, p, kq). $$
Thus, $$\dfrac{X}{Y} \sim \beta'\left(\alpha_1, \alpha_2, 1, \frac{\beta_2}{\beta_1} \right).$$

- 14,131
- 3
- 36
- 80
Greenparker's reply says it all, but you can also note that $\Gamma$ distributions can be expressed as scaled $\chi^2$ distributions, and that the properly scaled ratio of two $\chi^2$ random variables follows an $F$ distribution.
Following the parametrization and scaling rule above, if $X\sim\Gamma_{(\alpha,\beta)}$, then $2\beta X\sim\chi^2_{2\alpha}$
This means that for your two Gamma-distributed variables $X$ and $Y$,
$$\frac{\alpha_2\beta_1 X}{\alpha_1\beta_2 Y}\sim F_{(2\alpha_1,2\alpha_2)}$$
where $F$ is the $F$ distribution. You could also say that X/Y follows a scaled $F$ distribution.

- 151
- 1
- 4