I have fibonacci numbers defined as such:
$$ f(n) = f(n-1) + f(n-2)$$with$$ f(0) = 0 $$$$f(1) = 1$$
I have to prove that $$ F(n) \geq 1.5^{n-1}, n \geq 6$$
Base Case:
$$ f(6) = 8 \geq (1.5)^5 = 7.6 $$ Base holds
Inductive hypothesis $$ k \geq 6 $$$$ f(k) \geq (1.5)^{k-1} $$
Inductive Step
Here is how I have started, any hints or pointers on how to continue are appreciated
$$ f(k-1) \geq (1.5)^{k+1-1}$$ $$ f(k) + f(k-1) = (1.5)^{k-1} + (1.5)^{k-2}$$ now I think where I want to go from here is to expand the right side of this equation out, but I am unsure how to do this.