This is an add on to the question I asked at Finding formulas for the terms in a recursion defined by $s_1 = 11$ and $s_{n+1}=\frac23(s_n+5)$ . The solutions given in the answers started with the finding the sum equations for the system, then determining their change function by subtracting the sums. I am looking for an answer that will use will find the change function without first finding the equation for the sums. I am close, but I am not sure exactly why my method is working and I need to fudge some numbers to get it to work properly. I would like to have some insight into this method.
So you have the following system of equations:
$$\begin{align}s_1 &= 11 \\[4pt] s_{n+1} &= \frac23 ( s_n + 5 ) \end{align}$$
Let $f_{n+1}$ be the change function. Therefore:
$$\begin{gather} f_{n+1} = \frac{2}{3}(s_n + 5) - s_n \\[4pt] 3f_{n+1} = 2s_n + 10 - 3s_n \\ 3f_{n+1} = -s_n + 10\\ 3f_{n+1} = -\sum_{i=1}^n f_i + 10 \\ 3f_{n+1} = -\sum_{i=2}^n f_i - 11 + 10 \\ 3f_{n+1} + 1 = -\sum_{i=2}^n f_i \end{gather}$$
Now here is where the magic happens. I came across bkarpuz's post at How do you solve a recurrence with a summation function inside , and applied it to my equation.
$$\begin{align}3 * \lambda^{n+1} + \lambda^n = -\lambda^n \\[4pt] \lambda = -2/3 \end{align}$$
This implies that the function will be in the form $c*(-2/3)^n$ and we can find $c$ just by plugging in an initial value. But this is only close. The actual formula is:
$$\begin{align}f_{n+1} = -(1/3)*(2/3)^{n-1} \\[4pt] \end{align}$$
Could you please shed some light on why this method gets us close, and answer why it is giving $(-2/3)$ instead of $(2/3)$.