DISCRETE COMPUTATIONAL STRUCTURES

Slides:



Advertisements
Similar presentations
Sorting algorithms Sieve of Eratosthenes
Advertisements

Fall 2002CMSC Discrete Structures1 Follow me for a walk through... MathematicalInduction.
Chapter 3 Elementary Number Theory and Methods of Proof.
Chapter 5 Number Theory © 2008 Pearson Addison-Wesley. All rights reserved.
Thinking Mathematically
5.1 Number Theory. The study of numbers and their properties. The numbers we use to count are called the Natural Numbers or Counting Numbers.
Thinking Mathematically
Chapter Primes and Greatest Common Divisors ‒Primes ‒Greatest common divisors and least common multiples 1.
The Fundamental Theorem of Arithmetic (2/12) Definition (which we all already know). A number greater than 1 is called prime if its only divisors are 1.
3.5 Paradox  1.Russell’s paradox  A  A, A  A 。  Russell’s paradox: Let S={A|A  A}. The question is, does S  S?  i.e. S  S or S  S?  If S  S,
3.3 The Characteristic function of the set  function from universal set to {0,1}  Definition 3.6: Let U be the universal set, and let A  U. The characteristic.
Discrete Structures for Computer Science Ruoming Jin MW 5:30 – 6:45pm Fall 2009 rm MSB115.
Chapter 8 Counting Techniques PASCAL’S TRIANGLE AND THE BINOMIAL THEOREM.
1 CSE 20: Lecture 7 Boolean Algebra CK Cheng 4/21/2011.
Copyright © 2007 Pearson Education, Inc. Slide 8-1.
CSE 321 Discrete Structures Winter 2008 Lecture 10 Number Theory: Primality.
Chapter Number Theory 4 4 Copyright © 2013, 2010, and 2007, Pearson Education, Inc.
BY MISS FARAH ADIBAH ADNAN IMK
A number that divides evenly into a larger number without a remainder Factor- Lesson 7 - Attachment A.
1 Properties of Integers Objectives At the end of this unit, students should be able to: State the division algorithm Apply the division algorithm Find.
SEMANTICS AND LOGIC HONORS MR. TORRES. BELL RINGER.
Numbers, Operations, and Quantitative Reasoning.
Discrete Mathematics, Part II CSE 2353 Fall 2007 Margaret H. Dunham Department of Computer Science and Engineering Southern Methodist University Some slides.
Discrete Mathematics Transparency No. 0-1 Discrete Mathematics Cheng-Chia Chen September 2009.
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!
DISCRETE COMPUTATIONAL STRUCTURES CSE 2353 Summer 2005.
SECTION 5-1 Prime and Composite Numbers Slide
HAWKES LEARNING SYSTEMS Students Matter. Success Counts. Copyright © 2013 by Hawkes Learning Systems/Quant Systems, Inc. All rights reserved. Section 1.9.
Discrete Mathematical Structures (Counting Principles)
Binomial Coefficients, Inclusion-exclusion principle
Cyclic Groups (9/25) Definition. A group G is called cyclic if there exists an element a in G such that G =  a . That is, every element of G can be written.
DISCRETE COMPUTATIONAL STRUCTURES CS Fall 2005.
Sieve of Eratosthenes. The Sieve of Eratosthenes is a method that.
MTH 201 Discrete Mathematics Fall Term MTH 201 Discrete Mathematics Fall Term INTERNATIONAL BURCH UNIVERSITY DEPARTMENT of INFORMATION.
Unit 7 Permutation and Combination IT Disicipline ITD1111 Discrete Mathematics & Statistics STDTLP 1 Unit 7 Permutation and Combination.
Boolean Algebras Lecture 27 Section 5.3 Wed, Mar 7, 2007.
1 Melikyan/DM/Fall09 Discrete Mathematics Ch. 6 Counting and Probability Instructor: Hayk Melikyan Today we will review sections 6.6,
DISCRETE COMPUTATIONAL STRUCTURES CSE 2353 Fall 2010 Most slides modified from Discrete Mathematical Structures: Theory and Applications by D.S. Malik.
THE IMPORTANCE OF DISCRETE MATHEMATICS IN COMPUTER TECHNOLOGY.
Slide Copyright © 2009 Pearson Education, Inc. Unit 1 Number Theory MM-150 SURVEY OF MATHEMATICS – Jody Harris.
Discrete Mathematics, Part IIIb CSE 2353 Fall 2007 Margaret H. Dunham Department of Computer Science and Engineering Southern Methodist University Some.
Factor A factor of an integer is any integer that divides the given integer with no remainder.
 2012 Pearson Education, Inc. Slide Chapter 5 Number Theory.
Part II – Theory and Computations. Major Ideas....
Slide Copyright © 2009 Pearson Education, Inc. 5.1 Number Theory.
Part I: Numbers and Operations Lesson 1: Numbers.
All About Division. Definition / A nonzero integer t is a divisor of an integer s if there is an integer u such that s = tu. / If t is a divisor of s,
Lecture 21: Combinatorial Circuits II Discrete Mathematical Structures: Theory and Applications.
Introductory Lecture. What is Discrete Mathematics? Discrete mathematics is the part of mathematics devoted to the study of discrete (as opposed to continuous)
Mathematical Background for Cryptography: Modular arithmetic and gcd
Chapter 7: Counting Principles
Direct Proof and Counterexample III: Divisibility
Copyright © 2016, 2013, and 2010, Pearson Education, Inc.
DISCRETE COMPUTATIONAL STRUCTURES
A number that divides evenly into a larger number without a remainder
Mathematical Background: Prime Numbers
Direct Proof and Counterexample III
Follow me for a walk through...
Lecture 20: Combinatorial Circuits I
Copyright © Cengage Learning. All rights reserved.
DISCRETE COMPUTATIONAL STRUCTURES
Chapter 10.3 and 10.4: Combinatorial Circuits
CSE 321 Discrete Structures
Copyright © 2013, 2010, and 2007, Pearson Education, Inc.
Follow me for a walk through...
3.4 Cardinality Definition 3.7: The empty set is a finite set of cardinality 0. If there is a one-to-one correspondence between A and the set {0,1,2,3,…,
Follow me for a walk through...
Number Theory.
From the last time: gcd(a, b) can be characterized in two different ways: It is the least positive value of ax + by where x and y range over integers.
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

DISCRETE COMPUTATIONAL STRUCTURES CSE 2353 Fall 2010 Most slides modified from Discrete Mathematical Structures: Theory and Applications

CSE 2353 OUTLINE Sets PART I Logic PART II Proof Techniques Relations Functions PART III Number Theory Boolean Algebra

CSE 2353 OUTLINE Number Theory Sets PART I Logic PART II Proof Techniques Relations Functions PART III Number Theory Boolean Algebra

Learn the basic counting principles— multiplication and addition Learning Objectives Learn the basic counting principles— multiplication and addition Explore the pigeonhole principle Learn about permutations Learn about combinations Learn about Prime numbers

Basic Counting Principles

Basic Counting Principles

Pigeonhole Principle The pigeonhole principle is also known as the Dirichlet drawer principle, or the shoebox principle.

Pigeonhole Principle

Permutations

Combinations

Combinations

Prime Number An integer p is prime if p>1 and the only divisors of p are 1 and p itself. An integer n>1 that is not prime is called composite.

Finding Primes Sieve of Eratosthenes http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes

Fundamental Theorem of Arithmetic Every integer n>1 can be written as the product of powers of distinct primes.

CSE 2353 OUTLINE Boolean Algebra Sets PART I Logic PART II Proof Techniques Relations Functions PART III Number Theory Boolean Algebra

Two-Element Boolean Algebra Let B = {0, 1}.

Two-Element Boolean Algebra

Boolean Algebra

Boolean Algebra

Logical Gates and Combinatorial Circuits

Logical Gates and Combinatorial Circuits

Logical Gates and Combinatorial Circuits

Logical Gates and Combinatorial Circuits