[Math] Picking certain number of balls without replacement and finding its probability distribution

probabilityprobability distributions

Suppose I am to choose three balls without replacement from a bag containing $5$ white and $4$ red balls. What will be the probability distribution of the red balls drawn ?.

According to my book, probability function will be
$$
{3\choose x}\left(\,{4 \over 9}\,\right)^{x}\left(\,{5 \over 9}\,\right)^{3 – x}
$$
What I didn't understand is why my book is taking probability of choosing red ball to be $4/9$ and the probability of choosing a white ball to be $5/9$. I think the above probabilities are of choosing the red and the white balls in the first trial. In other trials the probability of the above two events will change as we are drawing balls without replacement.

Best Answer

Simplest Approach

Without replacement, the simplest method is to compute how many ways there are to pick $k$ from the $4$ red balls and $3-k$ from the $5$ white balls. Then divide that by the total number of ways to pick $3$ from the $9$ balls in total: $$ \frac{\binom{4}{k}\binom{5}{3-k}}{\binom{9}{3}} $$


Pick by Pick Approach

Without replacement, there are $\binom{3}{k}$ orders in which to draw $k$ red balls and $3-k$ white balls. Suppose we draw all the red balls first, the probability of that draw would be $$ \underbrace{\overbrace{\frac{4}{9}\cdot\frac{3}{8}\cdots}}^{\text{drawing $k$ red balls}}_{k\text{ terms}} \quad\underbrace{\overbrace{\frac{5}{9-k}\cdot\frac{4}{8-k}\cdots}}^{\text{drawing $3-k$ white balls}}_{3-k\text{ terms}} =\frac{\frac{4!}{(4-k)!}\frac{5!}{(5-(3-k))!}}{\frac{9!}{(9-3)!}} =\frac{\binom{4}{k}k!\binom{5}{3-k}(3-k)!}{\binom{9}{3}3!} =\frac{\binom{4}{k}\binom{5}{3-k}}{\binom{9}{3}\binom{3}{k}} $$ But no matter which order we drew the balls, the probability would be the same, the numerators would just change order. Thus, we just multiply the probability of each order by the number of orders: $$ \frac{\binom{4}{k}\binom{5}{3-k}}{\binom{9}{3}\binom{3}{k}}\binom{3}{k} =\frac{\binom{4}{k}\binom{5}{3-k}}{\binom{9}{3}} $$


Values

$k=0:\dfrac{\binom{4}{0}\binom{5}{3}}{\binom{9}{3}}=\dfrac{10}{84}\doteq0.11904762$
$k=1:\dfrac{\binom{4}{1}\binom{5}{2}}{\binom{9}{3}}=\dfrac{40}{84}\doteq0.47619048$
$k=2:\dfrac{\binom{4}{2}\binom{5}{1}}{\binom{9}{3}}=\dfrac{30}{84}\doteq0.35714286$
$k=3:\dfrac{\binom{4}{3}\binom{5}{0}}{\binom{9}{3}}=\dfrac{4}{84}\doteq0.04761905$

Related Question