-1

How can I deduce the following:

\begin{align*} F_{n}{^2} - F_{n+1}* F_{n-1}= +1 \text{ or} -1 \end{align*}

Just from knowing if $n$ is even or odd?

I have worked out by hand that if $n$ is odd, the result is +1 and if $n$ is even the result is -1, but I need to know how to work it out without just doing it.

I was given this beforehand and it may or may not be related:

\begin{align*} F_{n+1}{^2} - F_{n+2}* F_{n}= F_{n+1}*F_{n-1}-F_{n}{^2} \end{align*}

  • From what you were given beforehand you could have constructed a trivial induction proof, if only you tried. – TMM Apr 17 '17 at 20:32

1 Answers1

2

Hint:

$$ F_n^2-F_{n+1} F_{n-1} = -\det\begin{pmatrix}F_{n+1} & F_{n} \\ F_{n} & F_{n-1} \end{pmatrix}=-\det\begin{pmatrix}1 & 1 \\ 1 & 0\end{pmatrix}^n = (-1)^{n+1}.$$

Alternative Hint : If we set $\Delta_n = F_n^2-F_{n+1}F_{n-1}$ we have $$ \Delta_{n+1}=F_{n+1}^2-(F_{n+1}+F_n)F_n = F_{n+1}(F_{n+1}-F_n)-F_n^2 = -\Delta_n.$$

Jack D'Aurizio
  • 353,855