Consider a random walk along the lattice points of the 2D coordinate plane, starting at the origin. Each step, the walk progresses randomly to an adjacent point in any of the four cardinal directions (positive , negative , positive , negative ), and this process continues forever.
Will the walk inevitably (i.e., with probability 1) return to the origin at some point in time? What about in 1D?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The answer is yes in both cases.
First, consider the 1-dimensional case. Note that the probability that the process returns after 2 n steps is 2 2 n ( n 2 n ) and the probability after 2 n + 1 steps is 0. Then, the expected number of times the walk returns to the origin is n = 1 ∑ ∞ 2 2 n ( n 2 n ) ∼ n = 1 ∑ ∞ π n 1 . Note this statement regarding asymptotic behavior follows from Stirling's approximation . Because this sum diverges to infinity, the walk is expected to return to the origin an infinite number of times. It follows that the process is positive recurrent and returns to the origin with probability 1 .
Now, consider the 2-dimensional case. Note that this is equivalent to "rotating" (and rescaling) the axes so that each move is now of the form ( + 1 , + 1 ) , ( + 1 , − 1 ) , ( − 1 , + 1 ) , or ( − 1 , − 1 ) . Then, each move may be viewed as independently choosing a step in the x direction and a step in the y direction; that is, the 2-dimensional random walk may be seen as a composition of two 1-dimensional random walks. Note the movement in the x and y directions is independent (e.g. P ( x = + 1 ) = P ( x = + 1 ∣ y = + 1 ) . Thus, the expected number of times the walk returns to the origin is n = 1 ∑ ∞ ( 2 2 n ( n 2 n ) ) 2 ∼ n = 1 ∑ ∞ π n 1 . Because this sum diverges to infinity, the walk is expected to return to the origin an infinite number of times. It follows that the probability the process returns to the origin eventually is 1 .
Note that this rotation trick for the 2-dimensional case fails in any higher dimension (try it yourself!). In fact, an analogous process in any higher dimension does not necessarily return to the origin!