Where $F$ is the Fibonacci Sequence, and $L$ is the Lucas Sequence. I need to find the inductive proof of this statement. I've got nearly a page of work in front of me trying to use definitions such as $L_{n} = F_{n-1} + F_{n+1}$, but I keep running into dead ends. The farthest I've appeared to have gotten with the proofs is:
$F_{2n+2} = F_{n+1} * L_{n+1}$ ->
$F_{2n+2} = F_{n+1} * (F_{n} + F_{n+2})$ ->
$F_{2n} + F_{2n+1} = F_{n+1} * (F_{n} + F_{n+2})$ ->
$(F_{n}*L_{n}) + F_{2n+1} = F_{n+1} * (F_{n} + F_{n+2})$
... but I'm not sure where to go from here, or even if my proof is heading in the correct direction. Proof writing is not my forte, so help with this proof is appreciated.
Edit: While @pjhuxford provided an excellent proof for it, I actually need a proof by induction.
One way to have an induction based proof is modify your induction statement to something stronger which give you a better connection between the statement for successive $n$.
Consider following induction statements:
$$\mathcal{S}_n = \begin{cases} F_{2n-1} &= F_{n}^2 + F_{n-1}^2\\ F_{2n} &= F_n L_n = F_n (F_{n+1} + F_{n-1}) \end{cases}$$
It is easy to check $\mathcal{S}_1$ is true (with $F_0 = 0$). Assume $\mathcal{S}_n$ is true, we have
$$\begin{align} F_{2n+1} = F_{2n} + F_{2n-1} &= F_n(F_{n+1} + F_{n-1}) + F_{n-1}^2 + F_n^2\\ &= F_n F_{n+1} + (F_n + F_{n-1})F_{n-1} + F_{n}^2\\ &= F_n F_{n+1} + F_{n+1} F_{n-1} + F_{n}^2\\ &= F_{n+1}(F_n + F_{n-1}) + F_{n}^2\\ &= F_{n+1}^2 + F_{n}^2 \end{align} $$ and $$\begin{align} F_{2n+2} = F_{2n+1} + F_{2n} &= F_{n+1}^2 + \color{red}{F_{n}^2} + \color{green}{F_nF_{n+1}} + F_nF_{n-1}\\ &= F_{n+1}^2 + \color{green}{F_n F_{n+1}} + \color{red}{F_{n}^2} + F_nF_{n-1}\\ &= F_{n+1}(F_{n+1} + F_{n}) + F_n(F_{n} + F_{n-1})\\ &= F_{n+1}F_{n+2} + F_n F_{n+1}\\ &= F_{n+1}(F_{n+2} + F_{n})\\ &= F_{n+1}L_{n+1} \end{align} $$ This means $\mathcal{S}_{n} \implies \mathcal{S}_{n+1}$ and by induction, $\mathcal{S}_n$ is true for all $n$. What you want to prove now follows immediately.