0

Consider the following game of chance. A fair coin is tossed until the first tails appears. You place an initial bet of k. If the 1st tails appears on the nth toss, you receive a total of $2^n$ (2 to the power of n) in return for your initial bet. How large should k be in order for your expected winnings to be zero (note, expected winnings of zero is sometimes called a “fair” game)?

I did the question and the answer comes to infinite. Is that correct? If not, what did I do wrong?

In other words, we can rephrase the question as: what is the expectation value of $2^n$ given $p(n)=1/2^{(n+1)}$?

1 Answers1

0

The answer is indefinite expected return.

$$\begin{align} \mathsf P(N=n) & = 2^{-n} \\[2ex] \mathsf E(g(N)) & = \sum_{n=1}^\infty g(n)\times \mathsf P(X=n) \\[2ex] \mathsf E(2^N) & = \sum_{n=1}^\infty ((2^n) \times 2^{-n}) \end{align}$$

While you intuitively expect the game to end at some finite result, however at any point before the end of the game the probability of doubling your return on the next toss is always 1/2.

Another way: The game will either end on the first turn, or continue recursively with double the stake. So using the Law of Iterated Expectations:

$$\begin{align} \mathsf E(2^N) & = \mathsf E(2^N \mid N=1)\mathsf P(N=1) + \mathsf E(2^N\mid N\gt 1)\mathsf P(N\gt 1) \\ & = 2^1 \times \tfrac 1 2 + \mathsf E(2^{N+1})\times \tfrac 1 2 \\ & = 1 + \mathsf E(2^N) \end{align}$$ Which is paradoxical for finite numbers, so the expectation must be indefinite.

So there is no finite value of a stake $k$ which would equal the expected return.

Graham Kemp
  • 133,231
  • 1
    the question is finding the value $k$ of which $E[2^n-k]=0$, not multiply by $k$, but essentially you are correct. Just edit it so that it would be correct. – Quantum_Boson Feb 10 '15 at 05:39