- #1
t.kirschner99
- 18
- 0
Homework Statement
Define the Fibonacci Sequence as follows: f1 = f2 = 1, and for n≥3, $$f_n = f_{n-1} + f_{n-2}, $$
Prove that $$\sum_{i=1}^n f^{2}{}_{i} = f_{n+1} * f_{n} $$
Homework Equations
See above.
The Attempt at a Solution
Due to two variables being present in both the Sequence and what needs to be proved, strong induction is required.
Proof that it works for n = 1 and n=2:
$$f_3 = f_{2} + f_{1} = 1 + 1 = 2 $$
n=1 LHS $$\sum_{i=1}^1 f^{2}{}_{i} = f^{2}{}_{1} = 1^2 = 1 $$
RHS $$f_{1+1} * f_{1} = 1 * 1 = 1$$
n=2 LHS $$\sum_{i=1}^2 f^{2}{}_{i} = f^{2}{}_{1} + f^{2}{}_{2} = 1^2 + 1^2 = 2 $$
RHS $$f_{2+1} * f_{2} = 2 * 1 = 2 $$
Hypothesis: $$\sum_{i=1}^k f^{2}{}_{k} = f_{k+1} * f_{k} $$
We want to prove: $$\sum_{i=1}^{k+1} f^{2}{}_{i} = f_{k+2} * f_{k+1} $$
It is in my proof where I do not quite know what I am doing:
$$\sum_{i=1}^{k+1} f^{2}{}_{i}
= \sum_{i=1}^{k} f^{2}{}_{i} + f^{2}{}_{k+1}
= f_{k+1} * f_{k} + f^{2}{}_{k+1}
= f_{k+1} (f_{k} + f_{k+1}) $$
How do I simplify from here? Not quite sure what to do with these functions.
Thanks all!