Principle of Mathematical Induction Notes
Principle of Mathematical Induction
Recall
Sequence: 1, 4, 7, 10, 13, …
an=3n−2
Sn=2n(3n−1)
Examples:
a1=3(1)−2=1
a2=3(2)−2=4
a3=3(3)−2=7
a4=3(4)−2=10
a5=3(5)−2=13
S2=22(3(2)−1)=5
S3=23(3(3)−1)=12
S1=21(3(1)−1)=1
Take Note!
A rule, pattern, or formula that seems to work for several values of n cannot be simply decided as valid for all values of n 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=12
S2=1+3=4=22
S3=1+3+5=9=32
S4=1+3+5+7=16=42
S5=1+3+5+7+9=25=52
Sum of the first n odd numbers:
The Principle of Mathematical Induction
Steps in Mathematical Induction
Base Case: Verify if the formula is true for P(1).
Induction Hypothesis: Assume that the formula is true for n=k.
Induction Step: Prove that the formula is true for the next integer k+1.
Example 1: Prove P(n)=1+3+5+7+9+⋯+(2n−1)=n2
Base Case: Verify if the formula is true for P(1).
Induction Hypothesis: Assume that the formula is true for n=k.
Induction Step: Prove that the formula is true for the next integer k+1.
1+3+5+7+9+⋯+(2k−1)+2(k+1)−1=(k+1)2
k2+2(k+1)−1=(k+1)2
k2+2k+2−1=(k+1)2
k2+2k+1=(k+1)2
(k+1)2=(k+1)2
Example 2: Use mathematical induction to prove 2+4+6+⋯+2n=n(n+1).
Base Case: Verify if the formula is true for P(1).
Induction Hypothesis: Assume that the formula is true for n=k.
Induction Step: Prove that the formula is true for the next integer k+1.
2+4+6+⋯+2k+2(k+1)=(k+1)((k+1)+1)
k(k+1)+2(k+1)=(k+1)(k+2)
k2+k+2k+2=(k+1)(k+2)
k2+3k+2=(k+1)(k+2)
(k+1)(k+2)=(k+1)(k+2)
Example 3: Given {3, 9, 15, 21, …}, write an expression to represent the nth term of the sequence, then find the formula for the sum of the first n terms, then prove that the two expressions are true using mathematical induction.
a<em>n=a</em>1+(n−1)d
an=3+(n−1)(6)
an=3+6n−6
an=6n−3
S<em>n=2n(a</em>1+an)
Sn=2n(3+6n−3)
Sn=2n(6n)
Sn=3n2
Statement: 3+9+15+21+⋯+(6n−3)=3n2
Base Case:
Verify if the formula is true for P(1).
6(1)−3=3(1)2
6−3=3(1)
3=3
∴P(1) is true
Induction Step:
Assume that the formula is true for n=k.
3+9+15+21+⋯+(6k−3)=3k2
Prove that the formula is true for the next integer k+1.
3+9+15+21+⋯+(6k−3)+6(k+1)−3=3(k+1)2
3k2+6(k+1)−3=3(k+1)2
3k2+6k+6−3=3(k+1)2
3k2+6k+3=3(k+1)2
3(k2+2k+1)=3(k+1)2
3(k+1)2=3(k+1)2
Conclusion: P(n) is true for every natural number, N.
Example 4: Use mathematical induction to prove ∑i=1n2i=2(2n−1).
Base Case:
Verify if the formula is true for P(1).
21=2(21−1)
2=2(2−1)
2=2
∴P(1) is true
Induction Hypothesis:
Induction Step:
Prove that the formula is true for the next integer k+1.
2+4+8+⋯+2k+2k+1=2(2k+1−1)
2(2k−1)+2k+1=2(2k+1−1)
2k+1−2+2k+1=2(2k+1−1)
2Imes2k+1−2=2(2k+1−1)
2k+2−2=2k+2−2
2(2k+1−1)=2(2k+1−1)
Conclusion: P(n) is true for every natural number, N.
Exercise