Suppose that we are trying to prove that $2^n > 10n + 9 $ $\forall n \geq 9$
Basis: $2^9 > 99$ is true.
Inductive Hypothesis: Assume that it is true that $n=k$ $\forall n \geq 9$
Then: $2^k > 10k + 9 $
Inductive step: Prove for $n=k+1$: $$2^{(k+1)} > 10(k+1) + 9 $$
This is where I get confused. Is it true that: $$2^{(k+1)} = 2^k\cdot 2 = 2^k +2^k > 2^k+2 > 10(k+1) +9$$
Is this how I string this inductive proof together? I feel like there is a gap in my understanding of whether or not this statement is true.