Back

Solution: 2022 Winter Final - 16

Author: Michiel Smid

Question

Let $D_1,D_2,D_3$ be the result of rolling a normal $6$-sided die three times. Define the events
  • $A = \max\{D_1,D_2,D_3\}=4$
  • $B = D_1+D_2+D_3$ is an even number
Which of the following is true?
(a)
All of the above
(b)
$\Pr(A\mid B)$ is undefined
(c)
$A$ and $B$ are not independent
(d)
$A$ and $B$ are independent
(e)
None of the above

Solution

To calculate that the two events are independent, we have to show that $Pr(A \cap B) = Pr(A) \cdot Pr(B)$.

The probability that the max of 3 dice rolls is 4 is the following:

  • We can get a roll, where we get 3 4's: $\binom{3}{3} \cdot \frac{1}{6} \cdot \frac{1}{6} \cdot \frac{1}{6} = \frac{1}{216}$
  • We can get a roll, where we get 2 4's and 1 number that is less than 4: $\binom{3}{1} \cdot \frac{1}{6} \cdot \frac{1}{6} \cdot \frac{3}{6} = \frac{9}{216}$
  • We can get a roll where we get 1 four and 2 numbers that are less than 4: $\binom{3}{1} \cdot \frac{1}{6} \cdot \frac{3}{6} \cdot \frac{3}{6} = \frac{27}{216}$
  • If we sum all of these entries, we get $\frac{37}{216}$.

Now the probability that the 3 dice rolls are an even number:

  • For you to get an even number from 3 dice rolls, there are only two possible ways of getting this:
    • You either roll 3 even numbers: $\frac{1}{8}$
    • You either roll 2 odd numbers and 1 even number: $\frac{3}{8}$
  • This means in total, the probability the sum of the 3 dice rolls is an even number is $\frac{3}{8} + \frac{1}{8} = \frac{1}{2}$

Now the probability that the 3 dice rolls are an even number and the maximum of the 3 dice rolls is a 4:

  • This limits the possible sums of the 3 dices to $12, 10, 8, 6$.
    • $Pr(A \cap B = 6) = Pr(4 + 1 + 1) = \binom{3}{1} \cdot (\frac{1}{6})^3 = \frac{3}{216}$
    • $Pr(A \cap B = 8) = Pr(4 + 2 + 2) + Pr(4 + 3 + 1) = \frac{6}{216}$
    • $Pr(A \cap B = 10) = Pr(4 + 4 + 2) + Pr(4 + 3 + 3) = \frac{6}{216}$
    • $Pr(A \cap B = 12) = Pr(4 + 4 + 4) = \frac{1}{216}$
  • This means the total probability for the $A \cap B$ is: $\frac{16}{216}$

Now, we can try and use the formula for independent invents to see if the events are independent or not:

  • $Pr(A \cap B) = Pr(A) \cdot Pr(B)$
  • $\frac{16}{216} = \frac{37}{216} \cdot \frac{1}{2}$
  • $\frac{16}{216} \neq \frac{37}{432}$

Since $LHS \neq RHS$, the two events are not independent.