CONTENTS

Exercise: Martingale Strategy — Doubling-Up Is Not Free Money

Problem

A gambler follows the classical "martingale" betting strategy: start with a bet of 1 unit on a fair coin. After each loss, double the next bet; after a win, reset to 1 unit. Suppose the gambler has bankroll BB and plays until they either win at least one round or lose NN consecutive times (exhausting their bankroll).

Let XnX_n be the gambler's wealth after nn rounds, with Fn=σ(rounds 1,,n)\mathcal{F}_n = \sigma(\text{rounds } 1, \ldots, n), and X0=BX_0 = B.

  1. After the first win, the gambler's net profit for that sequence is +1+1 unit (they recover all previous losses and gain 1). Explain why in one or two sentences.

  2. Compute the total loss if the gambler loses NN times in a row. Show that this equals 2N12^N - 1.

  3. Deduce the maximum value of NN for a bankroll BB: the gambler can sustain at most N=log2(B+1)N = \lfloor \log_2(B + 1)\rfloor consecutive losses.

  4. Let τ\tau be the stopping time "first win, or NN consecutive losses." Compute E[XτX0]\mathbb{E}[X_\tau - X_0] exactly. Show that despite the intuitive "I always win eventually" feel of the doubling strategy, the expected P&L is zero — consistent with the optional stopping theorem.
  5. Conceptual. Real casinos have a table limit that effectively caps NN. Why is the doubling strategy especially dangerous (i.e. why is the actual variance of XτX_\tau huge even with E[Xτ]=X0\mathbb{E}[X_\tau] = X_0)?

Hint

For part 4, the probability of NN consecutive losses is 2N2^{-N}. The strategy gives +1+1 with probability 12N1 - 2^{-N} and (2N1)-(2^N - 1) with probability 2N2^{-N}.

Jump to the solution when you're ready.