I am working on induction problems to prep for Real Analysis for the fall semester. I wanted proof verification and editing suggestions for part (a), and assistance understanding part (b). For part (b), the portion that has the additional indentation is where I am unclear.
The principle of mathematical induction can be extended as follows. A list $P_m, >P_{m+1}, \cdots$ of propositions is true provided (i) $P_m$ is true, (ii) >$P_{n+1}$ is true whenever $P_n$ is true and $n \geq m$.
(a) Prove $n^2 > n + 1$ for all integers $n \geq 2$.
Assume for $P_n$: $n^2 > n + 1$, for all integers $n \geq 2$. Observe for $P _2$:
$P_2: 2^2=4 > 2+1 = 3$,
thus the basis step holds. Now, let $n=k$ such that $k^2 > k + 1$, and assume this also holds. We now consider the case $P_{k+1} : (k+1)^2 > (k+1) + 1$.
Observe:
$(k+1)^2 = k^2 + 2k + 1$
= $k(k+2) + 1$
Clearly, $k(k+2)+1$ must be greater than $(k+1)+1$. Thus, by the principle of mathematical induction, the case holds for all $n \geq 2$.
*I am aware that part (a) does not require induction to prove, but the book problem suggests doing so...
(b) Prove $n! > n^2$ for all integers $n \geq 4$.
Assume for $P_n$: $n!>n^2$ for all integers $n \geq 4$. Observe for $P_4$:
$P_4: 24 = 4! > 16 = 4^2$,
thus the basis step holds. Let $n=k$ such that $k! > k^2 $, and assume this also holds. We now consider the case $P_{k+1} : (k+1)! > (k+1)^2$. Observe:
$(k+1)! = (k+1)k!$
$> (k+1)k^2$
$= k^3 + k^2$
$> k^2 + 2k + 1$
$= (k + 1)^2$
I was able to write some of this on my own, and I used my book + internet to help me figure out how to write this out. First, I am not clear why we are adding $(k+1)$ to the right hand side (the $k^2$) side of the equation (or what that's allowed, really). Also, I'm not clear on the jump from $k^3+k^2>k^2 + 2k + 1$.
Additionally, while looking around MSE, I have noticed many people talk about induction with LHS and RHS notation. I have not seen this in any books--would someone be able to explain using that method as a form of bookkeeping, or be able to suggest a site or stack that could do that?
Note: Your question should really be two questions since they're completely distinct and separate. You are simply trying to cover too much for one single question on this site, but I'll help with what I can.
Before addressing both parts of your question, I would encourage you to read the following three posts because I think they would go a long way in helping you with induction proofs in general.
How to write a clear induction proof.
The difference between weak and strong induction.
Use of LHS/RHS notation or terminology in an induction answer.
Now on to your question(s).
Part (a): Your write-up here is really struggling in a number of ways. I'm going to be straight with you--your statement of strong induction is sloppy (you don't actually need strong induction even if you do use an inductive argument which is why I included (2) above) and your inductive "proof" never even uses the inductive hypothesis. See (1) above for how to actually write a clear induction proof; this will more or less force you to understand how the proof actually works, where you use the inductive hypothesis, etc. Also, as Hirshy notes, you actually assume what you are trying to prove (you do this again in part (b)). Regardless, the following is one way you could structure the main part of your induction proof for part (a): \begin{align} (k+1)^2&= \color{blue}{k^2}+2k+1\tag{expand}\\[0.5em] &\color{blue}{> (k+1)}+2k+1\tag{by inductive hypothesis}\\[0.5em] &= 3k+2\tag{simplify}\\[0.5em] &> k+2\tag{since $k\geq 2$}\\[0.5em] &= (k+1)+1.\tag{simplify} \end{align} Did you see how that worked? Can you see how the inductive hypothesis is used in the part highlighted with $\color{blue}{\mathrm{blue}}$?
Part (b): The part you have indented is actually not too bad at all when you actually write out what is happening and why at each step; nonetheless, you still need to clean up the beginning, as you are again assuming what you are trying to prove. The goal here is to move from the left-hand side (LHS) of the statement $P_{n+1}$ to the right-hand side (RHS) of $P_{n+1}$. To that end, note the following (the indented steps have explanatory notes in the margin now): \begin{align} (k+1)! &= (k+1)k!\tag{by definition}\\[0.5em] &> (k+1)k^2\tag{by induction hypothesis}\\[0.5em] &= k^3+k^2\tag{expand}\\[0.5em] &> k^2+2k+1\tag{since $k\geq 4$}\\[0.5em] &= (k+1)^2.\tag{factor} \end{align} Can you see how all of that worked?