Use mathematical induction to prove that $n^2 > n + 1$ for all $n\geq2.$
I have proved that it is true for the initial case $n=2$ as $4>3$, and have assumed the statement to be true for $k^2 > k + 1$ where $k\geq 2$.
So I need to prove that $(k + 1)^2 >(k + 1) + 1$.
My thought process for this was first to expand $(k + 1)^2$, which equals $k^2 + 2k + 1.$ Therefore we have $k^2 + 2k + 1 > (k + 1) + 1.$
I noticed that there is a $k^2$ term and a $k+1$ term and we established from the initial equation that $k^2 > k + 1$. This left me with $2k + 1 > 1$, which we know is true as $k\geq 2$.
Is this an appropriate method of proving this statement to be true, or is it not advisable to split the inequality into multiple terms?
It looks nicer if you from one side of the expression derives the other: \begin{equation}(k+1)^2 = k^2+2k+1 \stackrel{\text{IH}}{>} k+1 + 2k +1 = k+2 + 2k > k+2 \end{equation}
But yes, your method is fine.