tldr; The basic essence of this note is to demonstrate the importance of vision. Instead of blindly chasing everything that is shiny, a person with vision can walk in a straight line. This is important, a person walking in a straight line with N steps moves with O(n) But a person walking in a random walk, only can move on the order, O(n).
Assuming there are independent random variables, Z1,Z2,Z3,... such that each variable is either -1 or 1 with a 50% probability. Then create a length-N sequence such that S0=0 and SN=∑j=1NZj.
It follows that the expected value, E(SN)=∑j=1NE(Zj)=0
We’re going to need another property of sums to move on here,