5

I teach average-level high school students who have not had much beyond Algebra 1. I want to show them why induction makes sense. I want the sort of problem where it is intuitive that a statement is true for n=3 provided it is true for n=2, etc. All the ones in the textbooks I find involve proving conjectures that I feel one would not discover by looking at n=1, then n=2, then n=3, etc, or they are too hard/abstract for my students, or it is not immediately clear why one would think to do an inductive proof on them (e.g. the typical summation problems). I'm thinking about say, you are reading a textbook, and it says something like "and clearly that follows by induction"....so, the kind of theorem that naturally makes you think of an inductive proof. I found one that I like, which is the following:

Proving that $n!\geq 2^n$ for $n\geq 4$. I like this one because we can see it is true for 4, that is, we know that $$4\cdot3\cdot 2\cdot 1\geq 2\cdot 2\cdot 2 \cdot 2$$ and so then because $5\geq 2$, it follows from a preservation property of inequalities that $$5\cdot 4\cdot 3\cdot 2\cdot 1\geq 2\cdot 2\cdot 2\cdot 2\cdot 2$$

With this sort of example, the students can see why a proof by induction makes sense: we just keep using previous knowledge. We look at the case for $n=4$ and see it works, and then almost immediately from that we see that it works for $n=5$, etc.

The problem with this example is that is starts at $n=4$. I want something that starts at $n=1$ as the first induction example I give them, and I don't just want to do $$(n+4)!\geq 2^{n+4},$$ because I think that would confuse them more. Any ideas?

I have been to this question: Examples of mathematical induction but it did not help, as I needed a much simpler example for my students.

MathTeacher
  • 1,559
  • 1
    There are so many inequalities that come to my mind (and surely also to yours), that I don't think I get what you're looking for. For instance, is $\forall n\in \Bbb N(n<2^n)$ suitable? – Git Gud Dec 05 '13 at 07:35
  • I feel like I want something slightly less intuitive than that. At least for me, I don't think mentally that it is true because of induction - instead I think immediately of the curves $y=n$ and $y=2^n$, and based on what we covered, my students probably will too. – MathTeacher Dec 05 '13 at 07:37
  • 4
    What about the sum of the first $n$ numbers? And that of the first $n$ squares? Anyway, here's something that I think is exactly what you don't want, but I may be wrong. – Git Gud Dec 05 '13 at 07:38
  • 1
    I second the sum of the first $n$ numbers. You can add a story about Gauss as a child (when he was 7 years old ...) to captivate your audience. – J. W. Perry Dec 05 '13 at 07:39
  • There are a lot of induction proofs (on vertex/edge numbers) possible in graph theory. They also have the advantage of having to do with something "visual". – Hagen von Eitzen Dec 05 '13 at 07:44
  • The problem with the sum of the first n numbers is that, at least to me, that formula doesn't come to mind by looking at it for n=1, and THEN for n=2, and THEN for n=3 ...and my students already figured out a proof for it non-inductively. I have a similar reservation for the first n squares. Sorry that I am being a pain! – MathTeacher Dec 05 '13 at 07:44
  • 1
    And I'm going to avoid visual. Many of my students are not comfortable with visual things. – MathTeacher Dec 05 '13 at 07:45
  • 1
    Example 3, 4, 5 in the note? http://cims.nyu.edu/~kiryl/teaching/aa/review1.pdf –  Dec 05 '13 at 08:26
  • @John: Example 3 is a very good one! It has the same nature as the one the asker gave, but it starts with $n=1$ so in that way it is just what was asked for! Example 4 and 5 look similar to some of the suggestions in the question the asker linked to. – String Dec 05 '13 at 08:32
  • How do you make sure everyone in school knows your secret? Tell one person. – Blue Dec 05 '13 at 08:32
  • It may be a bit too difficult, but I really like the Blue Eyes puzzle. http://xkcd.com/blue_eyes.html http://xkcd.com/solution.html – vuur Dec 05 '13 at 09:49
  • 1
    @vuur: Good one - probably not the most convincing first encounter with induction as it seems counter intuitive, though being correct. – String Dec 05 '13 at 10:41
  • @John: example 3 was just the sort of thing I was looking for. Can you think of others at about that level? – MathTeacher Dec 08 '13 at 08:03
  • Actually your question is more on how to teach induction than on the actual mathematics; see http://matheducators.stackexchange.com/a/10034/1550 for an explanation that at once contains the general concept of induction and avoids the usual pitfalls with the standard explanation. The game semantics used there is explained in a little more detail at http://math.stackexchange.com/a/1782071. – user21820 Sep 15 '16 at 08:24

2 Answers2

3

Once a student spots a pattern, induction is a natural approach to formalize the proof. I would suggest looking up various interesting patterns (or ask your kids for some) and then get them to demonstrate that it is true via induction.

I would suggest the sum of the first $n$ odd numbers. If you play around with it, it is very easy to see that the sum is always a square number.

An induction proof is almost immediate. You can bring in the gauss reference as summing of an arithmetic progression. You can also give a pictorial proof of sequentially adding layers of a square.

I did this with middle school teachers and they loved it. They came up with several different ways of showing it, after seeing the pattern. They also tried finding a sum to give cubes, which is somewhat trickier. Visualizing peeling apart a cube is helpful here, if they are not mathematically inclined.

Calvin Lin
  • 68,864
2

How about showing that the number of subsets of a given set $A$ with $n$ elements is $2^n$? It is easy to exhaust $n=1$, $n=2$ and $n=3$ by simply writing them down and then the inductive argument is that when you add another element then you can form all the old subsets with or without that new element... This seems quite intuitive IMO.

A more number-related example which may be too simple could be to show that there are $10^n-1$ natural numbers with $n$ or less decimal digits. Maybe that seems too obvious but then you could show that there are $5^n$ with $n$ decimal digits or less NOT using even digits (noting that zero is even).

These were all I could come up with right now.

String
  • 18,395