Chapter 3 The Real Numbers.

Slides:



Advertisements
Similar presentations
Mathematical Induction
Advertisements

Introduction to Proofs
PROOF BY CONTRADICTION
Copyright © Cengage Learning. All rights reserved. CHAPTER 5 SEQUENCES, MATHEMATICAL INDUCTION, AND RECURSION SEQUENCES, MATHEMATICAL INDUCTION, AND RECURSION.
Elementary Number Theory and Methods of Proof
1 Mathematical Induction. 2 Mathematical Induction: Example  Show that any postage of ≥ 8¢ can be obtained using 3¢ and 5¢ stamps.  First check for.
Induction and recursion
1.  The set N = {1,2,3,4,……..} is known as natural numbers or the set of positive integers  The natural numbers are used mainly for :  counting  ordering.
CSE115/ENGR160 Discrete Mathematics 03/22/12 Ming-Hsuan Yang UC Merced 1.
EE1J2 - Slide 1 EE1J2 – Discrete Maths Lecture 12 Number theory Mathematical induction Proof by induction Examples.
1 Section 3.3 Mathematical Induction. 2 Technique used extensively to prove results about large variety of discrete objects Can only be used to prove.
CSE115/ENGR160 Discrete Mathematics 03/29/11 Ming-Hsuan Yang UC Merced 1.
Mathematical Induction
1 Mathematical Induction. 2 Mathematical Induction: Example  Show that any postage of ≥ 8¢ can be obtained using 3¢ and 5¢ stamps.  First check for.
Copyright © 2007 Pearson Education, Inc. Slide 8-1.
Induction and recursion
Methods of Proof & Proof Strategies
Induction and recursion
Chapter 6 Mathematical Induction
Mathematical Induction. F(1) = 1; F(n+1) = F(n) + (2n+1) for n≥ F(n) n F(n) =n 2 for all n ≥ 1 Prove it!
1 Introduction to Abstract Mathematics Chapter 4: Sequences and Mathematical Induction Instructor: Hayk Melikya 4.1- Sequences. 4.2,
Section 1.8. Section Summary Proof by Cases Existence Proofs Constructive Nonconstructive Disproof by Counterexample Nonexistence Proofs Uniqueness Proofs.
Foundations of Discrete Mathematics Chapters 5 By Dr. Dalia M. Gil, Ph.D.
Copyright © Zeph Grunschlag, Induction Zeph Grunschlag.
Section 3.3: Mathematical Induction Mathematical induction is a proof technique that can be used to prove theorems of the form:  n  Z +,P(n) We have.
CompSci 102 Discrete Math for Computer Science March 1, 2012 Prof. Rodger Slides modified from Rosen.
CS 103 Discrete Structures Lecture 13 Induction and Recursion (1)
Foundations of Discrete Mathematics Chapters 5 By Dr. Dalia M. Gil, Ph.D.
MAT 2720 Discrete Mathematics Section 2.2 More Methods of Proof Part II
Mathematical Induction Section 5.1. Climbing an Infinite Ladder Suppose we have an infinite ladder: 1.We can reach the first rung of the ladder. 2.If.
Slide Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
Mathematical Induction
Copyright © Zeph Grunschlag, Induction Zeph Grunschlag.
CS104:Discrete Structures Chapter 2: Proof Techniques.
Copyright © Cengage Learning. All rights reserved. Sequences and Series.
CompSci 102 Discrete Math for Computer Science March 13, 2012 Prof. Rodger Slides modified from Rosen.
Chapter 5. Section 5.1 Climbing an Infinite Ladder Suppose we have an infinite ladder: 1.We can reach the first rung of the ladder. 2.If we can reach.
1 Discrete Mathematical Mathematical Induction ( الاستقراء الرياضي )
Section 1.7. Section Summary Mathematical Proofs Forms of Theorems Direct Proofs Indirect Proofs Proof of the Contrapositive Proof by Contradiction.
1 Section 4.4 Inductive Proof What do we believe about nonempty subsets of N? Since  N, <  is well-founded, and in fact it is linear, it follows that.
3.3 Mathematical Induction 1 Follow me for a walk through...
Chapter 5 1. Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms.
Proof And Strategies Chapter 2. Lecturer: Amani Mahajoub Omer Department of Computer Science and Software Engineering Discrete Structures Definition Discrete.
CS151: Mathematical Foundations of Computing Mathematical Induction.
1 Proofs by Counterexample & Contradiction There are several ways to prove a theorem:  Counterexample: By providing an example of in which the theorem.
Chapter 1 Logic and Proof.
Chapter 1 Logic and Proof.
The Foundations: Logic and Proofs
Chapter 2 Sets and Functions.
Chapter 3 The Real Numbers.
Copyright © Cengage Learning. All rights reserved.
CSE15 Discrete Mathematics 03/22/17
Advanced Algorithms Analysis and Design
Induction and recursion
Proofs, Recursion and Analysis of Algorithms
The Foundations: Logic and Proofs
CS201: Data Structures and Discrete Mathematics I
Induction and recursion
CSE 373 Data Structures and Algorithms
Mathematical Induction I
Copyright © Cengage Learning. All rights reserved.
Elementary Number Theory & Proofs
Foundations of Discrete Mathematics
Induction Chapter
Advanced Analysis of Algorithms
Chapter 11: Further Topics in Algebra
Copyright © Cengage Learning. All rights reserved.
Mathematical Induction
Mathematical Induction
Copyright © Cengage Learning. All rights reserved.
Presentation transcript:

Chapter 3 The Real Numbers

Natural Numbers and Induction Section 3.1 Natural Numbers and Induction

Recall that denotes the set of positive integers, also called the natural numbers. = {1, 2, 3, 4, . . . } In this text we do not attempt to develop the properties of the natural numbers in a rigorous way from set theory. Rather, we assume familiarity with the usual arithmetic operations of addition and multiplication and the relation of “less than.” There is one additional property of that we assume as an axiom. It is based on the intuitive idea that each nonempty subset of must have a least member. Axiom 3.1.1 The Well-Ordering Property of If S is a nonempty subset of , then there exists an element m  S such that m  k for all k  S. In proving theorems about the natural numbers, we need a technique that does not depend on verifying the validity one number at a time. This is provided by the Principle of Mathematical Induction.

The Principle of Mathematical Induction Theorem 3.1.2 The Principle of Mathematical Induction Let P (n) be a statement that is either true or false for each n  . Then P (n) is true for all n  , provided that (a) P (1) is true, and (b) for each k  , if P (k) is true, then P (k + 1) is true. Proof: Our argument is a proof by contradiction using tautology (g) in Example 1.3.12. That is, we suppose that (a) and (b) hold but that P (n) is false for some n  . Let S = {n  : P (n) is false}. Then S is not empty and the well-ordering property guarantees the existence of an element m  S that is a least element of S. Since P (1) is true by hypothesis (a), 1  S, so that m > 1. It follows that m – 1 is also a natural number, and since m is the least element in S, we must have m – 1  S. But since m – 1  S, it must be that P (m – 1) is true. We now apply hypothesis (b) with k = m – 1 to conclude that P (k + 1) = P (m) is true. This implies that m  S, which contradicts our original choice of m. We conclude that P (n) must be true for all n  . 

The Principle of Mathematical Induction Theorem 3.1.2 The Principle of Mathematical Induction Let P (n) be a statement that is either true or false for each n  . Then P (n) is true for all n  , provided that (a) P (1) is true, and (b) for each k  , if P (k) is true, then P (k + 1) is true. In applying the Principle of Mathematical Induction, there are two steps: Verifying condition (a) is called the basis for induction. Verifying condition (b) is called the induction step. The assumption that P (k) is true in verifying part (b) is known as the induction hypothesis. Let’s look at a couple of examples of using mathematical induction.

Example 3.1.3 Prove that for every natural number n. Proof: Let P(n) be the statement Then P (1) asserts that P (2) asserts that and so on. In particular, we see that P(1) is true, and this establishes the basis for induction. To verify the induction step, we suppose that P(k) is true, where k   . That is, we assume Since we wish to conclude that P (k + 1) is true, we add k + 1 to both sides to obtain Now do some algebraic manipulation on the right-hand side of the equation: So P (k + 1) is true whenever P (k) is true, and by the principle of mathematical induction we conclude that P (n) is true for all n  .  This last equation is the statement P (k + 1).

Since the format of a proof using mathematical induction always consists of the same two steps (establishing the basis for induction and verifying the induction step), it is common practice to reduce some of the formalism by omitting explicit reference to the statement P (n). Example 3.1.4 Prove by induction that 7 n – 4 n is a multiple of 3, for all n  . Proof: Clearly, this is true when n = 1, since 7 1 – 41 = 3. Now let k  and suppose that 7 k – 4k is a multiple of 3. That is, 7 k – 4k = 3m for some m  . To do this, we use algebra to show how 7 k + 1 – 4k + 1 depends on 7 k – 4k . Comment: We now want to show that 7 k + 1 – 4k + 1 is a multiple of 3. It follows that 7 k + 1 – 4k + 1 = 7 k + 1 – 7  4k + 7  4k – 4  4k = 7(7 k – 4k ) + 3  4k = 7(3m ) + 3  4k = 3(7m + 4k ) Thus 7 k +1 – 4k +1 is also a multiple of 3, and by induction we conclude that 7 n – 4 n is a multiple of 3 for all n  .  Since m and k are natural numbers, so is 7m + 4k.

There is a generalization of the principle of mathematical induction that enables us to conclude that a given statement is true for all natural numbers sufficiently large. Theorem 3.1.6 Let m  and let P(n) be a statement that is either true or false for each n  m. Then P(n) is true for all n  m, provided that (a) P (m) is true, and (b) for each k  m, if P (k) is true, then P (k + 1) is true. Proof: The proof will use the original principle of induction (Theorem 3.1.2). For each r  , let Q (r) be the statement “P (r + m – 1) is true.” Then from (a) we know that Q (1) holds. Now let j  and suppose that Q ( j) holds. Since j  , That is, P ( j + m – 1) is true. j + m – 1 = m + ( j – 1)  m, so by (b), P ( j + m) must be true. Thus Q ( j + 1) holds and the induction step is verified. We conclude that Q (r) holds for all r  . Now if n  m, let r = n – m + 1, so that r  . Since Q (r) holds, P (r + m – 1) is true. But P (r + m – 1) is the same as P (n), so P (n) is true for all n  m. 