So here is what I have to prove by induction:
$2^n\gt(n+1)^2$ for $n\ge6$
So, first lets say $n=6$
$$2^6\gt(6+1)^2$$ $$64\ge49$$ Now, assume $n=k$ $$2^k\gt(k+1)^2\text{ for } k\ge6$$
Prove $n=k+1$ is true $$2^{k+1}>(k+2)^2$$ $$2^k *2> k^2+4x+4$$ We can replace $2^k$ with $(k+1)^2$ $$(k+1)^2*2>k^2+4x+4$$ $$k^2+2>4$$ $$k^2>2$$ Now, since $k\ge6$, $k^2$ must be greater than $2$ $$$$ So, my question is, did I do the proof correctly, or is there a more rigorous method to get this done?