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?