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!$
<p>$> (k+1)k^2$</p> <p>$= k^3 + k^2$</p> <p>$> k^2 + 2k + 1$</p> <p>$= (k + 1)^2$</p>
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?