home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / alt / folklore / science / 4485 < prev    next >
Encoding:
Text File  |  1992-12-24  |  5.0 KB  |  103 lines

  1. Newsgroups: alt.folklore.science
  2. Path: sparky!uunet!wupost!sdd.hp.com!ux1.cso.uiuc.edu!news.cso.uiuc.edu!warman
  3. From: warman@eagle.sangamon.edu (Stan Warman)
  4. Subject: Re: Monty Hall/Shell Game..
  5. X-Newsreader: TIN [version 1.1 PL6]
  6. References: <BzqJx8.3Fv@unx.sas.com>
  7. Message-ID: <Bzr1Av.DyF@news.cso.uiuc.edu>
  8. Sender: usenet@news.cso.uiuc.edu (Net Noise owner)
  9. Organization: Sangamon State University
  10. Date: Thu, 24 Dec 1992 05:44:53 GMT
  11. Lines: 90
  12.  
  13. Jerry M. Cox (sasjec@asimov.unx.sas.com) wrote:
  14. > Odds are that I could stand a review course in probability. But hear me 
  15. > out anyway :-) If the contestant selects one door of three and that was 
  16. > all there was to it then the odds of initially selecting the winning door 
  17. > are one out of three. I have no problem with that, but I don't think 
  18. > this describes the situation. If Monty is *always* going to reveal a 
  19. > goat behind one of the doors, that door is removed from consideration. 
  20. > The final choice then becomes a choice between one of two doors. If 
  21. > Monty *always* removes one of the doors from consideration, then the 
  22. > final choice (as well as the initial choice) is between a door with a 
  23. > car behind it, and a door with the "other" (the one Monty doesn't show) 
  24. > goat behind it. The odds of picking the car are 50/50 whether you switch 
  25. > or not because Monty is *always* going to take away one of the losing 
  26. > choices.
  27. > If he said "You can have the door you picked or the TWO doors that you 
  28. > didn't pick", and didn't reveal anything about the two doors, then I 
  29. > would agree that the best thing to do would be to switch. But, Monty 
  30. > changes the odds when he shows you one of the goats behind one of the 
  31. > two doors. He removes that door from consideration completely. Unless 
  32. > you would like to take the goat Monty just showed you, you are left with 
  33. > a one out of two choice. He equivalently says to you: "You can have the 
  34. > car or the goat that I didn't show you", or "You can have the door you 
  35. > initially chose or the door I didn't show you". That sounds like 50/50 
  36. > odds to me.
  37. > To sum up the initial choice is not a one of three choice between 
  38. > a car or goat #1 or goat #2. The initial (and final) choice is between a 
  39. > car and one of the 2 goats. The other goat will be removed as a choice 
  40. > by Monty. 
  41.  
  42. Cliff Heller writes:
  43. >Monty equivalently says:  "You can have the door you chose, or BOTH doors
  44. >that you did not chose" without opening anything.  Now would you switch?
  45. >It is the same problem.
  46.  
  47. Of all the explanations I have read, this one (IMHO) puts it in the most
  48. understandable way. It shows the importance of opening one of the losing
  49.  
  50. doors.
  51.  
  52. BTW, back in early '91, in Parade Magazine, Marilyn Vos Savant published
  53. this puzzle in her column. When she stated that the odds of winning by
  54. switching were 2 out of 3 she was swamped with letters(mine included I'm
  55. sorry to say :-) taking her to task. Many of these letters were from
  56. Mathematicians! When she defended her answer in a second column, I
  57. decided to write a computer program to test her assertion. For those
  58. who may be interested, the BASIC code follows:
  59.  
  60. ------------------------------------------------------------------------
  61. 0 'MAKEDEAL.BAS STAN WARMAN 02-17-91
  62. 1 KEY OFF:CLS:PRINT"You are on Let's Make A Deal and you choose
  63.  one of three doors trying to win a":PRINT"car (and avoid a goat).
  64.   The host opens a door revealing a goat and asks if you"
  65. 2 PRINT"wish to switch to the remaining door. Marilyn Vos Savant
  66.  of Parade Magazine":PRINT"says your chances are 2 out of 3 that
  67.   switching will win you the car.":PRINT"Do you believe her or
  68.    that the ratio is 1 out of 2? Answer the following"
  69. 3 PRINT"questions to test your belief in mathmatical logic."
  70. :PRINT:PRINT
  71. 5 INPUT"How many trials";TRIALS:INPUT"Always keep 1st choice(K)
  72.  or always switch(S)";CHOICE$:IF CHOICE$="K" OR CHOICE$="k" OR
  73.   CHOICE$="S" OR CHOICE$="s" THEN 10 ELSE CLS:PRINT"Invalid
  74.    response...Please try again":PRINT:GOTO 5
  75. 10 LOCATE 12,1:PRINT"Hits=";:RANDOMIZE TIMER:HITS=0:FOR I=
  76. 1 TO TRIALS:CHOICE1=INT(RND(1)2+1):PRIZE=INT(RND(1)3+1)
  77. 20 OPENDOOR=INT(RND(1)3+1):IF OPENDOOR=CHOICE1 OR OPENDOOR=PRIZE
  78.  THEN 20
  79. 25 IF CHOICE$="K" OR CHOICE$="k" THEN CHOICE2=CHOICE1:GOTO 90
  80. 30 IF CHOICE1=1 AND OPENDOOR=2 THEN CHOICE2=3
  81. 40 IF CHOICE1=1 AND OPENDOOR=3 THEN CHOICE2=2
  82. 50 IF CHOICE1=2 AND OPENDOOR=1 THEN CHOICE2=3
  83. 60 IF CHOICE1=2 AND OPENDOOR=3 THEN CHOICE2=1
  84. 70 IF CHOICE1=3 AND OPENDOOR=1 THEN CHOICE2=2
  85. 80 IF CHOICE1=3 AND OPENDOOR=2 THEN CHOICE2=1
  86. 90 IF CHOICE2=PRIZE THEN HITS=HITS+1:LOCATE 12,6:PRINT HITS;
  87. 100 NEXT
  88. 110 LOCATE 12,12:PRINT"Out of";TRIALS;"trials.":PRINT HITS/TRIALS*100
  89. ;"%  Hit Rate.":INPUT"Play again";ANS$:IF LEFT$(ANS$,1)="Y" OR
  90.  LEFT$(ANS$,1)="y" THEN 1 ELSE KEY ON:END
  91. ------------------------------------------------------------------------
  92.  
  93. Naturally, the more trials that are run, the closer to 67% you will
  94. come(or to 33% if you always keep your initial choice).
  95. This is truly a fascinating problem! N'est-ce Pas?
  96.  
  97.       Stan Warman: Microcomputer Specialist
  98.          Office Hours:   M-F  8:30-5:00
  99.          Phone Number:   (78)6-6549
  100.