The sequence of numbers $F_n$ for $n \in N$ defined below are called the Fibonnaci numbers. $F_1 = F_2 = 1$, and for $n \geq 2$, $F_{n+1} = F_n + F_{n-1}$. Prove the following facts about the Fibonnaci numbers
For each of the following, $n \in N$
a) $\displaystyle \sum_{i=1}^nF_i = F_{n+2} - 1$
I started this proof by using strong induction
To prove something by strong induction, you have to prove that if all natural numbers strictly less than $N$ have the property, then $N$ has the property.
$n \geq 2$, $F_{n+1} = F_n + F_{n-1}$
Check basis step $n=2$:
$F_1 + F_2 = 1 + 1 = 2 = 3-1 = F_4 - 1$, therefore TRUE
I'm unsure how to go any further, when it comes to strong induction I'm lost on how to set up my IH, and proceed for the rest of the steps