I was working on my homework assignment for one of my classes and I have come across a proof question that my classmates and I are finding difficult to answer.
The problem is asking us to prove that for Fibonacci numbers defined as $F_0 = 0$, $F_1 = 1$, and $F_n = F_{n-1} + F_{n-2}$, this holds true: $F_n \geq (\sqrt{2})^{n-2}$.
We are trying to prove this by induction, and the base case holds. However, we are having trouble with the inductive step. We started with assuming that $F_n \geq (\sqrt{2})^{n-2}$ holds true for n, but proving this for n+1 is proving (pun maybe intended) to be difficult.
We were playing around with the assumption and then played around with what we need to prove ($F_{n+1} \geq (\sqrt{2})^{n-1}$):
\begin{equation*} F_{n+1} \geq (\sqrt{2})^{n-1} \\ F_{n+1} = F_{n} + F_{n-1} \geq (\sqrt{2})^{n-1} \\ F_{n} + F_{n-1} \geq (\sqrt{2})^{n-1} \end{equation*}
We know that $F_n \geq (\sqrt{2})^{n-2}$ is true from the assumption and $(\sqrt{2})^{n-2} \leq (\sqrt{2})^{n-1}$, but we're not sure how to use those for the proof.
If you could help us with this, that would be great. Thanks in advance.