SUNY Geneseo Department of Mathematics
Monday, March 29
Math 239 03
Spring 2021
Prof. Doug Baldwin
(No.)
Based on section 4.1 in the textbook and this discussion of induction proofs.
From the discussion: prove that the sum of the first n even natural numbers is n(n+1).
Induction seems like a good way to prove this, since it’s a proposition about the natural numbers, which is the set of numbers that induction works most naturally with, and sums often break down into smaller sums in ways that work well with induction.
To do an induction proof, we need two things:
We wrote the complete proof out in LaTeX, to see what an induction proof might look like when formally written out. You can get the source and PDF files from Canvas.
This example also demonstrated several new features of LaTeX:
\sum
command generates big-Sigma summation notation.\label
and \ref
commands allow LaTeX to do cross-references for you. Put \label{name}
inside some numbered environment that you want to reference elsewhere, and then use \ref{name}
to generate the corresponding number wherever you want it. In both commands, name
is a name you choose, and that will refer to the item with \label
inside it. See the LaTeX source for this proof for examples.The textbook’s Progress Check 4.3: prove that the sum of the first n natural numbers is n(n+1)/2.
We outlined an induction proof for this proposition. It’s an exercise for the reader to write it out formally in LaTeX or some similar tool if you want the practice.
For the basis step, let n = 1: Then the sum of the first 1 natural numbers is just 1, which equals 1(1+1)/2.
For the induction step, assume the sum of the first k natural numbers is k(k+1)/2, i.e., that 1 + 2 + 3 + … + k = k(k+1)/2. Then show that 1 + 2 + 3 + … + k + (k+1) = (k+1)(k+2)/2.
To do this, break up 1 + 2 + 3 + … + k + (k+1) as (1 + 2 + 3 + … + k) + (k+1). The first part of this equals k(k+1)/2, by the induction hypothesis. The complete sum is therefore k(k+1)/2 + (k+1).
Put these two terms over a common denominator and simplify to get (k+1)(k+2)/2.
…Is now ready in Canvas.
It exercises proof by cases and proofs by induction. See the handout for details.
Finish it by next Monday (April 5) and grade it by the following Monday (April 12).
Keep looking at examples of induction proofs.
No new reading, but review section 4.1 if you want.
Also keep trying induction proofs on your own in the induction proof discussion.