You toss a fair coin until you get $n$ heads in a row. What is the expected number of tails you tossed?
It can be well shown that the expected number of tosses required to get $n$ heads in a row is $2^{n+1}-2$
So naturally half of this is the expected number of tails?
More formally:
Let $H_n$ and $T_n$ respectively denote the number of heads and tails you have tossed in total up to time $n$.
$X_n : = H_n - T_n$ is a martinagle. As $X_{n+1} = X_n + C_{n+1}$ where $C_n = \{+1 \text{ if you tossed a head and } -1 \text{ if you tossed a tail on coin } n+1 \}$
And $\mathbb{E}[C_n] = 0 $ for all $n >=1$
Notice $X_0$ is $0$ and the stopping time $\tau$ to yield $n$ consecutive heads is a.s finite (by borell cantelli ) and in $\mathcal{L}_1$
Ergo by OST: $\mathbb{E}[H_{\tau} - T_{\tau}] = \mathbb{E}[X_{\tau}] = \mathbb{E}[X_0] = 0 $
And so
$ \star \mathbb{E}[H_{\tau} ] = \mathbb{E}[T_{\tau} ] $
We know from before that $\mathbb{E}[H_{\tau} + T_{\tau}] = 2^{n+1} -2 $
And so using $\star$ $\mathbb{E}[T_{\tau}] = \frac{1}{2} (2^{n+1} -2 ) = 2^n -1$
Having gone through all this I feel like I used an AK-47 to swat a fly. And that all the martingale theory was not needed. Is there a simply more concise way to prove that once you know the expected number of tosses for something, the expected number of tails will simply be half that?
To expand on the suggestion in the comments:
For $i\in \mathbb N$ let $E_i$ denote the expected number of Tails you see before seeing $H^i$.
It is easy to confirm that $E_1=1$.
We can now work recursively. In order to see $H^{n+1}$ we must first see $H^n$. Up to that point, we expect to have seen $E_n$ Tails. The next toss is either $H$, which ends the game, or $T$, which restarts it from the beginning. It follows that $$E_{n+1}=E_n+\frac 12\times 0 +\frac 12\times (E_{n+1}+1)$$ and a simple induction then confirms that $$E_n=2^n-1$$ as desired.