Fibonacci induction proof?

295 Views Asked by At

The Fibonacci Numbers $(f_n)$ are defined $f_1=f_2=1$, and $f_n=f_{n-1}+f_{n-2} ,\,\,\,\forall n \geq2$.

Prove that for every integer $n \geq 1$, $$f_1 +f_2 +···+f_n =f_{n+2}−1$$

3

There are 3 best solutions below

0
On BEST ANSWER

As $f_2 = 1$, the conclusion is true for $n = 0$, for the induction suppose $\sum_{k=1}^n f_k = f_{n+2} - 1$ holds for some $n \ge 0$, then we have \begin{align*} \sum_{k=1}^{n+1} f_k &= \sum_{k=1}^n f_k + f_{n+1}\\ &= f_{n+2} - 1 + f_{n+1}\\ &= f_{n+3} - 1 \end{align*}

1
On

$$f_n-f_{n-1}=f_{n-2},\,\,\,\,\color{Red}{\text{Telescope}}$$

2
On

$f_1 +f_2 +···+f_n =f_{n+2}−1 \to f_1 +f_2 +···+f_n =f_n + f_{n+1}−1$, so:

$f_1 +f_2 +···+f_{n-1} =f_{n+1}−1$.

Repeat until $f_1=f_3-1$, which is true ($f_3=2$).