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?