0

The problem is:

$$F_n \leqslant 2F_{n-1}\quad\text{for every integer} \quad n \geqslant 2.$$

I got the smallest case, I just don't know how to get the assumption and the rest of it

Daniel Fischer
  • 206,697

2 Answers2

1

You use complete induction: assume that $F_m \leqslant 2F_{m-1}$ for all $m<n$ and prove it for $n$:

$F_n = F_{n-1}+F_{n-2} \le 2F_{n-2}+2F_{n-3} = 2(F_{n-2}+F_{n-3}) = 2F_{n-1}$

You need to start by proving it for $n=2$ and $n=3$.

lhf
  • 216,483
0

Yes, you assume that $F_k \lt 2F_{k-1}$ and want to prove that $F_{k+1} \lt 2F_k$ So write $F_{k+1}= $ (what? you only know one thing about it) then apply what you know about the numbers to put an upper bound on this. You do need to know the Fibonacci numbers are positive. You might look at this answer

Ross Millikan
  • 374,822