Solve recurrence equation: $$\frac{y_{t+2}-y_{t+1}}{y_{t+1}} = 0.995 \frac{y_{t+1}-y_{t}}{y_{t}} $$
A friend gave me this question, but I'm not familiar with recurrence equations.
I can solve it for $$k_t := \frac{y_{t+1}-y_t}{y_t} = \frac{y_{t+1}}{y_t}-1$$ but this doesn't give me a closed form for $y_t.$
How do I proceed?
Let $c=0.995$. Since you've already no doubt obtained $k_t=k_0 c^t$ so $\frac{y_{t+1}}{y_t}=1+k_0 c^t$, we get $y_t=y_0\prod_{i=0}^{t-1}(1+k_0 c^{i-1})$, $k_0$ of course being $\frac{y_1}{y_0}-1$. (Unsurprisingly, the original recursion relation's general solution requires the first two terms to become particular.)