Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 5 1. Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms.

Similar presentations


Presentation on theme: "Chapter 5 1. Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms."— Presentation transcript:

1 Chapter 5 1

2 Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms

3 Section 5.1 3

4 Section Summary  Mathematical Induction  Examples of Proof by Mathematical Induction  Guidelines for Proofs by Mathematical Induction

5 Climbing an Infinite Ladder  Suppose we have an infinite ladder: o We can reach the first rung of the ladder. o If we can reach a particular rung of the ladder, then we can reach the next rung.  Can we reach every step on the ladder?

6 Principle of Mathematical Induction  Principle of Mathematical Induction: To prove that P(n) is true for all positive integers n, we complete these steps: o Basis Step: Show that P(1) is true. o Inductive Step: Show that P(k) → P(k + 1) is true for all positive integers k.  To complete the inductive step, assuming the inductive hypothesis that P(k) holds for an arbitrary integer k, show that must P(k + 1) be true. 6

7 Principle of Mathematical Induction  Climbing an Infinite Ladder Example: o BASIS STEP: By (1), we can reach rung 1. o INDUCTIVE STEP: Assume the inductive hypothesis that we can reach rung k. Then by (2), we can reach rung k + 1.  Hence, P(k) → P(k + 1) is true for all positive integers k. We can reach every rung on the ladder. 7

8 Important Points  Mathematical induction can be expressed as the rule of inference where the domain is the set of positive integers. In a proof by mathematical induction, we don’t assume that P(k) is true for all positive integers! We show that if we assume that P(k) is true, then P(k + 1) must also be true. Proofs by mathematical induction do not always start at the integer 1. In such a case, the basis step begins at a starting point b where b is an integer. Mathematical induction is valid because of the well ordering property (P( 1 ) ∧ ∀ k (P(k) → P(k + 1 ))) → ∀ n P(n),

9 How Mathematical Induction Works  Consider an infinite sequence of dominoes, labeled 1,2,3, …, where each domino is standing. Let P(n) be the proposition that the n th domino is knocked over. know that the first domino is knocked down, i.e., P(1) is true. We also know that if whenever the k th domino is knocked over, it knocks over the (k + 1) st domino, i.e, P(k) → P(k + 1) is true for all positive integers k. Hence, all dominos are knocked over. P(n) is true for all positive integers n.

10 Examples  Example: Show that: for all positive integers.  Solution: o BASIS STEP: P(1) is true since 1(1 + 1)/2 = 1. o INDUCTIVE STEP: Assume true for P(k). o The inductive hypothesis is o Under this assumption, o Hence, we have shown that P(k + 1) follows from P(k). Therefore the sum of the first n positive integers is

11 Examples  Example: Use mathematical induction to show that for all nonnegative integers n  Solution:  P(n): for all nonnegative integers n o BASIS STEP: P(0) is true since 2 0 = 1 = 2 1 − 1. This completes the basis step. o INDUCTIVE STEP: assume that P(k) is true for an arbitrary nonnegative integer k o 1 + 2 + 2 2 +· · ·+2 k = 2 k+1 − 1. o show that assume that P(k) is true, then P(k + 1) is also true. o 1 + 2 + 2 2 +· · ·+2 k + 2 k+1 = 2 (k+1)+1 − 1 = 2 k+2 − 1 o Under the assumption of P(k), we see that o 1 + 2 + 2 2 +· · ·+2 k + 2 k+1 = (1 + 2 + 2 2 +· · ·+2 k ) + 2 k+1 =(2 k+1 − 1) + 2 k+1 = 2 · 2 k+1 − 1= 2 k+2 − 1. o Because we have completed the basis step and the inductive step, by mathematical induction we know that P(n) is true for all nonnegative integers n. That is, 1 + 2+· · ·+2 n = 2 n+1 − 1 for all nonnegative integers n.

12  Example: Conjecture and prove correct a formula for the sum of the first n positive odd integers. Then prove your conjecture.  Solution: o We have: o 1= 1, o 1 + 3 = 4, o 1 + 3 + 5 = 9, o 1 + 3 + 5 + 7 = 16, o 1 + 3 + 5 + 7 + 9 = 25. o We can conjecture that the sum of the first n positive odd integers is n 2, o 1 + 3 + 5 + ∙∙∙+ (2 n − 1) + (2 n + 1) = n 2. Examples

13  P(n):1 + 3 + 5 + ∙∙∙+ (2n − 1) + (2n + 1) =n 2. o BASIS STEP: P(1) is true since 1 2 = 1. o INDUCTIVE STEP: P(k) → P(k + 1) for every positive integer k. o Assume the inductive hypothesis holds and then show that P(k) holds has well. o So, assuming P(k), it follows that: o Hence, we have shown that P(k + 1) follows from P(k). Therefore the sum of the first n positive odd integers is n 2. Inductive Hypothesis: 1 + 3 + 5 + ∙∙∙+ (2 k − 1) = k 2 1 + 3 + 5 + ∙∙∙+ (2 k − 1) + (2 k + 1) =[1 + 3 + 5 + ∙∙∙+ (2 k − 1)] + (2 k + 1) = k 2 + (2 k + 1) = k 2 + 2 k + 1 = ( k + 1) 2

14 Examples  Example: Use mathematical induction to prove that 2 n < n!, for every integer n ≥ 4.  Solution:  Let P(n) be the proposition that 2 n < n!. o BASIS STEP: P(4) is true since 2 4 = 16 < 4! = 24. o INDUCTIVE STEP: Assume P(k) holds, i.e., 2 k < k! for an arbitrary integer k ≥ 4. o To show that P ( k + 1 ) holds: 2 k+ 1 = 2∙2 k < 2 ∙ k ! ( by the inductive hypothesis) < ( k + 1 ) k ! = ( k + 1 )! o Therefore, 2 n < n! holds, for every integer n ≥ 4.

15 Examples  Example: Use mathematical induction to show that if S is a finite set with n elements, where n is a nonnegative integer, then S has 2 n subsets.  Solution:  P(n) be the proposition that a set with n elements has 2 n subsets. o Basis Step: P(0) is true, because the empty set has only itself as a subset and 2 0 = 1. o Inductive Step: Assume P(k) is true for an arbitrary nonnegative integer k. Inductive Hypothesis: For an arbitrary nonnegative integer k, every set with k elements has 2 k subsets. Let T be a set with k + 1 elements. Then T = S ∪ { a }, where a ∈ T and S = T − { a }. For each subset X of S, there are exactly two subsets of T, i.e., X and X ∪ {a}. By the inductive hypothesis S has 2 k subsets. Since there are two subsets of T for each subset of S, the number of subsets of T is 2 ∙2 k = 2 k+1. o Because we have completed the basis step and the inductive step, by mathematical induction if S is a finite set with n elements, where n is a nonnegative integer, then S has 2 n subsets.

16

17 Section 5.2

18 Section Summary  Strong Induction  Example Proofs using Strong Induction  Well-ordering property

19 Strong Induction  Strong Induction : To prove that P ( n ) is true for all positive integers n, where P ( n ) is a propositional function, complete two steps: o Basis Step: Verify that the proposition P(1) is true. o Inductive Step: Show the conditional statement [P(1) ∧ P(2) ∧ ∙∙∙ ∧ P(k)] → P(k + 1) holds for all positive integers k.  Strong Induction is sometimes called the second principle of mathematical induction or complete induction.

20 Strong Induction and the Infinite Ladder  Strong induction tells us that we can reach all rungs if: o We can reach the first rung of the ladder. o For every integer k, if we can reach the first k rungs, then we can reach the (k + 1)st rung.

21 Examples  Example: Suppose we can reach the first and second rungs of an infinite ladder, and we know that if we can reach a rung, then we can reach two rungs higher. Prove that we can reach every rung.  Solution: Prove the result using strong induction. o BASIS STEP: We can reach the first step. o INDUCTIVE STEP: The inductive hypothesis is that we can reach the first k rungs, for any k ≥ 2. We can reach the (k + 1)st rung since we can reach the (k − 1)st rung by the inductive hypothesis. o Hence, we can reach all rungs of the ladder.

22  Example: Show that if n is an integer greater than 1, then n can be written as the product of primes.  Solution: P(n) be the proposition that n can be written as the product of primes. o BASIS STEP: P(2) is true. 2 can be written as the product of itself. o INDUCTIVE STEP: o inductive hypothesis :P(j) is true for all integers j with 2 ≤ j ≤ k, that is, j can be written as the product of primes whenever j is a positive integer at least 2 and not exceeding k. o To complete the inductive step, prove P(k + 1) is true under the assumption. o There are two cases to consider, namely. o If k + 1 is prime, we immediately see that P(k + 1) is true. o Otherwise, k + 1 is composite and can be written as the product of two positive integers a and b with 2 ≤ a ≤ b < k + 1. Because both a and b are integers at least 2 and not exceeding k, we can use the inductive hypothesis to write both a and b as the product of primes. Thus, if k + 1 is composite, it can be written as the product of primes, namely, those primes in the factorization of a and those in the factorization of b. o Conclusion..

23 Examples  Example: Prove that every amount of postage of 12 cents or more can be formed using just 4-cent and 5-cent stamps.  Prove the result using Mathematical induction. o BASIS STEP: Postage of 12 cents can be formed using three 4-cent stamps. o INDUCTIVE STEP: assume P(k) is true. That is, postage of k cents can be formed using 4-cent and 5-cent stamps. o To complete the inductive step, assume P(k) is true, then P(k + 1) is also true where k ≥ 12. That is, if we can form postage of k cents, then we can form postage of k + 1 cents. So, assume the inductive hypothesis is true; o two cases, when at least one 4-cent stamp has been used and when no 4-cent stamps have been used. o First, suppose that at least one 4-cent stamp was used to form postage of k cents. Then we can replace this stamp with a 5-cent stamp to form postage of k + 1 cents. o But if no 4-cent stamps were used, we can form postage of k cents using only 5-cent stamps. Moreover, because k ≥ 12, we needed at least three 5-cent stamps to form postage of k cents. So, we can replace three 5-cent stamps with four 4-cent stamps to form postage of k + 1 cents. This completes the inductive step. o Conclusion…

24 Examples  Example: Prove that every amount of postage of 12 cents or more can be formed using just 4-cent and 5-cent stamps.  Prove the result using Strong induction. o BASIS STEP: Show that P(12), P(13), P(14), and P(15) are true. This completes the basis step. o INDUCTIVE STEP: The inductive hypothesis is the statement that P(j) is true for 12 ≤ j ≤ k, where k is an integer with k ≥ 15. o To complete the inductive step, assume that we can form postage of j cents, where 12 ≤ j ≤ k. Then show that under the assumption that P(k + 1) is true, we can also form postage of k + 1 cents. o Using the inductive hypothesis, we can assume that P(k − 3) is true because k − 3 ≥ 12, that is, we can form postage of k − 3 cents using just 4-cent and 5-cent stamps. To form postage of k + 1 cents, we need only add another 4-cent stamp to the stamps we used to form postage of k − 3 cents. That is, we have shown that if the inductive hypothesis is true, then P(k + 1) is also true. This completes the inductive step. o Conclusion…

25 Well-ordering property  The well-property property: every nonempty set of nonnegative integers has a least element. o Used to prove the validity of mathematical induction and strong induction  Mathematioc induction o If P(1) is true and P(k)->P(k+1) is true, then P(n) must be true for all integer n. o Proof by contradiction o Assume at least one positive integer for which P(n) is false, that is,the set S of positive integers for which P(n) is false is nonempty. o By well-ordering property, S has a least element m o m>1, then 0<m-1<m, hence, m-1 not in S o Then, P(m-1) must be true, then P(m-1)->P(m) is true which is a contradiction.

26 Which Form of Induction Should Be Used?  We can always use strong induction instead of mathematical induction. But there is no reason to use it if it is simpler to use mathematical induction. ( See page 335 of text.)  In fact, the principles of mathematical induction, strong induction, and the well-ordering property are all equivalent. ( Exercises 41 - 43 )  Sometimes it is clear how to proceed using one of the three methods, but not the other two.


Download ppt "Chapter 5 1. Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms."

Similar presentations


Ads by Google