A and B agree to play a match that consists of a series of games you either win or lose. They go on playing until one of the players wins two games in a row. Suppose player A has a probability p of winning each game.
What are the chances of player A to win the match?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Consider the sequences of games that yield A as the winner of the match (each letter denotes the winner of each game):
Therefore, P A = P 1 + P 2 = 1 − p ( 1 − p ) p 2 + 1 − p ( 1 − p ) ( 1 − p ) p 2 = 1 − p + p 2 p 2 ( 2 − p )
Perhaps this is another problem, but any thoughts on how to extend this to the case where a player needs to win n games in a row? Even the case n = 3 is significantly more complicated than n = 2 .
Log in to reply
I was suspecting the general case was solved using some kind of recurrence but I was not able to work out a solution myself, so I looked it up. I found this answer to an equivalent problem: https://math.stackexchange.com/questions/201531/whats-the-probability-of-tossing-r-heads-in-a-row-before-s-tails-in-a-row
Problem Loading...
Note Loading...
Set Loading...
An alternative approach without summing the series is as follows.
Let X Y denote the probability that player X wins overall given that player Y won the first game.
We have A A = P ( A A ) + P ( A B A A ) + P ( A B A B A A ) + ⋯
and A B = P ( B A A ) + P ( B A B A A ) + P ( B A B A B A A ) + ⋯ = ( 1 − p ) A A
Similarly B A = p B B
Also, A A + B A = p and A B + B B = 1 − p . We now have four equations in four unknowns; solving gives
A A = 1 − p + p 2 p 2
A B = 1 − p + p 2 ( 1 − p ) p 2
and so the probability that A wins overall is A A + A B = 1 − p + p 2 p 2 ( 2 − p ) .