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)$.
Your problem with the bkarpuz post is that he didn't explicitly write out a step, so you skipped it entirely. Applied to your problem, the step would read: $$3f_{n+1}+1=-\sum_{i=2}^nf_i$$ $$3f_{n+2}+1=-\sum_{i=2}^{n+1}f_i$$ Now on subtracting the first equation above from the second we find $$3f_{n+2}-3f_{n+1}=-f_{n+1}$$ So $$3f_{n+2}-2f_{n+1}=0$$ So this is the difference equation that bkarpuz is solving (but now appropriate to your problem)! If we now let $f_n=c\lambda^n$, then $$c\left(3\lambda^{n+2}-2\lambda^{n+1}\right)=3c\lambda^{n+1}\left(\lambda-\frac23\right)=0$$ Since not all of the $f_{n+1}$ can be zero, it follows that $\lambda=2/3$. Then $$f_2=s_2-s_1=\frac{32}3-11=-\frac13=c\left(\frac23\right)^2$$ So $$c=-\frac13\left(\frac32\right)^2$$ and $$s_{n+1}-s_n=f_{n+1}=-\frac13\left(\frac32\right)^2\left(\frac23\right)^{n+1}=-\frac13\left(\frac23\right)^{n-1}$$