I'm trying to prove that $\sum_{i=1}^{N-2} F_i = F_N -2$. I was able to show the base case for when $N=3$ that it was true.
Then for the inductive step I did:
Assume $\sum_{i=1}^{N-2} F_i = F_N -2$ is true for $3 \leq k \leq N$. Prove $\sum_{i=1}^{(k+1)-2} F_i = F_{k+1}-2$.
$LHS = \sum_{i=1}^{(k+1)-2} F_i = \sum_{i=1}^{k-1} F_i = ?$
I'm not sure how to simplify from there. I don't want just a straight answer. I want to know why that is the next step. Thanks for any help.
UPDATE:
Aaron wrote an answer and said that $\sum_{i=1}^{n+1} a_i = \sum_{i=1}^{n} a_i + a_{n+1} = b_n + a_{n+1}$. I've seen this response in other posts but I don't understand the part that says $\sum_{i=1}^n a_i + a_{n+1}$. My reasoning is that if $n = 4$ then the sum would be (using the fibonacci numbers): $(1 + 8) + (2 + 8) + (3+8) + (5+8) = 9+10+11+12 = 33$. I'm just following the pattern of $a_i + a_{n+1}$ and then summing them all up from index $i= 1$ to $n$. This answer (33) does not seem right especially since $\sum_{i=1}^{n+1} a_i$ equals to the sum I just calculated. But when I calculate $\sum_{i=1}^{n+1} a_i$, I get $(1 + 2 + 3 +5) = 11$ when $n=3$ (to get a total up to 4). I hope this is clear. Anyways, this is my reasoning. So where am I going wrong?
Why questions are always a little difficult to answer, especially for problems that can be attacked multiple ways. For this particular problem, and more generally, for problems of the form $\sum_{i=1}^n a_i = b_n$, if you proceed by induction, you can write $\sum_{i=1}^{n+1} a_i = \sum_{i=1}^{n} a_i + a_{n+1} = b_n + a_{n+1}$ by your induction hypothesis. This allows you to reduce your problem (whatever it is) to showing $b_{n+1}=b_n+a_{n+1}$. So the "why" is answered by "because induction reduces a problem about a sum of $n$ terms into a problem about a sum of $2$ terms."
But induction isn't always used in this way, and so the heuristic of "plus in $n+1$ for $k$, compare the result to plugging in $n$ for $k$, apply the induction hypothesis to simplify, and massage until the answer appears" doesn't always work. It works often enough, though, that when you notice a pattern and you want to try to prove it by induction, that is a good way to pull it off.