So the statement is:
Prove: $$F^2_{n+1} - F^2_{n-1} = F_{2n}$$
How could this be proven with induction?
What about without induction?
For induction I got here: (already tested $n=1$, and assumed $n=k$ held true)
$$F^2_{k+2} - F^2_{k} = F_{2k + 2}$$ $$(F_{k+1} + F_{k})^2 - (F_{k-1} + F_{k-2})^2 = F_{2k+1} + F_{2k}$$ Then you get some cancelation based off the $n=k$ case $$2F_{k+1}F_k + F_k^2 - 2F_{k-1}F_{k-2} - F_{k-2}^2 = F_{2k+1}$$
This is where I am stuck for the induction proof.
I have no idea where to begin with the non-induction proof.
Consider this matrix: $$A=\begin{bmatrix}1&1\\1&0\end{bmatrix}.$$ Matrix $A$ is such that $$A^n=\begin{bmatrix}F_{n+1}&F_{n}\\F_{n}&F_{n-1}\end{bmatrix}.$$ Compute both $(A^n)^2$ and $A^{(2n)}$ (they are equal) and compare them entrywise: $$\begin{align}(A^n)^2&= \begin{bmatrix}F_{n+1}&F_{n}\\F_{n}&F_{n-1}\end{bmatrix} \cdot\begin{bmatrix}F_{n+1}&F_{n}\\F_{n}&F_{n-1}\end{bmatrix} \\ &=\begin{bmatrix}F^2_{n+1}+F^2_n &F_{n+1}F_{n}+F_{n}F_{n-1}\\ F_{n}F_{n+1}+F_{n-1}F_n &F^2_n+F^2_{n-1}\end{bmatrix} \\ &\equiv \begin{bmatrix}F_{2n+1}&F_{2n}\\F_{2n}&F_{2n-1}\end{bmatrix}=A^{(2n)}.\end{align}$$ So $$\begin{align}F_{2n}&=F_{n+1}F_n+F_{n-1}F_n=(F_{n+1}+F_{n-1})F_n=(F_{n+1}+F_{n-1})(F_{n+1}-F_{n-1})\\&=F^2_{n+1}-F^2_{n-1}.\end{align}$$