Principle of Mathematical Induction Notes

Principle of Mathematical Induction

Recall

  • Sequence: 1, 4, 7, 10, 13, …

  • an=3n2a_n = 3n - 2

  • Sn=n2(3n1)S_n = \frac{n}{2}(3n - 1)

  • Examples:

    • a1=3(1)2=1a_1 = 3(1) - 2 = 1

    • a2=3(2)2=4a_2 = 3(2) - 2 = 4

    • a3=3(3)2=7a_3 = 3(3) - 2 = 7

    • a4=3(4)2=10a_4 = 3(4) - 2 = 10

    • a5=3(5)2=13a_5 = 3(5) - 2 = 13

    • S2=22(3(2)1)=5S_2 = \frac{2}{2}(3(2) - 1) = 5

    • S3=32(3(3)1)=12S_3 = \frac{3}{2}(3(3) - 1) = 12

    • S1=12(3(1)1)=1S_1 = \frac{1}{2}(3(1) - 1) = 1

Take Note!

  • A rule, pattern, or formula that seems to work for several values of nn cannot be simply decided as valid for all values of nn without a legitimate proof.

  • Mathematical Induction is a technique for proving a statement (theorem or formula) that is asserted about every natural number.

Observe the Following Sums of Odd Numbers

  • S1=1=12S_1 = 1 = 1^2

  • S2=1+3=4=22S_2 = 1 + 3 = 4 = 2^2

  • S3=1+3+5=9=32S_3 = 1 + 3 + 5 = 9 = 3^2

  • S4=1+3+5+7=16=42S_4 = 1 + 3 + 5 + 7 = 16 = 4^2

  • S5=1+3+5+7+9=25=52S_5 = 1 + 3 + 5 + 7 + 9 = 25 = 5^2

  • Sum of the first nn odd numbers:

    • Sn=1+3+5+7+9++(2n1)=n2S_n = 1 + 3 + 5 + 7 + 9 + \cdots + (2n - 1) = n^2

The Principle of Mathematical Induction

  • Let P(n)P(n) be a statement involving the positive integers.

  • If:

    1. P(1)P(1) is true, and

    2. For all positive integers kk, the truth of P(k)P(k) implies the truth of P(k+1)P(k + 1)

  • Then the statement P(n)P(n) must be true for all positive integers nn.

Steps in Mathematical Induction

  1. Base Case: Verify if the formula is true for P(1)P(1).

  2. Induction Hypothesis: Assume that the formula is true for n=kn = k.

  3. Induction Step: Prove that the formula is true for the next integer k+1k + 1.

Example 1: Prove P(n)=1+3+5+7+9++(2n1)=n2P(n) = 1 + 3 + 5 + 7 + 9 + \cdots + (2n - 1) = n^2

  1. Base Case: Verify if the formula is true for P(1)P(1).

    • 2(1)1=122(1) - 1 = 1^2

    • 21=12 - 1 = 1

    • 1=11 = 1

    • P(1) is true\therefore P(1) \text{ is true}

  2. Induction Hypothesis: Assume that the formula is true for n=kn = k.

    • 1+3+5+7+9++(2k1)=k21 + 3 + 5 + 7 + 9 + \cdots + (2k - 1) = k^2

  3. Induction Step: Prove that the formula is true for the next integer k+1k + 1.

    • 1+3+5+7+9++(2k1)+2(k+1)1=(k+1)21 + 3 + 5 + 7 + 9 + \cdots + (2k - 1) + 2(k + 1) - 1 = (k + 1)^2

    • k2+2(k+1)1=(k+1)2k^2 + 2(k + 1) - 1 = (k + 1)^2

    • k2+2k+21=(k+1)2k^2 + 2k + 2 - 1 = (k + 1)^2

    • k2+2k+1=(k+1)2k^2 + 2k + 1 = (k + 1)^2

    • (k+1)2=(k+1)2(k + 1)^2 = (k + 1)^2

  • Conclusion: P(n)P(n) is true for every natural number, N\mathbb{N}.

Example 2: Use mathematical induction to prove 2+4+6++2n=n(n+1)2 + 4 + 6 + \cdots + 2n = n(n + 1).

  1. Base Case: Verify if the formula is true for P(1)P(1).

    • 2(1)=1(1+1)2(1) = 1(1 + 1)

    • 2=1(2)2 = 1(2)

    • 2=22 = 2

    • P(1) is true\therefore P(1) \text{ is true}

  2. Induction Hypothesis: Assume that the formula is true for n=kn = k.

    • 2+4+6++2k=k(k+1)2 + 4 + 6 + \cdots + 2k = k(k + 1)

  3. Induction Step: Prove that the formula is true for the next integer k+1k + 1.

    • 2+4+6++2k+2(k+1)=(k+1)((k+1)+1)2 + 4 + 6 + \cdots + 2k + 2(k + 1) = (k + 1)((k + 1) + 1)

    • k(k+1)+2(k+1)=(k+1)(k+2)k(k + 1) + 2(k + 1) = (k + 1)(k + 2)

    • k2+k+2k+2=(k+1)(k+2)k^2 + k + 2k + 2 = (k + 1)(k + 2)

    • k2+3k+2=(k+1)(k+2)k^2 + 3k + 2 = (k + 1)(k + 2)

    • (k+1)(k+2)=(k+1)(k+2)(k + 1)(k + 2) = (k + 1)(k + 2)

  • Conclusion: P(n)P(n) is true for every natural number, N\mathbb{N}.

Example 3: Given {3, 9, 15, 21, …}, write an expression to represent the nthn^{th} term of the sequence, then find the formula for the sum of the first nn terms, then prove that the two expressions are true using mathematical induction.

  • a<em>n=a</em>1+(n1)da<em>n = a</em>1 + (n - 1)d

  • an=3+(n1)(6)a_n = 3 + (n - 1)(6)

  • an=3+6n6a_n = 3 + 6n - 6

  • an=6n3a_n = 6n - 3

  • S<em>n=n2(a</em>1+an)S<em>n = \frac{n}{2}(a</em>1 + a_n)

  • Sn=n2(3+6n3)S_n = \frac{n}{2}(3 + 6n - 3)

  • Sn=n2(6n)S_n = \frac{n}{2}(6n)

  • Sn=3n2S_n = 3n^2

  • Statement: 3+9+15+21++(6n3)=3n23 + 9 + 15 + 21 + \cdots + (6n - 3) = 3n^2

Base Case:
  • Verify if the formula is true for P(1)P(1).

  • 6(1)3=3(1)26(1) - 3 = 3(1)^2

  • 63=3(1)6 - 3 = 3(1)

  • 3=33 = 3

  • P(1) is true\therefore P(1) \text{ is true}

Induction Step:
  • Assume that the formula is true for n=kn = k.

  • 3+9+15+21++(6k3)=3k23 + 9 + 15 + 21 + \cdots + (6k - 3) = 3k^2

  • Prove that the formula is true for the next integer k+1k + 1.

  • 3+9+15+21++(6k3)+6(k+1)3=3(k+1)23 + 9 + 15 + 21 + \cdots + (6k - 3) + 6(k + 1) - 3 = 3(k + 1)^2

  • 3k2+6(k+1)3=3(k+1)23k^2 + 6(k + 1) - 3 = 3(k + 1)^2

  • 3k2+6k+63=3(k+1)23k^2 + 6k + 6 - 3 = 3(k + 1)^2

  • 3k2+6k+3=3(k+1)23k^2 + 6k + 3 = 3(k + 1)^2

  • 3(k2+2k+1)=3(k+1)23(k^2 + 2k + 1) = 3(k + 1)^2

  • 3(k+1)2=3(k+1)23(k + 1)^2 = 3(k + 1)^2

  • Conclusion: P(n)P(n) is true for every natural number, N\mathbb{N}.

Example 4: Use mathematical induction to prove i=1n2i=2(2n1)\sum_{i=1}^{n} 2^i = 2(2^n - 1).

Base Case:
  • Verify if the formula is true for P(1)P(1).

  • 21=2(211)2^1 = 2(2^1 - 1)

  • 2=2(21)2 = 2(2 - 1)

  • 2=22 = 2

  • P(1) is true\therefore P(1) \text{ is true}

Induction Hypothesis:
  • Assume that the formula is true for n=kn = k.

  • 2+4+8++2k=2(2k1)2 + 4 + 8 + \cdots + 2^k = 2(2^k - 1)

Induction Step:
  • Prove that the formula is true for the next integer k+1k + 1.

  • 2+4+8++2k+2k+1=2(2k+11)2 + 4 + 8 + \cdots + 2^k + 2^{k+1} = 2(2^{k+1} - 1)

  • 2(2k1)+2k+1=2(2k+11)2(2^k - 1) + 2^{k+1} = 2(2^{k+1} - 1)

  • 2k+12+2k+1=2(2k+11)2^{k+1} - 2 + 2^{k+1} = 2(2^{k+1} - 1)

  • 2Imes2k+12=2(2k+11)2 Imes 2^{k+1} - 2 = 2(2^{k+1} - 1)

  • 2k+22=2k+222^{k+2} - 2 = 2^{k+2} - 2

  • 2(2k+11)=2(2k+11)2(2^{k+1} -1) = 2(2^{k+1} - 1)

  • Conclusion: P(n)P(n) is true for every natural number, N\mathbb{N}.

Exercise

  • Use mathematical induction to prove 1+4+42++4n1=4n131 + 4 + 4^2 + \cdots + 4^{n-1} = \frac{4^n - 1}{3}.