Lecture Notes: Strong Induction

Preliminaries

Course Content

Tuesday Review

Questions:

Answers:

\[ \sum_{i=1}^{n} 2i \]

\[ = 2 \sum_{i=1}^{n} i = 2 \cdot \frac{n(n+1)}{2} = n(n+1)\]

Note that we substituted \( \sum_{i=1}^{n} i \) for its closed form, which we proved last class.

Thursday Review

Review Written Assignment 3.

Motivation for Strong Induction

Sequence Proof 1

\[\begin{aligned} a_3 &= a_1 + 2 a_2 = 1 + 2 \cdot 3 = 7 \\ a_4 &= a_2 + 2 a_3 = 3 + 2 \cdot 7 = 17 \\ a_5 &= a_3 + 2 a_4 = 7 + 2 \cdot 17 = 41 \\ \end{aligned}\] \[\begin{aligned} a_{n+1} &= a_{n-1} + 2 a_n \\ &= (2p + 1) + 2(2q + 1) & \text{ (substitute by I.H.)} \\ &= 2(p + 2q + 1) + 1 \end{aligned}\]

Sequence Proof 2

\[\begin{aligned} a_3 &= 3 a_2 - 2 a_1 = 3 \cdot 5 - 2 \cdot 3 = 9 \\ a_4 &= 3 a_3 - 2 a_2 = 3 \cdot 9 - 2 \cdot 5 = 17 \\ a_5 &= 3 a_4 - 2 a_3 = 3 \cdot 17 - 2 \cdot 9 = 33 \\ \end{aligned}\] \[\begin{aligned} P(1): a_1 &= 2^1 + 1 = 3 \\ P(2): a_2 &= 2^2 + 1 = 5 \\ \end{aligned}\] \[\begin{aligned} a_{n+1} &= 3a_n - 2a_{n-1} \\ &= 3(2^n + 1) - 2(2^{n-1} + 1) & \text{ (by the I.H.)} \\ &= 3 \cdot 2^n + 3 - 2^n - 2 \\ &= 2 \cdot 2^n + 1 \\ &= 2^{n+1} + 1 \\ \end{aligned}\]

Measuring Cup Proof (Needed for Lab)

\[\begin{aligned} P(11): 11 &= 11 \cdot 1 \\ P(12): 12 &= 4 \cdot 3 \\ P(13): 13 &= 4 \cdot 1 + 9 \cdot 1 \\ P(14): 14 &= 14 \cdot 1 \\ \end{aligned}\]

Coin Game

Coin Game Proof

Chocolate Game

I recommend reading the textbook’s description of another game and strong induction proof. This game involves breaking a chocolate bar, and trying to avoid getting left with the last piece.

Well-Ordering Principle

Fundamental Theorem of Arithmetic Proof

Closing Thoughts