vote up 6 vote down star
9

Through trying to explain the Monty Hall problem to a friend during class yesterday, we ended up coding it in Python to prove that if you always swap, you will win 2/3 times. We came up with this:

import random as r

#iterations = int(raw_input("How many iterations? >> "))
iterations = 100000

doors = ["goat", "goat", "car"]
wins = 0.0
looses = 0.0

for i in range(iterations):
	n = r.randrange(0,3)

	choice = doors[n]
	if n == 0:
		#print "You chose door 1."
		#print "Monty opens door 2. There is a goat behind this door."
		#print "You swapped to door 3."
		wins += 1
		#print "You won a " + doors[2] + "\n"
	elif n == 1:
		#print "You chose door 2."
		#print "Monty opens door 1. There is a goat behind this door."
		#print "You swapped to door 3."
		wins += 1
		#print "You won a " + doors[2] + "\n"
	elif n == 2:
		#print "You chose door 3."
		#print "Monty opens door 2. There is a goat behind this door."
		#print "You swapped to door 1."
		looses += 1
		#print "You won a " + doors[0] + "\n"
	else:
		print "You screwed up"

percentage = (wins/iterations) * 100
print "Wins: " + str(wins)
print "Looses: " + str(looses)
print "You won " + str(percentage) + "% of the time"

My friend thought this was a good way of going about it (and is a good simulation for it), but I have my doubts and concerns. Is it actually random enough?

The problem I have with it is that the all choices are kind of hard coded in.

Is this a good or bad 'simulation' for the Monty Hall problem? How come?

Can you come up with a better version?

flag

what are you trying to achieve? – Mitch Wheat Aug 8 at 3:18
Mitch: An accurate way to prove that you have a 2/3 chance of winning, provided you swap doors – joshhunt Aug 8 at 4:05
Prove it mathematically. Empirical data can never be used for proof, it can be used as evidence or support. – gmatt Oct 7 at 5:15

5 Answers

vote up 20 vote down check

Your solution is fine, but if you want a stricter simulation of the problem as posed (and somewhat higher-quality Python;-), try:

import random

iterations = 100000

doors = ["goat"] * 2 + ["car"]
change_wins = 0
change_loses = 0

for i in xrange(iterations):
    random.shuffle(doors)
    # you pick door n:
    n = random.randrange(3)
    # monty picks door k, k!=n and doors[k]!="car"
    sequence = range(3)
    random.shuffle(sequence)
    for k in sequence:
        if k == n or doors[k] == "car":
            continue
    # now if you change, you lose iff doors[n]=="car"
    if doors[n] == "car":
        change_loses += 1
    else:
        change_wins += 1

print "Changing has %s wins and %s losses" % (change_wins, change_loses)
perc = (100.0 * change_wins) / (change_wins + change_loses)
print "IOW, by changing you win %.1f%% of the time" % perc

a typical output is:

Changing has 66721 wins and 33279 losses
IOW, by changing you win 66.7% of the time
link|flag
1  
I am not sure I understand why you have the for k in sequence part? You don't even select a k, and it doesn't matter which door monty picks... all that matters is "n", right? – Tom Aug 8 at 3:50
5  
@Tom, I'm simply trying to simulate the classical Monty Hall Problem statement very faithfully -- Monty picks a door (different from your original pick and not the one w/the car) and you either change or you don't. Yep, Monty's move within the given constraints is irrelevant (as shown by the fact that k doesn't appear in the tail of the loop;-), so that whole block might be removed, EXCEPT that the whole point of the executable pseudocode it presumably to help convince skeptics, so, the closer we stick to the letter of the problem, the better!-) – Alex Martelli Aug 8 at 3:54
@Alex: ok, just checking :-). nice answer, +1. – Tom Aug 8 at 4:01
Wow. Fantastic response. Thanks! – joshhunt Aug 8 at 4:08
2  
@Tom, good try, but the rage against Marylin vos Savant when SHE gave the right answer -- including math PhDs railing against her -- proves empirically but irrefutably that "intuitive" is NOT a correct word to describe the interaction between probabilities and the human brain!-) – Alex Martelli Aug 9 at 17:39
show 4 more comments
vote up 1 vote down

I like something like this.


#!/usr/bin/python                                                                                                            
import random
CAR   = 1
GOAT  = 0

def one_trial( doors, switch=False ):
    """One trial of the Monty Hall contest."""

    random.shuffle( doors )
    first_choice = doors.pop( )
    if switch==False:
        return first_choice
    elif doors.__contains__(CAR):
        return CAR
    else:
        return GOAT


def n_trials( switch=False, n=10 ):
    """Play the game N times and return some stats."""
    wins = 0
    for n in xrange(n):
        doors = [CAR, GOAT, GOAT]
        wins += one_trial( doors, switch=switch )

    print "won:", wins, "lost:", (n-wins), "avg:", (float(wins)/float(n))


if __name__=="__main__":
    import sys
    n_trials( switch=eval(sys.argv[1]), n=int(sys.argv[2]) )

$ ./montyhall.py True 10000
won: 6744 lost: 3255 avg: 0.674467446745
link|flag
vote up 1 vote down

You mentioned that all the choices are hardcoded in. But if you look closer, you'll notice that what you think are 'choices' are actually not choices at all. Monty's decision is without loss of generality since he always chooses the door with the goat behind it. Your swapping is always determined by what Monty chooses, and since Monty's "choice" was actually not a choice, neither is yours. Your simulation gives the correct results..

link|flag
vote up -2 vote down

The whole point of the Monty Hall problem is to show how counter-intuitive probability is. There are several simple (light-goes-on) descriptions of how and why.

(BTW, You should always change your originally picked door...)

link|flag
would the downvoter please leave a comment. Thanks. – Mitch Wheat Aug 9 at 1:39
I am not the original downvoter, but I will tell you why I am downvoting. First, this does not answer the question and was better off as a comment. Second, I think you oversimplified what the problem is about. I think if you now understand the problem, you can give a pretty good reason as to why it IS intuitive, but we often overlook it. The reason you are better of switching is this: NEW INFORMATION. Why does this new info help? Because originally, you had a bad chance (1/3) of picking the winning door. So in some sense, you had a "good chance" (2/3) of picking the loser.......... – Tom Aug 9 at 15:59
(continued): So... SINCE MONTY is omniscient and picks a goat for you, AND you "most likely" picked a goat in the first place, switching is almost like starting the game over with 2 less goats. If there were 100 doors with 99 goats, you would see that you REALLY had a small chance of picking the loser. If monty then eliminated 98 doors, wouldn't you obviously switch because you wouldn't believe you picked the winner initially? – Tom Aug 9 at 16:00
(Btw, even if monty eliminates 1 door instead of 98, it's still better to switch. But people see it way more clearly when you maintain that P(win on a switch | you initially pick a goat) = 1). – Tom Aug 9 at 16:01
vote up -2 vote down

Monty never opens the door with the car - that's the whole point of the show (he isn't your friend an has knowledge of what is behind each door)

link|flag
1  
Frickin' Monty! What a jerk. – zombat Aug 8 at 3:21
7  
No--he never opens the door with the car! – Loren Pechtel Aug 8 at 3:25
Sorry it's normally state the other way around - the important point (that is lost on most people using this in interviews) is that Monty isn't picking at ranom – Martin Beckett Aug 8 at 18:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.