Fibonacci numbers are defined as follows.
$$F_{1}= F_{2} = 1$$ When $n \geq 3$, $$F_{n} = F_{n-1} + F_{n-2}$$
Task: Prove the following statement using mathematical induction:
- When $n \geq 2$, $$F_{n-1}F_{n+1} = F_{n}^2 + (-1)^n$$
The Base Case:
The Inductive Step:
I'm really confused about the inductive step. The answer makes absolutely no sense to me.
Questions:
- For the inductive step, why is the yellow area equal to the green area?
- For the inductive step, how do we arrive at the purple and red statement?
I think the answer given to me is too simplified and doesn't demonstrate a clear logical reasoning.

