Principle of Mathematical Induction
Let Pn be a statement involving the positive integer n. Ifthen Pn must be true for all positive integers n.
- P1 is true, and
- the truth of Pk implies the truth of Pk + 1, for every positive k,
Mathematical induction consists of two distinct parts. First, you must show that the formula is true for n = 1. The second part has two steps. The first step is to assume that the formula is valid for some integer k. The second step is to use this assumption to prove that the formula is valid for the next integer, k + 1. Combining the results of parts (1) and (2), you can conclude by mathematical induction that the formula is valid for all positive integer values of n.
|
Remarks: |
Prove: Sn = 3 + 7 + 11 + … + (4n -1) = n(2n +1) |
|
Show the statement works for |
S1 = 4(1) - 1 = 1(2(1) + 1)
|
|
Assume it works for some arbitrary integer k, and show that it works for k + 1. Utilize the assumption: substitute the RHS of the assumption for Sk. Now simplify both sides to see if the statement is true for k + 1.
|
Let Sk = 3 + 7 + 11 + … + (4k -1) = k(2k +1), then Sk + 1 = Sk + 4((k + 1) -1) = (k + 1)(2(k + 1) +1) k(2k +1) + 4((k + 1) -1) = (k + 1)(2(k + 1) +1) 2k2 + k + 4k + 4 -1 = (k + 1)(2k + 3) 2k2 +5k + 3 = 2k2 + 3k + 2k + 3 2k2 +5k + 3 = 2k2 + 3k + 2k + 3. |