Question: Prove $2^n > n^2$ for $n > 4$
Going to fast forward to my problem so:
Base case: $n = 5$ true
Induction step:
Suppose true for $n = k > 4$ true, i.e. $2^k > k^2$. Now consider $n = k+1$:
$$\begin{align} 2^{k+1} &= 2(2^k) \\ &> 2(k^2) &\text{(from supposition)} \\ &= k^2 + k^2 \\ &> k^2 + 2k + 1 &\color{red}{\text{(since }k^2 > 2k + 1\text{)}} \\ &= (k+1)^2 \end{align}$$
Hence true for $n = k+1$.
For the claim in red, how do I go about showing this? I can either do it: graphically, or algebraically (i.e. consider the derivatives of $y = k^2$ and $y = 2k+1$ and show that one grows faster), or redefine my whole approach to the question. I'm unsure about these little details :(