In this post you will learn (or I hope you do) how probability is not intuitive, but it can make sense.
Introduction
Because of its counterintuitive nature, it became a well-known probability scenario based on the game show “Let’s Make a Deal,” which Monty Hall hosted.
It functioned as follows:
A player is presented with three doors, one of which hides a prize.
Initially, the player selects one of the doors without knowing what lies behind it.
After the player has made their selection, the host, who knows what is behind each door, opens one of the remaining two doors, always revealing a door that does not contain the prize.
The player is confronted with a quandary, they have the option of remaining with their original selection or switching to the other unopened door.
Why not 50/50?
At first glance, the probability of selecting the prize is 50% given the two remaining doors after the host opens one, so what the heck, right?
That is not the case; instead, let us map each scenario, where we have three doors (A, B, and C).
Choosen door
Prize door
Host opens
Switch the door
Stay with door
A
A
B/C
Lose
Win
B
A
C
Win
Lose
C
A
B
Win
Lose
A
B
C
Win
Lose
B
B
A/C
Lose
Win
C
B
A
Win
Lose
A
C
B
Win
Lose
B
C
A
Win
Lose
C
C
A/B
Lose
Win
Switching the door reveals 6 winning outcomes out of the 9 possibilities, whereas sticking with the original choice offers only 3 winning scenarios. This means that switching has a higher chance of success, with a 2/3 chance of success.
Still skeptical?
For those who are still skeptical, here we simulate 200,000 games in R, where I chose to stay with the first door in the first half and switch the door in the second half.
#Probability of winning, by switching the initial doorset.seed(1234);mean(replicate(100000,monty_hall(stay =FALSE)))
[1] 0.66718
As we can see, the simulation’s success probability is nearly equal to the previously calculated.
Considerations
Probability and conditional reasoning are central to the Monty Hall problem. Choosing door A initially gives it a 1/3 chance of containing the prize, while the other unopened door, B, now has a 2/3 chance.
Despite the fact that it seems counterintuitive, switching doors increases your chances of winning the prize. The puzzle is an enthralling example of how our intuition can lead us astray, emphasizing the importance of understanding probability in decision-making.