icon

Crooked coin: Solution

Share this page
Coin

Two people have asked you out for a date and you've decided to decide who to go with by flipping a coin. The problem is that the only coin you have is biased: you know that heads comes up with a probability of $0.75,$ rather than $0.5$ as is the case with a fair coin. However, you do really want each of the two people to have a fair chance of being picked. Using a combination of two coin flips instead of one, can you find a way of making the random decision fair?

(Hint: the chance doesn't have to be 50:50.)

Solution

Make your decision as follows: if in two flips the coin comes up heads first and then tails, go with person A. If it comes up tails first and then heads, go with person B. If it comes up both heads or both tails, ignore the flips and try again.

The probability of going with person A is now the probability that heads comes up times the probability that tails comes up, so that’s

  \[ 0.75 \times 0.25 = 0.1875. \]    

The probability of going with person B is the probability that tails comes up times the probability that heads comes up, which is of course the same as the probability of going with person A:

  \[ 0.25 \times 0.75 = 0.1875. \]    

You might have to flip for a while, since you have to ignore the heads-heads and tails-tails outcomes, but at least you can be sure that A and B have the same chance of being picked.

The same works for any pair of probabilities $p$ for heads and $1-p$ for tails. In each case the chance of each person being picked is

  \[ p(1-p). \]    

Back to puzzle

Permalink
Comment

If you get HH, you need at least another two throws...
In fact you might never be able to reach a decision if you just get HHHHH...