If a team has probability p of winning each game, and if the team wins/loses a match when it is 2 games ahead/behind the other team, is there an analytical formula or approximation for the probability that the team wins the match, as a function of p? One can of course resort to Monte Carlo. Here is what I tried:
p = prob of A winning each game
p1 = prob of A winning when match tied
p2 = prob of A winning when ahead by 1 game
p3 = prob of A winning when behind by 1 game
p1 = pp2 + (1-p)p3 = pp2 + p3 - pp3
p2 = p + (1-p)p1 = p + p1 - pp1
p3 = pp1 + 1 - p = pp1 + 1 - p
plug last into first:
p1 = pp2 + (1-p) (p*p1 + 1 - p)
plug 2nd into above
p1 = p(p + p1 - pp1) + (1-p) * (pp1 + 1 - p)
= p^2 + pp1 - p^2p1 + pp1 + 1 - p - p^2*p1 - p + p^2
p1 = (2p^2 - 2p + 1)/(2*p^2 - p + 1)
But for p=0, this gives p1=1, which is wrong.