I’m pulling this question from Invitation to Discrete Mathematics by Jiri Matousek and Jaroslav Nesetril. $\def\pgr{\left(\frac{1+\sqrt{5}}{2}\right)}$
They ask in an exercise to use induction to show that for the nth term in the Fibonacci sequence, $F_n \leq \pgr^{n-1}$.
This was my solution:
Base Case: $n=0$
$F_0 = 1 \leq \pgr^{-1}$ (True)
Inductive Hypothesis: $F_n \leq \pgr^{n-1}$
Inductive Step: Proving $F_{n+1} \leq \pgr^{n}$
$F_{n+1} = F_{n} + F_{n-1}$
$F_{n} + F_{n-1}\leq \pgr^{n-1} + \pgr^{n-2}$
$F_{n} + F_{n-1}\leq \left(1+\frac{1+\sqrt{5}}{2}\right) \pgr^{n-2}$
$1+\frac{1+\sqrt{5}}{2} = \pgr^2$ (This is the golden ratio)
$F_{n} + F_{n-1} \leq \pgr^{n-2+2}$
$F_{n} + F_{n-1} \leq \pgr^{n}$
$F_{n+1} \leq \pgr^{n}$
Obviously this uses strong induction, since I have to assume that if $F_n$ has a property, $F_{n-1}$ also holds that property.
I couldn’t figure out how to do it with basic induction. Is there such a way?