I'm trying to solve the following variation of the Drunkard Walk:
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 $\frac{2}{3}$, of a step toward the cliff $\frac{1}{3}$. What is his chance of escaping the cliff?
My initial idea was to draw a tree and come up with an infinite sum that looked like this:
$$ \sum_{n=0}^{\infty} \left(\frac{2}{3}\right)^n\left(\frac{1}{3}\right)^{n+1} $$
But this doesn't take into consideration the scenario where the man walks back and forth from, say, position 2 to 1 for a couple turns, and then walks off. So I corrected with this sum:
$$ \sum_{n=0}^{\infty} \binom{2n+1}{n} \left(\frac{2}{3}\right)^n\left(\frac{1}{3}\right)^{n+1} $$
Which is intuitive, at least to me, because it sums up all scenarios where the man takes exactly n steps backwards, and then that $+1$ $(n+1)$ steps forward and walks off the cliff. But this sum converges to $1.5$ $(>1)$ and is not a valid probability.
Could someone please explain where I'm going wrong? Also, how would I solve this problem using a Markov Chain/transition matrix (I'm not very familiar with either)
EDIT: If anyone else is interested, I found another really neat solution:https://medium.com/i-math/the-drunkards-walk-explained-48a0205d304