I was having a discussion with a friend about the probability, and we came up with very different methods to solve it that lead to the same answer. The problem is pretty simple: you have two teams A and B playing a best of 7 series where wins are independent and the probability that team B wins is .35. What's the probability of team B winning th series? Friend says, "this is just a binomal random variable $X$ with $n=7$ and $p=.35$ and we are looking for $P(X\geq 4)$, which according to my TI-83 here is .1998".
I was rather convinced that this must be wrong. If we think of the series as a sequence of A's and B's, then we are looking for the probability of obtaining a sequence of length $n=4,5,6,7$ with 4 B's and the last element is a B. I was sure that his method will include the probability of obtaining, say, {B,A,B,B,B,A,A}, which we are not interested in and in fact couldn't even ever occur. So I figure that what we really want for a sequence of length $n$ is the probability of obtaining a sequence of length $n-1$ with exactly 3 B's, and then tacking a B onto the end. So for a sequence of length $n$, the probability should be $\binom{n-1}{3}.35^4 .65 ^{n-4}$, and then the answer should be $\sum_{n=4}^{7}\binom{n-1}{3}.35^4 .65 ^{n-4}$. I was confident that I was right and he was wrong, but then I plugged that into Wolfram Alpha and got... .1998.
What's going on here? Is it a coincidence?