I am working on the following problem for my probability class and I am a little stuck:
A particle moves at each step two units to the right or one unit to the left, with corresponding probabilities $p$ and $q=1-p$. If the starting position is $z>0$ find the probability that the particle will ever reach the origin.
I know a lot of these problems are solved with a finite difference approach so I am trying that.
This is what I have done, let $f(k)=\text{Probability that we reach } 0 \text{ if we start at } k.$ Now if we start at $k$ then we have that in the next step we reach $k+2$ with probability $p$ or we reach $k-1$ with probability $q$.
So we have that: $f(k)=pf(k+2)+qf(k-1)$. At this point I don't really know what to do.
I appreciate any help.
Thanks!