Mathematical Induction http://localhost/~senning/courses/ma229/slides/induction/slide01.html 1 of 1 09/24/2003 07:28 AM prev | slides | next
Mathematical Induction
1 2 3 4 5 6 7 8 9
Mathematical Induction http://localhost/~senning/courses/ma229/slides/induction/slide02.html 1 of 1 09/24/2003 07:28 AM
Mathematical Induction
prev | slides | next
Using mathematical induction in the proof of a statement consists
- f a two-step process:
Show that the statement is true for a particular value of some parameter n. This is the basis step. 1. Assume the statement is true for any particular value of n and show that it is also true for n+1. This is the inductive step. 2. That’s it! What can be confusing about induction is how it differs from the fallicy of circular reasoning that we discussed earlier.
1 2 3 4 5 6 7 8 9
Mathematical Induction http://localhost/~senning/courses/ma229/slides/induction/slide03.html 1 of 1 09/24/2003 07:28 AM
Mathematical Induction
prev | slides | next
Example: Prove that 1+2+3+...+n = n(n+1)/2 is valid for positive integers n. Proof: Begin with the basis step. We need to prove that this statement is true for one particular value of n. The best one to use (because it makes the rest of our work easier) is usually the smallest value of n allowed by the statement, in this case n=1. We merely substitute this value of n into the statement and demonstrate that a true statement results. 1 = 1×(1+1)/2 = 2/2 = 1 Thus, we know that for one particular value, n=1, that the statement is true.
1 2 3 4 5 6 7 8 9
Mathematical Induction http://localhost/~senning/courses/ma229/slides/induction/slide04.html 1 of 1 09/24/2003 07:28 AM
Mathematical Induction
prev | slides | next
Next comes the inductive step. The key to this, (and what makes it different from circular reasoning) is that we will assume that the statement is true for some value of n and show that if that is true then it is true for n+1. We therefore assume that 1+2+3+...+n = n(n+1)/2 and need to show that this implies that 1+2+3+...+n+(n+1) = (n+1)(n+2)/2. Note that the inductive step is an application of modus ponens: p together with p q implies that q is true. We’ll start with 1+2+3+...+n = n(n+1)/2 and add n+1 to both sides.
1 2 3 4 5 6 7 8 9