I am currently trying to prove a Fibonacci sequence for my class and I am stuck.
$$F(n+1)^2 =F(n)^2 + F(n−1)F(n+2)\quad \text{for}\quad n\ge 2$$
What I've done so far:
$F(n+2) = F(n+1)+F(n)$
$\Rightarrow F(n+1) = F(n+2)-F(n)$
$[F(n+2)-F(n)]^2 = F(n+2)^2 - 2[F(n+2)F(n)] + F(n)^2$
$\dots\,$?
I am not quite sure I'm doing this correct or I just need to keep working at it. Any help would be appreciated.
At this point we want to show that $$F(n+2)^2-2F(n+2)F(n)=F(n-1)F(n+2)$$ in order to complete the proof. Well we have that $$\begin{aligned} F(n) &= F(n+1)-F(n-1) \\ &= F(n+2)-F(n)-F(n-1) \end{aligned}$$ by simply using the fact that $F(k+1)=F(k+2)-F(k)$ twice. Solving for $F(n)$ yields $F(n)=\frac{1}{2}[F(n+2)-F(n-1)]$. Try using this.