Two people Monty Hall paradox

monty-hallparadoxesprobabilitypuzzle

We're on a game show, and we have to select between three doors, one of which has a Lamborghini behind it while the others have goats. After we've decided, the host opens one of the other two doors, which contains a goat. Should we move to the other unchosen door or stick with our original choice?

This is the famous Monty Hall paradox problem, where we should move to the other unchosen door. The logic is straightforward: the likelihood that we made the incorrect decision at first is $\frac{2}{3}$, which is also the probability that the unchosen door contains the automobile, thus we should make the swap.

Take a look at a different scenario. Assume you and a buddy are at the show together. You two choose the door independently, unaware of the other's decision. After making your selection, you see that your companion chose a different door from yours. The third door, the unchosen one, is now open, and under it is a goat. Should you make the change in this situation?

If we follow the same reasoning as previously, you should make the switch since the likelihood of making the erroneous option initially is $\frac{2}{3}$. However, by symmery, your companion should likewise make the same changeover this time. Then you and your buddy effectively switched the positions, which is paradoxical. What's the problem?

My Attempt:
I was thinking about this issue. And this is my explanation, and I wonder if this is correct. The primary difference between this example and the first is that the additional knowledge of opening the unchosen door impacts the original probability space in which I made the decision. In the original setup, no matter which door I selected, there was always an unchosen door under which the goat might be found. So the new knowledge has no effect on the likelihood that I made the erroneous decision in the first place. In the new example of two persons, however, the additional knowledge had an effect on the probability. If you and your friend have both picked the door with goats, it is impossible to open the third unchosen door with goats. As a result, the additional knowledge actually restricted the probability space to a smaller subspace, where the likelihood of choosing the erroneous decision becomes $\frac{1}{2}$. As a result, it makes no difference whether we make the transition in this scenario. Is this reasoning correct?

Best Answer

Your reasoning is correct. We can be more rigorous if we want to use Bayes' theorem. Let $D_1$ be the event that the car is behind door 1 (the door you chose). Let $G$ be the event that Monty is able to reveal a goat. Then \begin{align*} P(D_1|G) &= \frac{P(G|D_1)P(D_1)}{P(G|D_1)P(D_1)+P(G|D_1^c)P(D_1^c)}\\ &= \frac{(1)(1/3)}{(1)(1/3)+(1/2)(2/3)}\\ &= \frac{1}{2}. \end{align*} Here we have $P(G|D_1^c) = 1/2$ because there is a chance that Monty cannot reveal the other goat if it is behind your friend's door. (In the regular Monty Hall problem, this probability is $1$ since Monty can always reveal a goat.)

Related Question