Problem Statement:
From where he stands, one step toward the cliff would send the drunken man over the edge. He takes random steps, either toward or away from the cliff. At any step his probability of taking a step away is 2/3, of a step toward the cliff 1/3. What is his chance of escaping the cliff?
My take:
Say the probability that he dies from where he stands right now is p. Then, he could comfortably make one step left and end his life with probability 1/3
Or he could take one step away and two step towards and boom...take two steps away and three steps toward...so on and so forth
Resulting in p= 1/3 + 2/3 * (1/3)^2 + (2/3)^2 * (1/3)^3 +....
Summing this infinite sequence gives me probability of dying as 3/7 (around 43%). I was rather puzzled when i learnt that the correct probability is 1/2. Cant figure out what are the other 7% ways for my drunken man to die which I missed above?
Note: not a compete solution as I haven't done the calculations, but I think if you do there should not be any problems
Let $p(i)$ be the probability of him falling when has a distance $i$ from the cliff.. We want $p(1)$
Clearly
$$p(1) = 1/3 + 2/3 p(2)$$ $$p(2) = 1/3p(1) + 2/3 p(3)$$
Which substituting gives
$$p(1) = 1/3 + 2/9p(1) + 4/9p(3)$$
Do it again substituting in $p(3) = 1/3p(2) + 2/3p(4)$ and try to get a relation where on the right hand side there is only $p(n)$; then let $n \to \infty$ and use the fact that $\lim_{n \to \infty} p(n) = 0$ to conclude