Question :
Andy and Beth are playing a game worth $100. They take turns flipping a penny. The first person to get 10 heads will win.
But they just realized that they have to be in math class right away and are forced to stop the game.
Andy had four heads and Beth had seven heads. How should they divide the pot?
This is a question from the book Probability: With Applications and R by Robert P. Dobrow .Now the given answer is :
P(Andy wins) = 0.1445. Andy gets $14.45 \;and\; Beth\; gets\; $85.55
But I am not getting this answer . So can someone check my solution and tell me where I am wrong , or else provide a better solution . Thanks in advance.
Proposed Solution : Let Andy be A and Beth B: A needs 6 heads to win, and B needs 3 heads to win.
Let $X_a$ be the number of times A needs to flip the coin to get 6 wins , and $X_b$ be the number of flips for B to get 3 wins . Both $X_a$ and $X_b$ are Negative Binomial Variables with the $X_a$ having parameters 6 and $p=\frac{1}{2}$ and $X_b$ having parameters 3 and $p=\frac{1}{2}$.
Now if A needs $k$ flips to win. Then the required probability is :
$P(A \;wins) = P(X_a = k)*P(X_b > k)$(i.e A wins in $k$ moves and B gets 3 heads after $k$ flips)
$P(X_a = k)=(^{k-1}C_5)*(\frac{1}{2})^6(\frac{1}{2})^{k-6}=(^{k-1}C_5)*(\frac{1}{2})^k$(Negative Binomial Distribution formula)
$P(X_b > k) =$ The 3rd head should come after $k$ trails , therefore until $k$ trails only $0\;or\;1\;or\;2$ heads can occur.
Therefore : $P(X_b>k) = \sum_{i=0}^2{^{k}C_i}*(\frac{1}{2})^i(\frac{1}{2})^{k-i}=\sum_{i=0}^2{^{k}C_i}*(\frac{1}{2})^k$
So $P(A\;wins) = (^{k-1}C_5*(\frac{1}{2})^k) * (\sum_{i=0}^2{^{k}C_i}*(\frac{1}{2})^k) $ . Now minimum 6 tries are required for A to win, so $k:6 \to \infty$
$\begin{equation} P(A\;wins) = \sum_{k=6}^{\infty}\biggl( (^{k-1}C_5*(\frac{1}{2})^k) * (\sum_{i=0}^2{^{k}C_i}*(\frac{1}{2})^k) \biggr) \\ = \sum_{k=6}^{\infty}\biggl((\frac{1}{2})^{2k}*(^{k-1}C_5)*(^kC_0+^kC_1+^kC_2)) \biggr) \\ =\sum_{k=6}^{\infty}\biggl(\frac{1}{2^{2k+1}}*(^{k-1}C_5)*(k^2+k+2)\biggr) \end{equation}$
Now I calculated the sum on my calculator for $k : 6 \to 150$ and it is converging to 0.052. Which is very far off from the given answer of $P(Andy\; wins) = 0.1445$. So is my method wrong ? Or is the sum convergence slow ?
Can someone solve this question , employing an entirely different method if necessary.