[Math] Prove that $F(n+3)=2F(n+1)+ F(n)$ for $n \ge 0$

fibonacci-numbers

The definition of a Fibonacci number is as follows:

$$F(0)=0\\
F(1)=1\\
F(n)= F(n-2)+F(n-1)\text{ for }n\geq 2$$

Prove the given property of the Fibonacci numbers directly from the definition.
$F(n+3)=2F(n+1)+ F(n)$ for $n$ greater than or equal to $0$.

To get started:
-I would do a direct proof.

Assume that $F(0)=0$; $F(1)=1$; $F(n)= F(n-2)+F(n-1)$ for $n$ greater than or equal to $2$.

I am lost. Can I have a clue on the nest step?

Best Answer

$$ F(n+3) = \color{red}{F(n+2)} + \color{blue}{F(n+1)} = \color{red}{F(n+1)} + \color{red}{F(n)} + \color{blue}{F(n+1)} = \color{green}{2F(n+1)} + \color{red}{F(n)} $$