Alternating coin toss – redux

I want to revisit a probability puzzle from a previous post: see Alternating coin toss game.

You play a game where you alternate tossing a coin with a friend, and the first person to toss heads wins. But let’s make it a little more interesting by making the coin weighted, or biased, so that it lands heads only 25% of the time. If you were to start, what would be your chances of winning?

Let’s call the probability of tossing heads pp and the probability of tossing tails qq.

On the starter’s first toss, his chances of tossing heads are pp. The chances he’ll toss heads on his second toss are q2×pq^2\times p. On his 4th toss it’s q4×pq^4\times p and so on.

So his chances of winning the game is the sum ss of the geometric progression p×q0  +  p×q2  +  p×q4  +p\times q^0\;+\;p\times q^2\;+\;p\times q^4\;+

Let’s use the shifting approach to solve this. The idea is to subtract out the first element, and then shift the rest of the elements to the left. So first subtract:
sp×q0=p×q2  +  p×q4  +s-p\times q^0=p\times q^2\;+\;p\times q^4\;+

Now to shift the terms to the left, we need to divide by q2q^2
sp×q0q2=p×q0  +  p×q2  +\frac{s-p\times q^0}{q^2}=p\times q^0\;+\;p\times q^2\;+

So…
sp×q0q2=s\frac{s-p\times q^0}{q^2}=s
s=p1q2s=\frac{p}{1-q^2}

This gives us a general solution to the alternating coin toss problem. If we plug in the unweighted coin probabilities, we get s=23s=\frac{2}{3} which is what we’d worked out before. For the case where the probability of tossing a head is 1/4, then we get s=47s=\frac{4}{7}, which is the probability of winning for the starter.

This entry was posted in puzzles and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *