Monty Hall Problem Solution by Excel Simulation - Tutorial

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии • 15

  • @mohammadsufyan8292
    @mohammadsufyan8292 6 лет назад

    Thank you sir, i was searching how to get these statistics in large number. it helps me explaining the logic to anyone. it is the easiest and simplest way.
    Thanks a lot.

    • @c23charles
      @c23charles  4 года назад

      My pleasure, glad it helped.

  • @6li7ch
    @6li7ch 5 лет назад

    This is awesome, very easy to follow. Even though I know the right answer I've always had an intuitive pull to treat the second choice as 50/50. This way helped me beat my brain and check my priors. Thank you!

    • @c23charles
      @c23charles  4 года назад

      No doubt. We did this in physics class years ago and I was so sure it was random...

  • @alystair
    @alystair 3 года назад +1

    It would have been excellent if you coded it to allow for additional doors to see if/how it affects results :)

    • @c23charles
      @c23charles  3 года назад

      Now that is an interesting idea.

  • @davemason2604
    @davemason2604 4 года назад +1

    Tbh I would always stay. What if you switched and you lost - how upset would you be?

    • @max5250
      @max5250 3 года назад +1

      If loosing upsets you, you better switch.
      Switching doesn't guaranty winning, but gives you double the odds of winning.

    • @alystair
      @alystair 3 года назад +2

      about 1/3rd as angry as if I'd stayed

  • @Rozmanowski
    @Rozmanowski 6 лет назад +1

    Thanks!

  • @pogotard
    @pogotard 5 лет назад

    The “shortcut” you mention, to copy your formulas from the top to row 10,000…
    1. Select the formulas to be copied (first row)
    2. Copy the formulas, CTRL+C
    3. GOTO with CTRL+G (or Function key F5)
    4. Key in A10000 (You will automatically be in the correct menu field…)
    4. Hold SHIFT and press ENTER
    5. Press ENTER again to paste.
    6. CTRL HOME to return to the top of the sheet
    With a little practice you can do this in 10 seconds. Try it!

  • @alexsingyuchu1955
    @alexsingyuchu1955 Год назад

    可笑可笑。 Randomly generate a number among (1, 2, 3) and compare the probability of that random number equals to 1, and probability of not equals to 1. 魔鬼在細節,devil is in the details - carefully look at the formulas in the EXCEL this guy is using.
    Makes me laugh out loud LOL.
    In the EXCEL, the formula for that Switch cell in column E is
    = IF (Cn=1, 0, 1)
    n can be from row 8 to say row 102000, whatever;
    The formula for the Stay cell, column G is
    = IF(Cn=1, 1, 0)
    but the probability of Cn=1 is 1/3 = 33%
    and the probability of Cn=1 is false (that is Cn=2 or Cn=3), is 1-1/3 = 2/3 = 67%
    Why? because it is embedded inside the equation of the RNG cell in Column B:
    =RANDOMBETWEEN(1,3) that is among 1,2,3
    So the probability of Door 1 cell in a row, equals to 1, is the probability of the RNG cell equals to 1, always 1/3.
    Formula of the Door 1 cell in Column C, at row n
    =IF(Bn=1,1,0). => and the orginal source cell Bn is randomized, among (1,2,3). Of course probability that Door 1 cell is 1, will be 1/3, and 2/3 that it is not a 1.