this blog is girtby.net

Posted
13 June 2009

Categories
Nerd Factor X Provocation

Tags
c++ monty hall wager puzzle

4 Comments

Easiest $100 I'll Ever Make

Recently, before boarding a flight up to Hamilton Island for a $WORK junket conference, I purchased a puzzle book. On the flight, I shared the puzzles amongst colleagues, and fun was had. One particularly tricky puzzle confounded us all, although I recognised it as a variant of the Monty Hall problem. Alarm bells should be going off at this point for those who have debated the subject in the past…

Anyway, one colleague didn’t believe that the answer in the back of the book was correct, and he offered to bet that by running a computer simulation he could prove the book (and me) wrong. I’m not a betting person, but for some reason, possibly euphoria at the prospect of the upcoming partying seminars, I immediately accepted his bet, wagering $100.

What follows is my attempt to win that bet.

So that there is no argument, I’ll reproduce the exact wording of the problem as stated in the puzzle book:

90. Four different pieces of candy are placed in a bag. One is chocolate, one is caramel, and two are licorice. Without looking in the bag, I draw two pieces of candy from it, and place one of them, which is licorice, on a table.

What are the chances that the second piece of candy I have in my hand is the other piece of licorice candy?

My colleague said the answer is ⅓, simply because the candy in the hand can only be one of three other candies still unseen. Of course this is a classic Monty Hall conditional probability problem, and he is quite wrong.

The key insight to this puzzle is that when I (as the person stating the puzzle) am putting the piece of candy on the table I am selecting it. Just as Monty does when he picks the door with the goat. There’s no element of randomness.

So the correct way to assess the probability is to think about the possible combinations of candies in your hand. There are six: the chocolate and caramel, caramel and either licorice, chocolate and either licorice, and the two licorice. Now we know that one of these combinations, the chocolate and caramel, is not possible. There are five remaining possibilities, and one of these is the one we want. Hence the odds are ⅕.

Anyway the agreed method of settling the bet was to write a computer simulation, so I did just that. Here is the output of a sample run:

Out of 1000000 tries, two licorices were extracted 200432 times.
Estimated probability = 0.200432

We have a winner. Thanks JT, cash will be fine.

Here is the C++ code:

#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <tr1/array>

const long iterations = 1000000;

enum candy {
    chocolate,
    caramel,
    licorice
};

int main(int argc, char *argv[])
{
    ::srand(::time(NULL));

    // Number of times we've pulled out two licorice from the bag
    long two_licorice = 0;

    for(long i = 0; i < iterations;)
    {
        // put the candies in the bag
        std::tr1::array<candy, 4> bag = {{ chocolate, caramel, licorice, licorice }};

        // shuffle them
        std::random_shuffle(bag.begin(), bag.end());

        // pull out two
        std::tr1::array<candy, 2> hand = {{ bag[0], bag[1] }};

        // At least one of the candies we pick out must be a licorice otherwise it doesn't count.
        if (hand[0] != licorice && hand[1] != licorice)
            continue;

        // Count if we've got both licorice
        if (hand[0] == licorice && hand[1] == licorice)
            ++two_licorice;

        ++i;
    }

    std::cout << "Out of " << iterations
              << " tries, two licorices were extracted " << two_licorice << " times.\n"
              << "Estimated probability = "
              << static_cast<double>(two_licorice) / static_cast<double>(iterations)
              << std::endl;

    return 0;
}

4 Comments

Posted by
Alan Green
2009-06-14 11:35:03 -0500
#

Sorry to say this, but I think your interpretation of the puzzle is only something that someone already familiar with the Monty Hall problem could twist out the puzzle's words.

To make it work the way you coded, the puzzle would need to be interpreted as:

Four different pieces of candy are placed in a bag. One is chocolate, one is caramel, and two are licorice. Without looking in the bag, I draw two pieces of candy from it, then select a drawn piece that is licorice and place it on a table.

However, the puzzle wording you quoted does not imply selection, rather that the protagonist places a randomly selected piece on the table.

I think the puzzle authors were looking for a Monty Hall variation and messed up, resulting in a riddle rather than a puzzle.

By the way, I carefully did all the math, and I agree with JT, the real answer is indeed 1 in 3.

I hope JT pays you in 5 sentimo coins, unwrapped and unbagged, helpfully strewn around around your desk, over a period of a year. (Your agreement said nothing about HOW the money was to be paid, right? ;)


Posted by
alastair
2009-06-14 13:55:36 -0500
#

Alan, I agree the wording is not as precise as it could be, and I agree with your reword. But given that there is at least one licorice in the hand, how can the protagonist know which one it is, in order to put it on the table, without selecting it?

To put it another way, if I was randomly selecting a candy from my hand and it had a 100% chance of being licorice, the chance that the other candy in my hand is licorice as well would have to be 100% also (since I must have picked both out of the bag to begin with).

(So maybe we're both wrong :)


Posted by
Alan Green
2009-06-14 18:34:03 -0500
#

I reject your speculation that I may be wrong.

The protagonist doesn't need to know which candy is licorice in advance, as the question only deals with the subset of possible outcomes where he puts the licorice on the table. In other words, putting the licorice on the table is a given in the same way that drawing at least one licorice is a given.

The puzzle question says:

Without looking in the bag, I draw two pieces of candy from it, and place one of them, which is licorice, on a table.

I don't see how a straight-forward reading of this question would be that candies are drawn randomly (so drawing at least one licorice must be a given for the question to make sense), but the order the candies are placed on the table is is non-random (so doesn't need to be a given).

In hindsight, I see the sneaky phrase "in the bag" to qualify what is not being looked at. The puzzle authors have crafted a tricksy riddle, dependent upon a particular and peculiar parsing. John Howard would be intrigued and pleased that the puzzle's words have a meaning quite different from their face value. Alternatively, you might argue that the reader should know that different kinds of lollies each have a particular feel, but that is not necessarily true in my experience, and would be an unusual - and tricksy - assumption for a math puzzle.

At this point, I'm going to quote xkcd at myself (http://www.xkcd.com/386/) and apologise to you for the John Howard reference. Sorry.

PS: I calculate 77,456 5-sentimo coins.


Posted by
Chris
2009-08-04 16:20:01 -0500
#

I agree with Alan. The problem isn’t clear. In your computer simulation, you rule out all cases where you don't pick at least one candy, but, given the wording, you could have had:

if (hand[0] != licorice)
            continue;

i.e. rule out all cases where the one that you put on the table isn’t a licorice candy, and that would give you the 1/3 probability.