CONTENTS

Exercise: Where OST Fails — The Symmetric Walk Hits One

Problem

Let SnS_n be a symmetric random walk on Z\mathbb{Z} starting at S0=0S_0 = 0, and τ=inf{n:Sn=1}\tau = \inf\{n : S_n = 1\}.

  1. It is a classical result that a symmetric random walk on Z\mathbb{Z} is recurrent — with probability 1, it visits every integer infinitely often. In particular, τ<\tau < \infty a.s. Compute SτS_\tau and E[Sτ]\mathbb{E}[S_\tau].
  2. Compute E[S0]\mathbb{E}[S_0].

  3. The above shows E[Sτ]E[S0]\mathbb{E}[S_\tau] \ne \mathbb{E}[S_0], so OST fails. Check each hypothesis of OST and identify which one is violated. Specifically:

    • Is τ\tau bounded?
    • Is SnS_n bounded on {nτ}\{n \le \tau\}?
    • Is E[τ]<\mathbb{E}[\tau] < \infty with bounded increments?
  4. Numerical demonstration. Simulate N=10,000N = 10{,}000 paths of the random walk starting at 00, stopping each at the first hit of +1+1 (within a compute budget of, say, Tmax=100,000T_{\max} = 100{,}000 steps). Plot a histogram of τ\tau values. Explain what the plot looks like and how it relates to the failure of OST.

Hint

For part 3, recall that a classical result says E[τ1]=\mathbb{E}[\tau_1] = \infty for the symmetric walk hitting time — despite τ1<\tau_1 < \infty a.s.
Jump to the solution when you're ready.