Two players, $A$ and $B$, alternately and independently flip a coin and the first player to obtain a head wins. Player $A$ flips first. What is the probability that $A$ wins?
Official answer: $2/3$, but I cannot arrive at it.
Thought process: Find the probability that a head comes on the $n$th trial. That's easy to do, it's just a Geometric random variable. Then find the probability that $n$th turn is player's A turn. Finally, multiply both probabilities.
When I came up with each probability, both of them depended on the amount of trials $n$, so my answer was a non-constant function of $n$.
However, what I find quite fantastic is that the answer is a constant, so the amount of tries until a head comes doesn't seem to matter.
So $A$ wins if head comes first time in odd number of tosses. Say $P_k$ is probability that head comes first time in $k$-th toss then $P_k = q^{k-1}p$ and
\begin{eqnarray} P &=& P_1+P_3+P_5+... \\ \\ &=&p+q^2p+q^4p+q^6p+....\\ \\ &=& {p\over 1-q^2}\\ \\& =& {1\over 1+q} \end{eqnarray}
where $p$ is probability that head comes in one toss and $q=1-p$.
So if the coin is fair, then $p=1/2=q$, so $$P= {2\over 3}$$