0

A and B play until one scores 2 points in a row, who will win. Probability of A or B scoring a point is $a$ or $b$, respectively. What is the probability that A wins?

I know the correct answer is $\frac{a^2}{1-2ab}$, based on this.

I was wondering what is wrong with the following approach. We form the following tree. The green/red rectangles are where A/B has won.

Tree showing possible sequences leading to the winning of A.

We can see the following pattern for the top and bottom rows (green boxes where A has won):

Top: $a^2, a^3b, a^4b^2, \ldots$

Bottom: $a^2b, a^3b^2, a^4b^3, \ldots$

When we add the probabilities, both top and bottom rows are geometric series with a factor of $ab$. So,

Sum of the top row: $\frac{a^2}{1-ab}$

Sum of the bottom row: $\frac{a^2b}{1-ab}$

Total probability: $\frac{a^2(1+b)}{1-ab}$

Questions: This not equal to $\frac{a^2}{1-2ab}$. What am I missing?

  • Hi. I'm assuming that either $A$ or $B$ gets the point, so $a+b=1?$ – Jason Kim Aug 30 '18 at 04:36
  • I think the question you linked (ie "based on this") is not the exact same the way you worded it. In the linked question, it's about accumulating 2 more points than the other. For example, if the outcome of the first 3 trials is ABB the score is 1 to 2 and the game is not over but the way you wrote it in this question B just won. – HJ_beginner Aug 30 '18 at 05:30
  • Also just curious OP but how did you make that tree? Was it some program or just like MS Paint? – HJ_beginner Aug 30 '18 at 05:33
  • 1
    @HJ_beginner: Thanks a lot. Now I guess I understand. I used the following to make the tree: https://www.smartdraw.com/ – user1022959 Aug 30 '18 at 14:48
  • @user1022959 thanks for letting me know! – HJ_beginner Aug 30 '18 at 17:26

3 Answers3

0

Let $P(A)=\text{Probability of A winning, }P(B)=\text{Probability of B winning.}$

We are actually supposed to find $\dfrac{\text{Success Probability}}{\text{Success Probability + Failure Probability}},$ (we are assuming that this game will end) so we need to find the failure probability, as well as the success probability.

This is true because it will either have $A$ win or $B$ win at some point, so the solution has a chance of $\frac{\text{P}(A)}{\text{P}(A\cup B)}=\frac{\text{P(A)}}{\text{P(A)}+\text{P(B)}}$ since both are mutually exclusive ($A$ and $B$ cannot both win).

Jason Kim
  • 902
0

The question you linked is different from the question you have asked.

In the linked question, they play until one player has two more points than the other. In your question, they play until one player has won two points in a row.

This is not the same game--for example, consider the sequence $abb$.

mathmandan
  • 2,014
0

Your game is not the same as the game in the linked question.

I did not look at your infinite tree. Anyway: The result is correct.

Apart from the initial state $O$ my graph (it's not a tree) has just two nonterminal states: last game won by $A$, and last game won by $B$. Denote by $p|_A$, $p|_B$, and $p|_O$ the probabilities that $A$ wins when we are in state $A$, $B$, and $O$ respectively. Then we have the equations $$p|_A=a\cdot 1+ b\cdot p|_B\>,\qquad p|_B= a \cdot p|_A+ b\cdot 0\ ,$$ resulting in $$p|_A={a\over 1-ab},\qquad p|_B={a^2\over 1-ab}\ .$$ It follows that $$p|_O=a\cdot p|_A+b\cdot p|_B={a^2(1+b)\over 1-ab}\ .$$