I have a random walk at position i that goes to i+2 with probability 1/2 and goes to i-1 with probability 1/2. We start at position 0 and are absorbed by position -1. What is the probability of being absorbed in an infinite random walk?
I am trying to solve this by thinking about recurrence relationships where
$$f(x) = \frac{1}{2} f(x-1) + \frac{1}{2} f(x+2)$$ and $$f(-1) = 1$$
But I haven't gotten anywhere. Can anyone provide insight?