I am given a chain with state space $S=\{0, 1, 2, \ldots \}$, with transition probabilities $p(0,0)=3/4$, $p(0,1)=1/4$, $p(x, x-1)=3/4$, and $p(x,x+1)=1/4$ for $x \geq 1$.
For $x > 0$, let $e(x)$ denote the expected number of steps in the chain until it reaches the origin assuming that $X_0 = x$. Find $e(1)$. (Hint: first consider the expected return time starting at the origin and write $e(1)$ in terms of this.)
My attempt: Note that $e(0)$ is $0$ as we have started at the origin and thus we will end up there in 0 steps. Note that for $x>0$, $$e(x) = 1 + \frac{3}{4}e(x-1) + \frac{1}{4}e(x+1) \quad(*)$$
So $$e(1) = 1 + \frac{3}{4}e(0) + \frac{1}{4}e(2)=1+\frac{1}{4}e(2)$$ But now I am not sure how to proceed. Is my expression in $(*)$ even correct? I think $(*)$ is a linear difference equation which I do not know how to solve.
Furthermore, I am also asked to find $e(x)$ for all $x>0$.