[Math] Probabilities : A red die, a blue die, and a yellow die (all six-sided) are rolled.

combinationscombinatoricsprobability

A red die, a blue die, and a yellow die (all six-sided) are rolled. We are interested in the probability that the number appearing on the blue die is less than that appearing on the yellow die which is less than that appearing on the red die $P(B < Y < R)$.

I know one way to calculate this is:

E = event that no two dice land on the same number:

$$P(E) = \frac{6 \cdot 5 \cdot 4}{6 \cdot 6 \cdot 6} = \frac{5}{9}$$

F = event that B < Y < R and no two dice land on the same number

$$P(F) = P(E) \cdot P(B < Y < R|E) = \frac{5}{9} \cdot \frac{1}{6} = \frac{5}{54}$$

Is there another way to find the number of outcomes where $B < Y < R$ using the formula $N(E)/N(S)$, where $N(S) = 6 \cdot 6 \cdot 6 = 216$?

Best Answer

There are $\binom{6}{3}$ ways to obtain three different numbers when three dice are thrown. Given such as outcome, there is only one way to arrange these numbers such that $B < Y < R$. Hence, the probability that the number appearing on the blue die is less than the number appearing on the yellow die and the number appearing on the yellow die is less than the number appearing on the red die is $$\frac{\binom{6}{3}}{6^3} = \frac{20}{216} = \frac{5}{54}$$

Related Question