9.4. The Monty Hall Problem#

This problem has flummoxed many people over the years, mathematicians included. Let’s see if we can work it out by simulation.

The setting is derived from a television game show called “Let’s Make a Deal”. Monty Hall hosted this show in the 1960’s, and it has since led to a number of spin-offs. An exciting part of the show was that while the contestants had the chance to win great prizes, they might instead end up with “zonks” that were less desirable. This is the basis for what is now known as the Monty Hall problem.

The setting is a game show in which the contestant is faced with three closed doors. Behind one of the doors is a fancy car, and behind each of the other two there is a goat. The contestant doesn’t know where the car is, and has to attempt to find it under the following rules.

  • The contestant makes an initial choice, but that door isn’t opened.

  • At least one of the other two doors must have a goat behind it. Monty opens one of these doors to reveal a goat, displayed in all its glory in Wikipedia:

Monty Hall goat

  • There are two doors left, one of which was the contestant’s original choice. One of the doors has the car behind it, and the other one has a goat. The contestant now gets to choose which of the two doors to open.

The contestant has a decision to make. Which door should she choose to open, if she wants the car? Should she stick with her initial choice, or switch to the other door? That is the Monty Hall problem.

9.4.1. The Solution#

In any problem involving chances, the assumptions about randomness are important. It’s reasonable to assume that there is a 1/3 chance that the contestant’s initial choice is the door that has the car behind it.

The solution to the problem is quite straightforward under this assumption, though the straightforward solution doesn’t convince everyone. Here it is anyway.

  • The chance that the car is behind the originally chosen door is 1/3.

  • The car is behind either the originally chosen door or the door that remains. It can’t be anywhere else.

  • Therefore, the chance that the car is behind the door that remains is 2/3.

  • Therefore, the contestant should switch.

That’s it. End of story.

Not convinced? Then let’s simulate the game and see how the results turn out.

9.4.2. Simulation#

The simulation will be more complex that those we have done so far. Let’s break it down.

Step 1: What to Simulate

For each play we will simulate what’s behind all three doors:

  • the one the contestant first picks

  • the one that Monty opens

  • the remaining door

So we will be keeping track of three quantitites, not just one.

Step 2: Simulating One Play

As is often the case in simulating a game, the bulk of the work consists of simulating one play of the game. This involves several pieces.

The goats: We start by setting up an array goats that contains unimaginative names for the two goats.

goats = make_array('first goat', 'second goat')

To help Monty conduct the game, we are going to have to identify which goat is selected and which one is revealed behind the open door. The function other_goat takes one goat and returns the other.

def other_goat(x):
    if x == 'first goat':
        return 'second goat'
    elif x == 'second goat':
        return 'first goat'
other_goat('first goat'), other_goat('second goat'), other_goat('watermelon')
('second goat', 'first goat', None)

The string watermelon is not the name of one of the goats, so when watermelon is the input then other_goat does nothing.

The options: The array hidden_behind_doors contains the three things that are behind the doors.

hidden_behind_doors = np.append(goats, 'car')
hidden_behind_doors
array(['first goat', 'second goat', 'car'], dtype='<U11')

We are now ready to simulate one play. To do this, we will define a function monty_hall_game that takes no arguments. When the function is called, it plays Monty’s game once and returns a list consisting of:

  • the contestant’s guess

  • what Monty reveals when he opens a door

  • what remains behind the other door

The game starts with the contestant choosing one door at random. In doing so, the contestant makes a random choice from among the first goat, the second goat, and the car.

If the contestant happens to pick one of the goats, then the other goat is revealed and the car is behind the remaining door.

If the contestant happens to pick the car, then Monty reveals one of the goats and the other goat is behind the remaining door.

def monty_hall_game():
    """Return 
    [contestant's guess, what Monty reveals, what remains behind the other door]"""
    
    contestant_guess = np.random.choice(hidden_behind_doors)
    
    if contestant_guess == 'first goat':
        return [contestant_guess, 'second goat', 'car']
    
    if contestant_guess == 'second goat':
        return [contestant_guess, 'first goat', 'car']
    
    if contestant_guess == 'car':
        revealed = np.random.choice(goats)
        return [contestant_guess, revealed, other_goat(revealed)]

Let’s play! Run the cell several times and see how the results change.

monty_hall_game()
['car', 'first goat', 'second goat']

Step 3: Number of Repetitions

To gauge the frequency with which the different results occur, we have to play the game many times and collect the results. Let’s run 10,000 repetitions.

Step 4: Simulating Multiple Repetitions

It’s time to run the whole simulation. But unlike our previous simulations in which each simulation produced a single value, in this example we simulate a list of three values each time.

We will treat this simulated list as a row of a table. So instead of starting with an empty array and augmenting it with each new simulated value, we will start with an empty table and augment the table with each new simulated row. Each row will contain the complete result of one play.

One way to grow a table by adding a new row is to use the append method. If my_table is a table and new_row is a list containing the entries in a new row, then my_table.append(new_row) adds the new row to the bottom of my_table.

Note that append does not create a new table. It changes my_table to have one more row than it did before.

We will start with a collection table games that has three empty columns. We can do this by just specifying a list of the column labels in the same order in which monty_hall_game returns the result of one game.

Now we can add 10,000 rows to games. Each row will represent the result of one play of Monty’s game.

# empty collection table
games = Table(['Guess', 'Revealed', 'Remaining'])

# Play the game 10000 times and 
# record the results in the table games

for i in np.arange(10000):
    games.append(monty_hall_game())

The simulation is done. Notice how short the code is. The majority of the work was done in simulating the outcome of one game.

games.show(3)
Guess Revealed Remaining
first goat second goat car
first goat second goat car
car first goat second goat

... (9997 rows omitted)

9.4.3. Visualization#

To see whether the contestant should stick with her original choice or switch, let’s see how frequently the car is behind each of her two options.

It is no surprise that the three doors appear about equally often as the contestant’s original guess.

original_choice = games.group('Guess')
original_choice
Guess count
car 3319
first goat 3311
second goat 3370

Once Monty has eliminated a goat, how often is the car behind the remaining door?

remaining_door = games.group('Remaining')
remaining_door
Remaining count
car 6681
first goat 1676
second goat 1643

As our earlier solution said, the car is behind the remaining door two-thirds of the time, to a pretty good approximation. The contestant is twice as likely to get the car if she switches than if she sticks with her original choice.

To see this graphically, we can join the two tables above and draw overlaid bar charts.

joined = original_choice.join('Guess', remaining_door, 'Remaining')
combined = joined.relabeled(0, 'Item').relabeled(1, 'Original Door').relabeled(2, 'Remaining Door')
combined
Item Original Door Remaining Door
car 3319 6681
first goat 3311 1676
second goat 3370 1643
combined.barh(0)
../../../_images/ca5e11033c222ffa80c198976f639a98eb8b287897b94ffb605cf0f015455fc1.png

Notice how the three blue bars are almost equal – the original choice is equally likely to be any of the three available items. But the gold bar corresponding to Car is twice as long as the blue.

The simulation confirms that the contestant is twice as likely to win if she switches.