[Math] Statistics I – Bayes’s Theorem

probability

A desk has three drawers. The first contains two gold coins, the second has two silver coins and the third has one gold and one silver coin. A drawer is selected at random and a coin is drawn at random from the drawer. Suppose that the coin selected was silver. Use Bayes's Theorem to find the probability that the other coin in that drawer is gold.

Best Answer

You select a drawer and select a coin from that drawer.

Let $A$ denote the event that the coin that you select is silver.

Let $B$ denote the event that the other coin in the drawer is gold.

You are equally likely to pick any coin, so

$$P(A) = \frac{3\text{ silver coins}}{6 \text{ coins}} = \frac 12$$

There are 6 different ways you could have selected a coin. Only one of them results in you selecting a silver coin AND the other coin in the drawer being gold, so $$P(A \cap B) = \frac{1\text{ desired outcome}}{6 \text{ total outcomes}} = \frac 16$$

By the definition of conditional probability, $$P(B \mid A) = \frac{P(B \cap A)}{P(A)} = \frac{1/6}{1/2} = \frac 13$$


As I mentioned in my comment, Bayes's Theorem is useful if you want to know $P(B\mid A)$ but you only know $P(A\mid B)$. Here, we don't know $P(A \mid B)$ either, so Bayes's Theorem doesn't really help.

Related Question