5

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>$&gt; (k+1)k^2$</p>

<p>$= k^3 + k^2$</p>

<p>$&gt; 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?

4 Answers4

6

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.

  1. How to write a clear induction proof.

  2. The difference between weak and strong induction.

  3. 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?

  • Thanks, I will look at the resources you have provided. As for assuming what I am trying to prove, that style of statement was a sort of "house rule" we had in our class over the summer (Intro to Abstract). The prof tried to explain it as though we weren't proving the general case, we were proving the $nth$ case. But, if this is considered poorly written, then I will consider that for my next class. – Mr. Meeseeks Aug 12 '15 at 05:20
  • 1
    Nice work here, especially on the linked questions! – Hirshy Aug 12 '15 at 05:20
  • @DanielW.Farlow Your notes in the margin are identical to the ones I have in my notes (I did not include them in my post), for part (b). I still don't have anything click for me going from $=k^3 + k^2$ to $k^2 + 2k +1$ since $k \geq 4$. But, I will look at your resources and see what I can come up with. – Mr. Meeseeks Aug 12 '15 at 05:22
  • @kallixti That phraseology is really kind of a "sticky point"--that is, depending on the context in which you first encountered induction, it is possible the prof was largely trying to provide the scaffolding for understanding induction proofs in general in a sense (if that is at all reasonable). It's unfortunate that phrasing is used sometimes though because it really does muddle the waters (as it has here) and can serve as an educational impediment in the future. – Daniel W. Farlow Aug 12 '15 at 05:22
  • @Hirshy Thanks for the kind words! – Daniel W. Farlow Aug 12 '15 at 05:23
  • @DanielW.Farlow Finally, I appreciate the thoughtful feedback. I had a pretty bad prof for my intro/abstract class, and now I'm fearful that I'm not going to be as ready for Real Analysis as I would like. Your answer is very thorough, and much appreciated! – Mr. Meeseeks Aug 12 '15 at 05:23
  • @DanielW.Farlow One last finally- since I'm newer to MSE, I appreciate the suggestion that this be split into more than one post. I never really know where the threshold lies, and it seems like people get grumpy and down vote at the slightest misconception-- so I always kind of feel like I'm walking on eggshells for all posts I make. Thanks again! – Mr. Meeseeks Aug 12 '15 at 05:26
  • @kallixti I wouldn't worry too much about Real Analysis. Just simply take it as it comes. But to finish off your question--going from $k^3+k^2$ to $k^2+2k+1$...the reason for that is simply because you need to end up at $(k+1)^2$ on the right-hand side and the way you do that is by having $k^2+2k+1$ since $(k+1)^2=k^2+2k+1$. Hence, you take advantage of the fact that $k\geq 4$ to conclude that $k^3>2k+1$. Concluding that allows you to conclude that $k^3+k^2>k^2+2k+1$ which allows you to conclude that ... all the way until you get your desired expression. Make sense? – Daniel W. Farlow Aug 12 '15 at 05:26
  • @DanielW.Farlow Yes! Makes sense-- thank you! You just added $k^2$ to both sides... so simple... and so much frustration for like 30 minutes on my part. – Mr. Meeseeks Aug 12 '15 at 05:29
  • @kallixti Glad it makes sense now! And since you're relatively new to MSE, one thing I would encourage you to do is visit the meta site for MSE--see what is going on in terms of discussion and the like, practices concerning etiquette (like posting multiples questions within one question), etc. I see you already have accepted answers to almost all of your questions and that's good (assuming satisfactory answers exist), you know how to use $\rm\LaTeX$ and that's great, etc. You're well above the "average user" on MSE in my opinion. Good luck with real analysis! Glad I could help here. – Daniel W. Farlow Aug 12 '15 at 05:32
  • In part (b) the justification in the margin "(since $k \geq 4$)" to go from $k^3 + k^2 > k^2 + 2k + 1$ itself requires a proof (by induction) that $k^3 > 2k + 1$ when $k \geq 4$. – Junglemath Dec 20 '23 at 15:53
2

Regarding (a): even if your book tells you it should be done by induction, it is not needed here and IMO does nothing good to understand the principle of induction. When you're starting to learn maths on a higher level, induction often is one of the first and easiest methods of proving and thus is also used to learn the strict formality of a proof. This is missing in the proof for a), as the key step, using the induction hypothesis is never executed. Further I wouldn't "assume $n^2>n+1$ for all integers $n>^2$", as this is what you're trying to proof, but that might be some stilistic problem; just check your wording on this and compare with the notation and wording in your book.

Now moving on to (b):

in the inductive step you may (and should) use the induction hypothesis. For this question you assume, that $k!>k^2$ has already been proven up to some $k\in\mathbb N$. Thus you get: \begin{align*}(k+1)!&=k!\cdot (k+1) \tag{definition of $k!$} \\ &>k^2\cdot (k+1) \tag{induction hypothesis}\end{align*} It is also important to note, that $(k+1)>0$ for the inequality to hold. Now, where do we stand on solving the question? We have $$(k+1)!>k^2\cdot(k+1),$$ we want to have $$(k+1)!>(k+1)^2,$$ so now we have to manipulate $k^2\cdot(k+1)$ to get there. For this we will use question (a): \begin{align*}k^2\cdot (k+1)&>(k+1)\cdot (k+1) \tag{as $k^2>k+1$} \\ &=(k+1)^2\end{align*}

This completes the proof via mathematical induction.

In general, those first tasks on induction are very similar to one another and once you're used to them don't really count as "proving" something but seem more like simple calculating. This doesn't mean, that induction will always be easy and as structured as this question, e.g.:

Let $\mathcal{V}$ be a vector space over a field $\mathbb F$ and let $s\in\mathbb N$. If $\mathbb F$ is finite, further assume $s\leq |\mathbb F|$. Show: if $\mathcal U_1,\dots, \mathcal U_s$ are subspaces of $\mathcal V$ with $U_i\neq \mathcal V$, then $\mathcal V\neq \bigcup\limits_{i=1}^{s} \mathcal U_i$.

This can be proven with mathematical induction. Of course you shouldn't take on this question yet (for one because it is quite difficult for beginners, but it also is dealing with concepts of linear algebra and not real analysis), it just serves as an example that proofs by induction might differ from the well-structured, "always the same" questions you encounter at the beginning of your studies.

Feel free to ask questions, if something remains unclear!

Hirshy
  • 5,040
  • There are so many things wrong with part (a) I truly wonder how someone could assign that as an induction problem: 1) induction is not needed, 2) strong induction is certainly not needed, etc etc. OP has good answers here though so hopefully it will all gel fairly soon. – Daniel W. Farlow Aug 12 '15 at 05:15
1

You don't actually need induction here.

If $n \geq 4$, then $$\frac{n!}{n^2} = \frac{n \times (n - 1) \times \cdots \times 1}{n \times n} = \frac{(n - 1) \times (n - 2)}{n} \times (n - 3)! \geq 1 \times 1 = 1$$ because $$(n - 1) \times (n - 2) - n = n^2 - 4n + 2 = n(n - 4) + 2 \geq 2 > 0.$$

Zhanxiong
  • 14,040
  • Yeah, but the question in the text book says to use induction (as this is the induction chapter), so I have to use induction to figure it out (sorry, this is stated in my original question, perhaps not as clearly as it could be). Thanks, however! I like this proof... it's simple. – Mr. Meeseeks Aug 12 '15 at 04:20
  • Of course you can modify this proof to your induction framework, give it a try. – Zhanxiong Aug 12 '15 at 04:21
1

To get last part of (b) use problem (a) . Note that $K^3+K^2=K^2(K+1)>(K+1)(K+1)=(k+1)^2$(using part a)

Ripan Saha
  • 1,861
  • 14
  • 31