Question A and B play until one has 2 more points than the other. Assuming that each point is independently won by A with probability p, what is the probability they will play a total of 2n points? What is the probability that A will win?
My attempt for the solution:
what is the probability they will play a total of 2n points?
For the first question, A and B will be "exchanging wins" until $|A-B| = 2$, if one wins twice in a row then its terminal state. Also, winning guarantees even total points,
$A = B + 2\\ A+B=B+B+2=2B+2$
A win always means even points then, making the job simpler. Probability prior to double winning streak shown in the following,
Let $E_{i}$ be a set of game from start till achieving $2*i$ points.
$P(E_{1}, E_{2}, \cdots, E_{n-1}) = P(E_{1}) + P(E_{2}) + \cdots + P(E_{n-1})\\ P(E_{1}, E_{2}, \cdots, E_{n-1}) = 1 + p*(p-1) + \cdots + (p*(p-1))^{2i-2}\\ P(E_{1}, E_{2}, \cdots, E_{n-1}) = \frac{1}{1-(p*(p-1))^{2}} - (p*(p-1))^{2i-1} - (p*(p-1))^{2i}$
*Note that $P(E_{1}) = P(\emptyset)$ since this is not the two winning streak.
The winning streaks can be a union of either $A$ wins twice in a row or $B$ wins twice in a row:
Let $S$ be the probability of 2n final points.
$P(S) = P(E_{1}, E_{2}, \cdots, E_{n-1})*p^{2} + P(E_{1}, E_{2}, \cdots, E_{n-1})*(p-1)^{2}$
What is the probability that A will win?
I didn't really understand this question, does it mean from a tie points to a double winning streak of A? Anyway, in that case, I just use the result from first question,
$P(A_{win}) = P(E_{1}, E_{2}, \cdots, E_{n-1})*p^{2}$