I am having difficulty in finding right resource to review. I am preparing interview on probability. One particular topic that I struggle the most is Simple Random Walk. I just want to know the following:
1) finding the first $n$ for which $S_n$ reaches a defined threshold $\alpha$.
2) the probability that $S_n$ reaches $\alpha$ for any given value of $n$.
3) Expected number of steps to reach an end point.
I am wondering where I can find examples specifically for these 3 types of question?
Thanks.
-------
Maybe I can try to answer my questions. Assume symmetric. Assume we start from 0.
1) the probability of first n for which $S_n$ reaches 10 is P($S_{10} =10) = 1/2^{10}$
2) for given value of $n$, we want to know the probability that $S_n$ reaches $\alpha$. This is equivalent as if asking $\max(S_1,S_2,S_3,\dots, S_n) \geq \alpha$. And the maximum of this probability formula is given by here : http://www.randomservices.org/random/bernoulli/Walk.html
3) This is simply the gambler ruin's problem, and you can look up the expected time for a player to ruin, which is $\alpha / (\alpha + \beta)$
One useful book could be Probability and Random Processes 3rd ed, by Grimmett and Stirzaker. Sections 3.9 and 3.10 have material on Simple random walks. For the three questions:
1) I think you can use the hitting time theorem, p.79.
2) Here, you could use theorem (10), p. 78.
3) Eq. (9) on p. 74 gives a formula for the mean number of steps $D_k$, starting from $k$ before hitting one of the absorbing barriers at $0$ and $N$, for $p=1/2$, it is $D_k = k(N-k)$.