MATH 224 – Discrete Mathematics

Slides:



Advertisements
Similar presentations
Week 6 - Wednesday CS322.
Advertisements

Mathematical Induction
22C:19 Discrete Structures Induction and Recursion Fall 2014 Sukumar Ghosh.
Copyright © Cengage Learning. All rights reserved. 6 Equations and Formulas.
MA/CSSE 473/474 How (not) to do an induction proof.
Induction and recursion
CPSC 121: Models of Computation
Discrete Structures Chapter 2 Part A Sequences Nurul Amelina Nasharuddin Multimedia Department.
Kavita Hatwal Fall Sequences and Induction.
Discrete Structures Chapter 5: Sequences, Mathematical Induction, and Recursion 5.2 Mathematical Induction I [Mathematical induction is] the standard proof.
Lecture 4 Discrete Mathematics Harper Langston. Algorithms Algorithm is step-by-step method for performing some action Cost of statements execution –Simple.
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.
Induction and Recursion by: Mohsin tahir (GL) Numan-ul-haq Waqas akram Rao arslan Ali asghar.
Copyright © 2007 Pearson Education, Inc. Slide 8-1.
Induction and recursion
Introduction Two equations that are solved together are called systems of equations. The solution to a system of equations is the point or points that.
College Algebra Sixth Edition James Stewart Lothar Redlin Saleem Watson.
Sequences and Series (T) Students will know the form of an Arithmetic sequence.  Arithmetic Sequence: There exists a common difference (d) between each.
1 © 2010 Pearson Education, Inc. All rights reserved 10.1 DEFINITION OF A SEQUENCE An infinite sequence is a function whose domain is the set of positive.
Rev.S08 MAC 1140 Module 12 Introduction to Sequences, Counting, The Binomial Theorem, and Mathematical Induction.
Sequences Informally, a sequence is a set of elements written in a row. – This concept is represented in CS using one- dimensional arrays The goal of mathematics.
Week 6 - Monday CS322.
Induction and recursion
Mathematics Review Exponents Logarithms Series Modular arithmetic Proofs.
College Algebra Fifth Edition James Stewart Lothar Redlin Saleem Watson.
CSNB143 – Discrete Structure Topic 5 – Induction Part I.
1 Introduction to Abstract Mathematics Chapter 4: Sequences and Mathematical Induction Instructor: Hayk Melikya 4.1- Sequences. 4.2,
MATH 224 – Discrete Mathematics
Sequences and Summations
 Here are a few review concepts before we start solving equations!
Induction Proof. Well-ordering A set S is well ordered if every subset has a least element. [0, 1] is not well ordered since (0,1] has no least element.
Copyright © Zeph Grunschlag, Induction Zeph Grunschlag.
ICS 253: Discrete Structures I Induction and Recursion King Fahd University of Petroleum & Minerals Information & Computer Science Department.
CompSci 102 Discrete Math for Computer Science March 1, 2012 Prof. Rodger Slides modified from Rosen.
(CSC 102) Lecture 23 Discrete Structures. Previous Lecture Summery  Sequences  Alternating Sequence  Summation Notation  Product Notation  Properties.
CS 103 Discrete Structures Lecture 13 Induction and Recursion (1)
Foundations of Discrete Mathematics Chapters 5 By Dr. Dalia M. Gil, Ph.D.
1+2+3+…+n = n(n+1)/2 We want to prove the above statement by mathematical Induction for all natural numbers (n=1,2,3,…) Next SlideSlide 1.
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.
Mathematical Induction
Copyright © Zeph Grunschlag, Induction Zeph Grunschlag.
CS104:Discrete Structures Chapter 2: Proof Techniques.
Copyright © Cengage Learning. All rights reserved. Sequences and Series.
1 2/21/2016 MATH 224 – Discrete Mathematics Sequences and Sums A sequence of the form ar 0, ar 1, ar 2, ar 3, ar 4, …, ar n, is called a geometric sequence.
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.
Proofs, Recursion and Analysis of Algorithms Mathematical Structures for Computer Science Chapter 2 Copyright © 2006 W.H. Freeman & Co.MSCS SlidesProofs,
Section 8.4 Mathematical Induction. Mathematical Induction In this section we are going to perform a type of mathematical proof called 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 we can reach a particular.
Chapter 2 1. Chapter Summary Sets The Language of Sets - Sec 2.1 – Lecture 8 Set Operations and Set Identities - Sec 2.2 – Lecture 9 Functions and sequences.
Notions & Notations - 1ICOM 4075 (Fall 2010) UPRM Department of Electrical and Computer Engineering University of Puerto Rico at Mayagüez Fall 2010 ICOM.
Lecture # 20 Sequence & Series
Week 1 Real Numbers and Their Properties (Section 1.6, 1.7, 1.8)
Mathematical Induction EECS 203: Discrete Mathematics Lecture 11 Spring
Chapter 5 1. Chapter Summary  Mathematical Induction  Strong Induction  Recursive Definitions  Structural Induction  Recursive Algorithms.
MATH 224 – Discrete Mathematics
Copyright 2013, 2009, 2005, 2002 Pearson, Education, Inc.
Identity and Equality Properties
Induction and recursion
Solving Equations by Adding or Subtracting
Introduction Two equations that are solved together are called systems of equations. The solution to a system of equations is the point or points that.
Induction and recursion
Copyright © Cengage Learning. All rights reserved.
Mathematical Induction
Copyright © Cengage Learning. All rights reserved.
Mathematical Induction
6.3 Using Elimination to Solve Systems
Copyright © Cengage Learning. All rights reserved.
11.4 Mathematical Induction
Presentation transcript:

MATH 224 – Discrete Mathematics Sequences and Sums A sequence of the form ar0, ar1, ar2, ar3, ar4, … , arn, is called a geometric sequence and occurs quite often in computer science applications. Another common sequence is of the form a, 2a, 3a, 4a, … , na is called an arithmetic sequence. We have seen this when examining the number of steps executed by selection sort. In our example, the variable a was equal to 1, so we just had 1, 2, 3, … . N. Often we are interested in the sum of one of these sequences as in the arithmetic sum and the geometric sum. = = Arithmetic Sum Geometric Sum (as long as r ≠ 1) What will be the formula for the geometric sum when a = 1. Compare this to the formula on Page 155 from our text. Are they equivalent? 4/21/2017

MATH 224 – Discrete Mathematics Basic Properties of Sums = From this equality it follows that 4/21/2017

MATH 224 – Discrete Mathematics Mathematical Induction Mathematical induction is a property of the integers and any well ordered set. It may be used to prove properties hold for an infinite set of values. For example, it may be used to prove something such as Proofs by induction require two steps: the Basis Step and the Inductive Step. In addition, a proof of the inductive step, makes use of the an Inductive Hypothesis. All three of these elements will be required in your proofs. = when r ≠ 1 4/21/2017

MATH 224 – Discrete Mathematics Mathematical Induction Induction allows us to prove properties that hold over the integers are some infinite subset of the integers. So for example it provides for a way to prove that X3 – X is a multiple of 3 for all values of X ≥ 0. In this case, there is also a simple proof that doesn’t require induction. Induction can be illustrate by the problem of climbing a ladder. In order to climb a latter, you must be able to get to the first step and then from any step on the ladder to the next. The basis step requires that a property be true for the smallest value. Basis: Can you reach the first step? Yes Basis: Can you reach the first step? No 4/21/2017

MATH 224 – Discrete Mathematics Mathematical Induction The inductive step is the heart of an induction proof. Here you must show that from any step on the ladder you can reach the next step. The inductive hypothesis states in this case that you are on an arbitrary step of the ladder. In your proofs you will be expected to explicitly state the, basis, inductive hypothesis and the inductive step. Inductive Hypothesis: States you are on a step of the ladder. Inductive Hypothesis: States you are on a step of the ladder. Inductive Step: Can you always reach the next step? Yes Inductive Step: Can you always reach the next step? No 4/21/2017

MATH 224 – Discrete Mathematics Mathematical Induction Basis Step The Basis Step requires the proof of some property P(x0) for a starting value x0. P(x) might involve an equation as in the summation above or it might be a statements such as a C++ function sorts all input arrays from smallest to largest. So for example, the basis step might require one to prove that Or it might require one to prove that a C++ function such as binary_search works correctly for a sorted array with just one element. = 4/21/2017

MATH 224 – Discrete Mathematics Mathematical Induction Inductive Step The Inductive Step requires a proof that P(x) → P(x+1) for any x ≥ x0. To do this you assume that the Inductive Hypothesis P(x) is true for some arbitrary value x ≥ x0. You are not assuming this for all x, but just for some x with no restrictions. Note that x is greater than or equal to the starting value. In your proofs, you must state the inductive hypothesis explicitly. So for example, in a proof of the geometric sum, the inductive hypothesis would be something like: Assume that for some x ≥ 0 the following holds as long as r ≠ 1. Note the word some. We are only assuming this for one value of x. Also be sure to note the x is set greater than or equal to the starting value. Both of these are critical for a correct proof. = 4/21/2017

MATH 224 – Discrete Mathematics Proof Using Induction The following is a proof of the formula for the Geometric Sum using induction. = when r ≠ 1 Basis: (Sometimes called the base case.) Consider the sum when n = 0. Then the sum has only one term r0 =1. And the fraction on the right is just (1–r)/(1–r) since n+1 = 1. Thus the equation is correct for the base case. Inductive Hypothesis: Assume that for some k ≥ 0 the equation holds. In other words, = 4/21/2017

MATH 224 – Discrete Mathematics Proofs Using Induction It is critical that the inductive hypothesis does not restrict the value of k. In other words it must be possible for k to take on the base value. Why would k > 0 be wrong for the Inductive Hypothesis in this proof? Inductive Step: Consider the following sum : for some k ≥ 0. By algebra this sum may be written as The right side of the equality follows from the inductive hypothesis. Why? Then adding the two fractions and simplifying yields the fraction: And from this we may conclude that the original equation is correct by induction. If we substitute k+1 for n, what does the original equation give? 4/21/2017

MATH 224 – Discrete Mathematics Proof for the Geometric Sum without Using Induction The following is a proof of the formula for the Geometric Sum without using induction. = when r ≠ 1 Consider How do we get the expression on the right? Then dividing the left and right sides by 1 – r we get the final result. What is wrong with dividing by 1 – r if r = 1? 4/21/2017

MATH 224 – Discrete Mathematics Proof for the Arithmetic Sum without Using Induction The following is a proof of the formula for the Arithmetic Sum without using induction. = Consider the sum 1 + 2 +3 + … (n−3) + (n−2) + (n−1) + n. Then note when we add the first and the last pair, the second and second from the last etc., each sum equals n + 1. If n is even, there are n/2 of these pairs. Thus if all the pairs are added we have the sum is n(n+1)/2. If n is odd, there are (n−1)/2 of these pairs plus the middle term which is (n+1)/2. Adding these together yields (n+1)(n−1)/2 + (n+1)/2 = (n+1)(n−1 +1)/2 = (n+1)n/2. 4/21/2017

MATH 224 – Discrete Mathematics Proof that all Horses are the Same Color Basis: With just one horse of course they are all the same color. Inductive Hypothesis: Assume that for some k>1 all of the k horses are the same color. Inductive step: Consider the figure below. k+1 horses k+1st horse k horses 4/21/2017

MATH 224 – Discrete Mathematics Proof that all Horses are the Same Color Now remove one of the horses from the group of k. Then there are k horses in the corral. By the inductive hypothesis they must all be the same color kth horse k─1 horses 4/21/2017

MATH 224 – Discrete Mathematics Proof that all Horses are the Same Color Now put the horse you removed back in. Then there are k+1 horses in the corral. And since it was part of the group of k, it must be the same color as the rest of them. Hence all k+1 of them are the same color. kth horse k─1 horses 4/21/2017