Miniconference on the Mathematics of Computation

Slides:



Advertisements
Similar presentations
Mathematical Induction II Lecture 14: Nov
Advertisements

1 Mathematical Induction. 2 Mathematical Induction: Example  Show that any postage of ≥ 8¢ can be obtained using 3¢ and 5¢ stamps.  First check for.
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.
1 Intro to Induction Supplementary Notes Prepared by Raymond Wong Presented by Raymond Wong.
Combinations We should use permutation where order matters
1 Mathematical Induction. 2 Mathematical Induction: Example  Show that any postage of ≥ 8¢ can be obtained using 3¢ and 5¢ stamps.  First check for.
CSE115/ENGR160 Discrete Mathematics 03/22/12 Ming-Hsuan Yang UC Merced 1.
COMP 170 L2 Page 1. COMP 170 L2 Page 2 COMP 170 L2 L10: Intro to Induction l Objective n Introduce induction from proof-by-smallest-counter-example 
CSE115/ENGR160 Discrete Mathematics 03/29/11 Ming-Hsuan Yang UC Merced 1.
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.
Mathematical Maxims and Minims, 1988
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 Inclusion-Exclusion Supplementary Notes Prepared by Raymond Wong Presented by Raymond Wong.
Dr. Eng. Farag Elnagahy Office Phone: King ABDUL AZIZ University Faculty Of Computing and Information Technology CPCS 222.
3. Counting Permutations Combinations Pigeonhole principle Elements of Probability Recurrence Relations.
Counting nCr = n!/r!(n-r)!=nC(n-r) This equation reflects the fact that selecting r items is same as selecting n-r items in forming a combination from.
A Brief Summary for Exam 2 Subject Topics Number theory (sections ) –Prime numbers Definition Relative prime Fundamental theorem of arithmetic.
Slide Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
1 Chapter 2 Pigeonhole Principle. 2 Summary Pigeonhole principle –simple form Pigeonhole principle –strong form Ramsey’s theorem.
Hashes Lesson Introduction ●The birthday paradox and length of hash ●Secure hash function ●HMAC.
Nonregular Languages How do you prove a language to be regular? How do you prove a language to be nonregular? A Pumping Lemma.
Pigeonhole Principle – Page 1CPTR311 – Discrete Structures CPTR311 Discrete Structures Pigeonhole Principle Reading: Kolman, Section 3.3.
Pigeonhole Principle. If n pigeons fly into m pigeonholes and n > m, then at least one hole must contain two or more pigeons A function from one finite.
Mathematical Induction 1. 2 Suppose we have a sequence of propositions which we would like to prove: P (0), P (1), P (2), P (3), P (4), … P (n), … We.
1 Discrete Mathematical Mathematical Induction ( الاستقراء الرياضي )
COUNTING Discrete Math Team KS MATEMATIKA DISKRIT (DISCRETE MATHEMATICS ) 1.
Copyright © Zeph Grunschlag, Induction Zeph Grunschlag.
11.7 – Proof by Mathematical Induction
CSE15 Discrete Mathematics 03/22/17
CSNB 143 Discrete Mathematical Structures
Copyright © Zeph Grunschlag,
The Pigeonhole Principle
Introduction to Combinatorics
Advanced Algorithms Analysis and Design
CSE 311 Foundations of Computing I
Mathematical Induction II
9. Counting and Probability 1 Summary
CSE 311 Foundations of Computing I
Chapter 3 The Real Numbers.
Copyright © Zeph Grunschlag,
CSE 311: Foundations of Computing
A Brief Summary for Exam 2
CSE 311: Foundations of Computing
Modelling and Searching Networks Lecture 3 – ILT model
Lesson 11 – Proof by induction
Miniconference on the Mathematics of Computation
Discrete Mathematics and its Applications Lecture 8 – Cop-win Graphs
Miniconference on the Mathematics of Computation
Lecture 3.1: Mathematical Induction
The Pigeonhole Principle
Induction (Section 3.3).
Modelling and Searching Networks Lecture 8 – Cop-win Graphs
Sullivan Algebra and Trigonometry: Section 13.4
Modelling and Searching Networks Lecture 4 – ILAT model
Advanced Analysis of Algorithms
Miniconference on the Mathematics of Computation
Miniconference on the Mathematics of Computation
Combinations and Pascal’s triangle
Adjacency Matrices and PageRank
Miniconference on the Mathematics of Computation
Miniconference on the Mathematics of Computation
Modelling and Searching Networks Lecture 10 – Cop Number and Genus
Modelling and Searching Networks Lecture 5 – Random graphs
Miniconference on the Mathematics of Computation
Miniconference on the Mathematics of Computation
Discrete Mathematics and its Applications Lecture 5 – Random graphs
Lecture 3.1: Mathematical Induction
11.4 Mathematical Induction
Presentation transcript:

Miniconference on the Mathematics of Computation MTH 210 Strong Induction Dr. Anthony Bonato Ryerson University

Example Eg: given a0 = 0, a1 = 4 and ak = 6ak-1-5ak-2 want to show an = 5n-1 for all n ≥ 0

Strong Induction same as induction, but assume P(n) is true for ALL values up to a given k. don’t only assume true for k-1 strong induction is really the same as induction, just the induction hypothesis is stated differently

Example, continued eg Given a0 = 0, a1 = 4 and ak = 6ak-1 - 5ak-2. Want to show an = 5n - 1. NOTE: ak depends on two previous values, not just one

Exercises

Miniconference on the Mathematics of Computation MTH 210 Counting Dr. Anthony Bonato Ryerson University

Independent events two events are independent if they do not interact with each other eg 2-digit numbers first digit is an event, second digit is an event choosing a first digit won’t effect the choice of the second

Counting independent events suppose you have k independent events n1 objects from Event 1 n2 objects from Event 2 n3 objects from Event 3 … nk objects from Event k then the number of objects in every event Is: n1n2 …nk

Example, continued 10 possibilities for first digit 10 possibilities for second digits digits are independently chosen so there are 10 x 10 = 100 2-digit numbers NB: allow “02”, “05”, etc.

Pigeonhole principle Idea: more pigeons than holes, then at least one hole has two or more pigeons

Pigeonhole property More formal statement: If you have n+1 objects assigned to n properties, then at least two objects have the same properties

Exercises