Mathematical Induction Notes

Natural Numbers

  • If aa is a natural number, then a0a \geq 0.
  • Natural numbers start with zero.

Principle of Mathematical Induction (POVEM)

  • The statement to prove is:
    1+6+11++(5n1)+1=(n+1)(5n+2)21 + 6 + 11 + \dots + (5n - 1) + 1 = \frac{(n+1)(5n+2)}{2}

Two Parts of Mathematical Induction

  1. Basis Step: Take the least value of nn, which is 0.

    • If n=0n = 0, then P(0)P(0) is: 1=(0+1)(5(0)+2)21 = \frac{(0+1)(5(0)+2)}{2}1=1221 = \frac{1 \cdot 2}{2}1=11 = 1
      • Therefore, P(0)P(0) is true.
  2. Inductive Step: Prove that if the statement is true for kk, then it will be true for k+1k+1. Prove the implication: If P(k)P(k) is true, then P(k+1)P(k+1) is true.

Step 1: Inductive Hypothesis
  • Assume that P(k)P(k) is true, where n=kn = k.
    P(k):1+6+11++(5k+1)=(k+1)(5k+2)2P(k): 1 + 6 + 11 + \dots + (5k + 1) = \frac{(k+1)(5k+2)}{2}
Step 2: Prove P(k+1)P(k+1) is true
  • P(k+1):1+6+11++[5(k+1)+1]=((k+1)+1)[5(k+1)+2]2P(k+1): 1 + 6 + 11 + \dots + [5(k+1) + 1] = \frac{((k+1)+1)[5(k+1)+2]}{2}
    1+6+11++(5k+6)=(k+2)(5k+7)21 + 6 + 11 + \dots + (5k + 6) = \frac{(k+2)(5k+7)}{2}
  • Need to show that this is true.
  • The left side is: 1+6+11++(5k+6)1 + 6 + 11 + \dots + (5k + 6)
  • The term before 5k+65k + 6 is 5k+15k + 1 (since n=kn = k before n=k+1n = k+1).
    Hypothetically:
    1+6+11++(5k+1)+(5k+6)=(k+1)(5k+2)2+(5k+6)1 + 6 + 11 + \dots + (5k+1) + (5k+6) = \frac{(k+1)(5k+2)}{2} + (5k+6)
  • The sum 1+6+11++(5k+1)1 + 6 + 11 + \dots + (5k+1) equals (k+1)(5k+2)2\frac{(k+1)(5k+2)}{2} (from the inductive hypothesis).
  • So,
    (k+1)(5k+2)2+(5k+6)=(k+2)(5k+7)2\frac{(k+1)(5k+2)}{2} + (5k+6) = \frac{(k+2)(5k+7)}{2}
    (k+1)(5k+2)+2(5k+6)2=5k2+2k+5k+2+10k+122=5k2+17k+142\frac{(k+1)(5k+2) + 2(5k+6)}{2} = \frac{5k^2 + 2k + 5k + 2 + 10k + 12}{2} = \frac{5k^2 + 17k + 14}{2}
  • Now, we factor 5k2+17k+145k^2 + 17k + 14.
    5k2+17k+14=(k+2)(5k+7)5k^2 + 17k + 14 = (k+2)(5k+7)
  • Which is factorable to (k+2)(5k+7)(k+2)(5k+7).
  • Hence,
    5k2+17k+142=(k+2)(5k+7)2\frac{5k^2 + 17k + 14}{2} = \frac{(k+2)(5k+7)}{2}
  • Therefore, if P(k)P(k) is true, then P(k+1)P(k+1) is true. This means that the implication is true.
  • Thus, PP is true for all n0n \geq 0.

Starting with n = 1

  • If you start with n=1n = 1, then P(1)P(1) is: 1+6=(1+1)(5(1)+2)21 + 6 = \frac{(1+1)(5(1)+2)}{2}7=2727 = \frac{2 \cdot 7}{2}7=77 = 7
    • This is a true statement.
  • However, if n=1n=1, the left-hand side has two terms, not one.

Importance of Plugging in Values Carefully

  • When n=0n = 0, a0=5(0)+1=1a_0 = 5(0) + 1 = 1. This is the first term.
  • When n=1n = 1, a1=5(1)+1=6a_1 = 5(1) + 1 = 6. This is the second term.

Working with the Sum

  • Given 1+6+11++(5n+1)1 + 6 + 11 + \dots + (5n + 1), the next terms are found by adding 5 each time.
  • The terms are: 1, 6, 11, 16, 21, …
  • To go backward, the term before 5n+15n + 1 is 5n+15=5n45n + 1 - 5 = 5n - 4.
  • The term before 5n45n - 4 is 5n95n - 9.
  • The term before 5n95n - 9 is 5n145n - 14.

When n = k + 1

  • The last term is 5(k+1)+1=5k+65(k+1) + 1 = 5k + 6.
  • Therefore, the sum is 1+6+11++(5k+6)1 + 6 + 11 + \dots + (5k + 6).
  • For n=kn = k, the term is 5k+15k + 1.
  • So, 1+6+11++(5k+1)1 + 6 + 11 + \dots + (5k + 1).
  • If you stop at 5k+65k + 6, the term before is 5k+65=5k+15k + 6 - 5 = 5k + 1.