Expected number of steps till a random walk hits a or -b.

6.9k Views Asked by At

On wikipedia I read that the expected number of steps till a 1D simple random walk hits either $a$ or $-b$ is equal to $ab$. (I have seen this result also on other websites.) However, no proof or further reference is given. Could someone please explain how they arrived at this result?

Thanks in advance, Claus

1

There are 1 best solutions below

2
On

The expected time $t_x$ to hit either boundary starting at $x$ satisfies the recurrence

$$ t_x=1+\frac12\left(t_{x-1}+t_{x+1}\right)\;. $$

The general solution of this second-order linear recurrence is $t_x=-x^2+mx+n$, and you can easily check that $t_x=(a-x)(x+b)$ is of this form and satisfies the boundary conditions $t_a=t_{-b}=0$; thus $t_0=(a-0)(0+b)=ab$.