Mathematical Induction (cont.)

Slides:



Advertisements
Similar presentations
Copyright © Cengage Learning. All rights reserved.
Advertisements

Because I said so… Objective: To identify and use inductive and deductive reasoning.
Mathematical Induction
Geometry Section 1.1 Patterns and Inductive Reasoning
Chapter 4 Sequences and Mathematical Induction. 4.2 Mathematical Induction.
The Nature of Mathematical Reasoning
Mathematical induction Isaac Fung. Announcement ► Homework 1 released ► Due on 6 Oct 2008 (in class)
Proofs, Recursion and Analysis of Algorithms Mathematical Structures for Computer Science Chapter 2 Copyright © 2006 W.H. Freeman & Co.MSCS SlidesProofs,
– Alfred North Whitehead,
Chapter 3. Mathematical Reasoning 3.1 Methods of proof A theorem is a statement that can be shown to be true. A proof is to demonstrate that a theorem.
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
Inductive Reasoning.  Reasoning based on patterns that you observe  Finding the next term in a sequence is a form of inductive reasoning.
Logic: Connectives AND OR NOT P Q (P ^ Q) T F P Q (P v Q) T F P ~P T F
So far we have learned about:
1 Mathematical Induction. 2 Mathematical Induction: Example  Show that any postage of ≥ 8¢ can be obtained using 3¢ and 5¢ stamps.  First check for.
Discrete Structures Chapter 5: Sequences, Mathematical Induction, and Recursion 5.2 Mathematical Induction I [Mathematical induction is] the standard proof.
Chapter 10 Sequences, Induction, and Probability Copyright © 2014, 2010, 2007 Pearson Education, Inc Mathematical Induction.
Copyright © Cengage Learning. All rights reserved.
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.
1 Strong Mathematical Induction. Principle of Strong Mathematical Induction Let P(n) be a predicate defined for integers n; a and b be fixed integers.
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.
Sequences and Series (T) Students will know the form of an Arithmetic sequence.  Arithmetic Sequence: There exists a common difference (d) between each.
Lecture 9. Arithmetic and geometric series and 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!
CSNB143 – Discrete Structure Topic 5 – Induction Part I.
Introduction to Geometric Proof Logical Reasoning and Conditional Statements.
1 CMSC 250 Chapter 4, con't., Inductive Proofs. 2 CMSC 250 Description l Inductive proofs must have: –Base case: where you prove that what it is you are.
Reasoning and Conditional Statements Advanced Geometry Deductive Reasoning Lesson 1.
1.1 Introduction to Inductive and Deductive Reasoning
Honors Geometry Intro. to Deductive Reasoning. Reasoning based on observing patterns, as we did in the first section of Unit I, is called inductive reasoning.
Geometry Honors Section 2. 2
Thinking Mathematically Problem Solving and Critical Thinking.
1.2 Inductive Reasoning. Inductive Reasoning If you were to see dark, towering clouds approaching what would you do? Why?
CompSci 102 Discrete Math for Computer Science March 1, 2012 Prof. Rodger Slides modified from Rosen.
Methods of Proof Dr. Yasir Ali. Proof A (logical) proof of a statement is a finite sequence of statements (called the steps of the proof) leading from.
2-6 Proving Angles Congruent. Theorem: a conjecture or statement that you prove true.
Mathematical Induction
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.
Mathematical Induction Thinking Skill: Develop Confidence in Reason Warm Up: Find the k+1 term (P k+1 ) 1) 2)
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 a particular.
1 Discrete Mathematical Mathematical Induction ( الاستقراء الرياضي )
1.2 Reasoning Mathematically Two Types of Reasoning Remember to Silence Your Cell Phone and Put It in Your Bag!
Patterns and Inductive Reasoning. Inductive reasoning is reasoning that is based on patterns you observe. If you observe a pattern in a sequence, you.
Mathematical Induction. The Principle of Mathematical Induction Let S n be a statement involving the positive integer n. If 1.S 1 is true, and 2.the truth.
Chapter 1 Logic and Proof.
Reasoning and Proof Unit 2.
Chapter 4 (Part 1): Induction & Recursion
Chapter 1 Inductive and deductive reasoning processes Estimation
CST 24 – Logic.
Induction and recursion
2.6 Geometric Proof Objectives: Vocabulary: Write two-column proofs.
CSE373: Data Structures and Algorithms Lecture 2: Proof by Induction
Induction and recursion
Section 16.4: Reasoning and Proof
Follow me for a walk through...
Two Column Proofs PROOF Geometry.
Copyright © Cengage Learning. All rights reserved.
Applied Discrete Mathematics Week 9: Integer Properties
Mathematical Induction
Induction Chapter
Advanced Analysis of Algorithms
Chapter 11: Further Topics in Algebra
Mathematical Induction
1.1 Introduction to Inductive and Deductive Reasoning
Mathematical Induction
Pearson Unit 1 Topic 2: Reasoning and Proof 2-4: Deductive Reasoning Pearson Texas Geometry ©2016 Holt Geometry Texas ©2007.
Chapter 2: Geometric Reasoning
Copyright © Cengage Learning. All rights reserved.
Presentation transcript:

Mathematical Induction (cont.)

Example (of sum of the first n integers). In a round-robin tournament each of the n teams plays every other team exactly once. What is the total number of games played? 2 ways to solve: 1) Each of the n teams plays n-1 games; this gives a total of n(n-1) games. But each game was counted exactly twice; Thus, the total number of games is n(n-1)/2.

Example (of sum of the first n integers). 2) Team 1 plays n-1 games; Team 2 plays n-2 games (not counting the game with team 1); Team 3 plays n-3 games (not counting the games with teams 1 and 2); …. Team n-1 plays 1 game with team n (not including the games counted before). Thus, the total number of games is 1+2+…+(n-2)+(n-1) = n(n-1)/2 by Theorem 1.

Example (of sum of a geometric sequence). If all of your ancestors were distinct, what would be the total number of your ancestors for the past 40 generations? Solution: The total number is 2+4+8+…+239+240=2·(20+21+22+…+238+239) (1) by Theorem 2

Example (of sum of a geometric sequence). Assuming that each generation represents 30 years, how long is 40 generations? Answer: 30·40 = 1200 years (2) The total number of people ever lived is approximately 10 billion, which equals 1010 people. (3) What is the conclusion based on (1), (2), (3)?

Connection of Mathematical Induction to traditional principles of Induction and Deduction Steps of logical reasoning: Conjecture a general principle after observing it in a large number of specific instances. (traditional induction) Prove the conjecture by mathematical induction. Use the (proved) general principle to infer a conclusion for any specific instance. (traditional deduction)

Proving a divisibility property by mathematical induction Proposition: For any integer n≥1, 7n - 2n is divisible by 5. (P(n)) Proof (by induction): 1) Basis step: The statement is true for n=1: (P(1)) 71 – 21 = 7 - 2 = 5 is divisible by 5. 2) Inductive step: Assume the statement is true for some k≥1 (P(k)) (inductive hypothesis) ; show that it is true for k+1 . (P(k+1))

Proving a divisibility property by mathematical induction Proof (cont.): We are given that P(k): 7k - 2k is divisible by 5. (1) Then 7k - 2k = 5a for some aZ . (by definition) (2) We need to show: P(k+1): 7k+1 - 2k+1 is divisible by 5. (3) 7k+1 - 2k+1 = 7·7k - 2·2k = 5·7k + 2·7k - 2·2k = 5·7k + 2·(7k - 2k) = 5·7k + 2·5a (by (2)) = 5·(7k + 2a) which is divisible by 5. (by def.) Thus, P(n) is true by induction. ■

Proving inequalities by mathematical induction Theorem: For all integers n≥4, 2n < n! . (P(n)) Proof (by induction): 1) Basis step: The statement is true for n=4: (P(4)) 24 = 16 < 24 = 4! . 2) Inductive step: Assume the statement is true for some k≥4 ; (P(k)) show that it is true for k+1 . (P(k+1))

Proving inequalities by mathematical induction Proof (cont.): We are given that P(k): 2k < k! (1) We need to show: P(k+1): 2k+1 < (k+1)! (2) 2k+1 = 2·2k < 2·k! (based on (1)) < (k+1)·k! (since k≥4) = (k+1)! Thus, P(n) is true by induction. ■

Proving inequalities by mathematical induction Theorem: For all integers n≥5, n2 < 2n. (P(n)) Proof (by induction): 1) Basis step: The statement is true for n=5: (P(5)) 52 =25 < 32 = 25. 2) Inductive step: Assume the statement is true for some k≥5 ; (P(k)) show that it is true for k+1 . (P(k+1))

Proving inequalities by mathematical induction Proof (cont.): We are given that P(k): k2 < 2k. (1) We need to show: P(k+1): (k+1)2 < 2k+1. (2) (k+1)2 = k2+2k+1 < k2 +2k (since k≥5) < 2k + 2k (based on (1)) = 2·2k = 2k+1. Thus, P(n) is true by induction. ■