ryou00730
- 29
- 0
Homework Statement
The Fibonacci numbers are defined recusively by:
F(0) = 0, F(1) = 1, for n > 1, F(n) = F(n − 1) + F(n − 2).
Use strong induction to show that F(n) < 2^n for all n.
Homework Equations
n/a
The Attempt at a Solution
I use my base case as F(2) = F(1) + F(0) = 1 which is less than 2^n = 2^2 = 4. After that I am not sure where to go with strong induction...