Say you have a recursion defined by: $$\begin{align}s_1 &= 11 \\[4pt] s_{n+1} &= \frac23 ( s_n + 5 ) \end{align}$$ I am trying to find an equation that allows the user to put in $n$ and get back the difference change: $s_{n+1} - s_{n}$. I already know this formula is:
$$\frac13\left( \frac23 \right)^{ n - 1 }( 10 - s_1 )$$ which I found by plugging in numbers and looking at the results. I don't understand how to derive this equation, though. I tried a few approaches, but none of them led me anywhere.
hint
Let us look for $a$ such that
$$s(n+1)-a=\frac 23(s(n)-a)$$
then
$$a-\frac 23a=\frac{10}{3}$$ or $$a=10$$
thus $$s(n+1)-a=\frac 23(s(n)-a)$$ and $$s(n+1)=(\frac 23)^n(s(1)-a)+a=(\frac 23)^n+10$$
finally
$$s(n+1)-s(n)=\frac{-1}{3}(\frac 23)^{n-1}$$