Introduction to Set Theory

Slides:



Advertisements
Similar presentations
Prof. Johnnie Baker Module Basic Structures: Sets
Advertisements

Basic Structures: Sets, Functions, Sequences, Sums, and Matrices
Discrete Structures & Algorithms Basics of Set Theory EECE 320 — UBC.
Basic Structures: Sets, Functions, Sequences, Sums, and Matrices
1 Set Theory Rosen 6 th ed., § Introduction to Set Theory A set is a structure, representing an unordered collection (group, plurality) of zero.
Discrete Structures Chapter 3 Set Theory Nurul Amelina Nasharuddin Multimedia Department.
EE1J2 – Discrete Maths Lecture 7
Copyright © Zeph Grunschlag, Set Operations Zeph Grunschlag.
Sets 1.
CSE115/ENGR160 Discrete Mathematics 02/10/11 Ming-Hsuan Yang UC Merced 1.
Sets 1.
Cardinality of a Set “The number of elements in a set.” Let A be a set. a.If A =  (the empty set), then the cardinality of A is 0. b. If A has exactly.
Set theory Sets: Powerful tool in computer science to solve real world problems. A set is a collection of distinct objects called elements. Traditionally,
Set, Combinatorics, Probability & Number Theory Mathematical Structures for Computer Science Chapter 3 Copyright © 2006 W.H. Freeman & Co.MSCS Slides Set,
CS 103 Discrete Structures Lecture 10 Basic Structures: Sets (1)
Copyright © 2014 Curt Hill Sets Introduction to Set Theory.
Discrete Structure Sets. 2 Set Theory Set: Collection of objects (“elements”) a  A “a is an element of A” “a is a member of A” a  A “a is not an element.
CS201: Data Structures and Discrete Mathematics I
Chapter 2: Basic Structures: Sets, Functions, Sequences, and Sums (1)
CompSci 102 Discrete Math for Computer Science
2014 년 봄학기 강원대학교 컴퓨터과학전공 문양세 이산수학 (Discrete Mathematics)  집합 (Set)
ELEMENTARY SET THEORY.
Mathematical Preliminaries
Chapter 2 With Question/Answer Animations. Section 2.1.
(CSC 102) Lecture 13 Discrete Structures. Previous Lectures Summary  Direct Proof  Indirect Proof  Proof by Contradiction  Proof by Contra positive.
Sets Definition: A set is an unordered collection of objects, called elements or members of the set. A set is said to contain its elements. We write a.
Review 2 Basic Definitions Set - Collection of objects, usually denoted by capital letter Member, element - Object in a set, usually denoted by lower.
Discrete Mathematics Set.
Module #3 - Sets 3/2/2016(c) , Michael P. Frank 2. Sets and Set Operations.
Discrete Mathematics CS 2610 August 31, Agenda Set Theory Set Builder Notation Universal Set Power Set and Cardinality Set Operations Set Identities.
Chapter 2 1. Chapter Summary Sets (This Slide) The Language of Sets - Sec 2.1 – Lecture 8 Set Operations and Set Identities - Sec 2.2 – Lecture 9 Functions.
Introduction to Set Theory (§1.6) A set is a new type of structure, representing an unordered collection (group, plurality) of zero or more distinct (different)
CPCS 222 Discrete Structures I
Sets, Permutations, and Combinations. Lecture 4-1: Sets Sets: Powerful tool in computer science to solve real world problems. A set is a collection of.
CSE15 Discrete Mathematics 02/13/17
Applied Discrete Mathematics Week 1: Logic and Sets
Chapter 2 Sets and Functions.
Set Definition: A set is unordered collection of objects.
CHAPTER 3 SETS, BOOLEAN ALGEBRA & LOGIC CIRCUITS
The Language of Sets If S is a set, then
INF385T: Information Modeling Introduction to Unit 2: The Relational Model Sets, Tuples, and Relations: Foundations for Relational Model Slides.
Discrete Mathematical The Set Theory
Set, Combinatorics, Probability & Number Theory
Bogazici University Department of Computer Engineering CmpE 220 Discrete Mathematics 03. Sets Haluk Bingöl.
COT 3100, Spring 2001 Applications of Discrete Structures
COT 3100, Spring 2001 Applications of Discrete Structures
Sets Section 2.1.
Chapter 1 Logic and Proofs Homework 2 Given the statement “A valid password is necessary for you to log on to the campus server.” Express the statement.
Chapter 5, Set Theory 1.
Taibah University College of Computer Science & Engineering Course Title: Discrete Mathematics Code: CS 103 Chapter 2 Sets Slides are adopted from “Discrete.
… and now for something completely different…
Exercises Show that (P  Q)  (P)  (Q)
Review 2.
CS100: Discrete structures
Set Theory Rosen 6th ed., §
Module #3: The Theory of Sets
Unit I: Part I Set Theory
2.1 Sets Dr. Halimah Alshehri.
Module #3: The Theory of Sets
Discrete Mathematics CS 2610
The aim of education is to teach students how to think rather than what to think. Sets The set is the fundamental discrete structure on which all other.
L5 Set Operations.
陳光琦助理教授 (Kuang-Chi Chen)
… and now for something completely different…
Discrete Mathematics and its Applications
Sets & Set Operations.
Discrete Mathematics and its Applications
Logic Logic is a discipline that studies the principles and methods used to construct valid arguments. An argument is a related sequence of statements.
Today’s topics Sets Reading: Sections Upcoming Definitions
Module #3: The Theory of Sets
Presentation transcript:

Introduction to Set Theory A set is a structure, representing an unordered collection (group, plurality) of zero or more distinct (different) objects. Set theory deals with operations between, relations among, and statements about sets.

Basic notations for sets Discrete Mathematics and its Applications 2018-09-13 Basic notations for sets For sets, we’ll use variables S, T, U, … We can denote a set S in writing by listing all of its elements in curly braces: {a, b, c} is the set of whatever 3 objects are denoted by a, b, c. Set builder notation: For any proposition P(x) over any universe of discourse, {x|P(x)} is the set of all x such that P(x). e.g., {x | x is an integer where x>0 and x<5 } Read {a, b, c} as “the set whose elements are a, b, and c” or just “the set a, b, c”. (c)2001-2002, Michael P. Frank

Basic properties of sets Sets are inherently unordered: No matter what objects a, b, and c denote, {a, b, c} = {a, c, b} = {b, a, c} = {b, c, a} = {c, a, b} = {c, b, a}. All elements are distinct (unequal); multiple listings make no difference! {a, b, c} = {a, a, b, a, b, c, c, c, c}. This set contains at most 3 elements!

Definition of Set Equality Two sets are declared to be equal if and only if they contain exactly the same elements. In particular, it does not matter how the set is defined or denoted. For example: The set {1, 2, 3, 4} = {x | x is an integer where x>0 and x<5 } = {x | x is a positive integer whose square is >0 and <25}

Infinite Sets Conceptually, sets may be infinite (i.e., not finite, without end, unending). Symbols for some special infinite sets: N = {0, 1, 2, …} The natural numbers. Z = {…, -2, -1, 0, 1, 2, …} The integers. R = The “real” numbers, such as 374.1828471929498181917281943125… Infinite sets come in different sizes!

Discrete Mathematics and its Applications 2018-09-13 Venn Diagrams 2 4 6 8 -1 1 Even integers from 2 to 9 3 5 With Venn diagrams, you can see that one set is a subset of another just by seeing that you can draw an enclosure around its members that fits completely inside an enclosure drawn around the larger set’s members. 7 9 Odd integers from 1 to 9 Positive integers less than 10 Primes <10 Integers from -1 to 9 (c)2001-2002, Michael P. Frank

Basic Set Relations: Member of xS (“x is in S”) is the proposition that object x is an lement or member of set S. e.g. 3N, “a”{x | x is a letter of the alphabet} Can define set equality in terms of  relation: S,T: S=T  (x: xS  xT) “Two sets are equal iff they have all the same members.” xS : (xS) “x is not in S”

The Empty Set  (“null”, “the empty set”) is the unique set that contains no elements whatsoever.  = {} = {x|False} No matter the domain of discourse, we have the axiom x: x.

Subset and Superset Relations Discrete Mathematics and its Applications 2018-09-13 Subset and Superset Relations ST (“S is a subset of T”) means that every element of S is also an element of T. ST  x (xS  xT) S, SS. ST (“S is a superset of T”) means TS. Note S=T  ST ST. means (ST), i.e. x(xS  xT) Note also that FORALL x P(x)->Q(x) can also be understood as meaning “{x|P(x)} is a subset of {x|Q{x}}”. This can help you understand the meaning of implication. For example, if I say, “if a student has a drivers license, then he is over 16,” this is the same as saying “the set of students with drivers licenses is a subset of the set of students who are over 16”, or “every student with a drivers license is over 16.” If no students in the universe of discourse have drivers licenses, then the antecedent is always false, or in other words the set of students with drivers licenses is just the empty set, which is of course a member of every set, and so the statement is vacuously true. Alternatively, if every student in the universe of discourse is over 16, then the consequent is always true, that is, the set of students who are over 16 is the entire universe of discourse, and so every set of students in the u.d. is necessarily a subset of the set of students who are over 16, and so the statement is trivially true. The statement is only false if there exists a student with a drivers license in the u.d. who is under 16 (perhaps the license is fake or from a foreign country), in which case, the set of students with drivers licenses is *not* a subset of the under-16 students. (c)2001-2002, Michael P. Frank

Proper (Strict) Subsets & Supersets Discrete Mathematics and its Applications 2018-09-13 Proper (Strict) Subsets & Supersets ST (“S is a proper subset of T”) means that ST but . Similar for ST. Example: {1,2}  {1,2,3} We may also say, “S is a strict subset of T”, or “S is strictly a subset of T” to mean the same thing. S T Venn Diagram equivalent of ST (c)2001-2002, Michael P. Frank

Discrete Mathematics and its Applications 2018-09-13 Sets Are Objects, Too! The objects that are elements of a set may themselves be sets. E.g. let S={x | x  {1,2,3}} then S={, {1}, {2}, {3}, {1,2}, {1,3}, {2,3}, {1,2,3}} Note that 1  {1}  {{1}} !!!! In general, any kind of object or structure, whether simple or complex, can be a member of a set. In particular, sets themselves (being structures) can be members of sets. If you don’t understand the distinction between 1, {1}, {{1}}, you’ll make endless silly mistakes. 1 is a number, the number one. {1} is NOT A NUMBER AT ALL! It is a COMPLETELY DIFFERENT TYPE OF OBJECT! Namely, it is a set. What kind of set? It is a singleton set, by which we mean a set that contains exactly one element. In this case, its element happens to be the number 1. Now, what is {{1}}? It is also a set, and also a singleton set, but it is a COMPLETELY DIFFERENT TYPE of singleton set. To see this, notice that {1} is a set of numbers, whereas {{1}} is not a set of numbers at all! It is a SET OF SETS. Its single element is not a number at all, but is a SET. Namely, the set {1}. In other words, {{1}} is the singleton set whose member is the singleton set whose member is 1. Whereas, {1} is just the singleton set whose member is 1. And, 1 is just 1. All of these are distinct objects and you’ve got to learn to keep them separate! Otherwise, you’ll never have a chance of understanding data types in programming languages. For example, in most languages, we can have an array of numbers, or an array of arrays of numbers, etc. These are all completely different types of objects and can never be compatible with each other. Very Important! (c)2001-2002, Michael P. Frank

Cardinality and Finiteness |S| (read “the cardinality of S”) is a measure of how many different elements S has. E.g., ||=0, |{1,2,3}| = 3, |{a,b}| = 2, |{{1,2,3},{4,5}}| = ____ We say S is infinite if it is not finite. What are some infinite sets we’ve seen? 2 N Z R

Cardinality and Finiteness “The number of elements in a set.” Let A be a set. If A =  (the empty set), then the cardinality of A is 0. b. If A has exactly n elements, n a natural number, then the cardinality of A is n. The set A is a finite set. c. Otherwise, A is an infinite set.

Notation The cardinality of a set A is denoted by | A |. If A =  , then | A |= 0. If A has exactly n elements, then | A | = n. c. If A is an infinite set, then | A | = .

Examples: A = {2, 3, 5, 7, 11, 13, 17, 19}; | A | = 8 A = N (natural numbers); | N | =  A = Q (rational numbers); | Q | =  A = {2n | n is an integer}; | A | =  (the set of even integers)

DEFINITION Let A and B be sets. Then, |A| = |B| if and only if there is a one-to-one correspondence between the elements of A and the elements of B. Examples: 1. A = {1, 2, 3, 4, 5} B = {a, e, i, o, u} 1 a, 2 e, 3 i, 4 o, 5 u; |B| = 5

DEFINITION 2. A = N (the natural numbers) B = {2n | n is a natural number} (the even natural numbers) n 2n is a one-to one correspondence between A and B. Therefore, |A| = |B|; |B| = . 3. A = N (the natural numbers) C = {2n 1 | n is a natural number} (the odd natural numbers) n 2n 1 is a one-to one correspondence between A and C. Therefore, |A| = |C|; |C| = .

Countable Sets DEFINITIONS: 1. A set S is finite if there is a one-to-one correspondence between it and the set {1, 2, 3, . . ., n} for some natural number n. 2. A set S is countably infinite if there is a one-to-one correspondence between it and the natural numbers N.

Countable Sets DEFINITIONS: A set S is countable if it is either finite or countably infinite. A set S is uncountable if it is not countable.

Examples: 1. A = {1, 2, 3, 4, 5, 6, 7},  = {a, b, c, d, . . . x, y, z} are finite sets; |A| = 7, | | = 26 . N (the natural numbers), Z (the integers), and Q (the rational numbers) are countably infnite sets; that is, |Q| = |Z| = |N|.

Examples: 3. I (the irrational numbers) and   (the real numbers) are uncountable sets; that is |I| > |N| and | | > |N|.

Some Facts: A set S is finite if and only if for any proper subset A  S, |A| < |S|; that is, “proper subsets of a finite set have fewer elements.” Suppose that A and B are infinite sets and A  B. If B is countably infinite then A is countably infinite and |A| = |B|.

Some Facts: 3. Every subset of a countable set is countable. If A and B are countable sets, then A  B is a countable set.

Irrational Numbers, Real Numbers Irrational numbers: “points on the real line that are not rational points”; decimals that are neither repeating nor terminating. Real numbers: “rationals”  “irrationals”

is a real number:

is not a rational number, i.e., is an irrational number. Proof: Suppose is a rational number. Then . . .

Other examples of irrational numbers: Square roots of rational numbers that are not perfect squares. Cube roots of rational numbers that are not perfect cubes. And so on.   3.14159, e  2.7182182845

Algebraic numbers – roots of polynomials with integer coefficients. Transcendental numbers – irrational numbers that are not algebraic.

THEOREM: The real numbers are uncountable! Proof: Consider the real numbers on the interval [0,1]. Suppose they are countable. Then . . . Arrive at a contradiction. COROLLARY: The irrational numbers are uncountable. Proof: Real numbers: “rationals”  “irrationals”

The Power Set Operation Discrete Mathematics and its Applications 2018-09-13 The Power Set Operation The power set P(S) of a set S is the set of all subsets of S. P(S) = {x | xS}. E.g. P({a,b}) = {, {a}, {b}, {a,b}}. Sometimes P(S) is written 2S. Note that for finite S, |P(S)| = 2|S|. It turns out that |P(N)| > |N|. There are different sizes of infinite sets! We’ll get to different sizes of infinite sets later, in the module on functions. (c)2001-2002, Michael P. Frank

Discrete Mathematics and its Applications 2018-09-13 Ordered n-tuples For nN, an ordered n-tuple or a sequence of length n is written (a1, a2, …, an). The first element is a1, etc. These are like sets, except that duplicates matter, and the order makes a difference. Note (1, 2)  (2, 1)  (2, 1, 1). Empty sequence, singlets, pairs, triples, quadruples, quintuples, …, n-tuples. Sometimes people also define “bags”, which are unordered collections in which duplicates matter. If you have a bag of coins, they are in no particular order, but it matters how many coins of each type you have. (c)2001-2002, Michael P. Frank

Cartesian Products of Sets Discrete Mathematics and its Applications 2018-09-13 Cartesian Products of Sets For sets A, B, their Cartesian product AB : {(a, b) | aA  bB }. E.g. {a,b}{1,2} = {(a,1),(a,2),(b,1),(b,2)} Note that for finite A, B, |AB|=|A||B|. Note that the Cartesian product is not commutative: AB: AB =BA. Extends to A1  A2  …  An... Usually AxBxC is defined as {(a,b,c) | a is in A and b is in B and c is in C}. (c)2001-2002, Michael P. Frank

The Union Operator For sets A, B, their union AB is the set containing all elements that are either in A, or (“”) in B (or, of course, in both). Formally, A,B: AB = {x | xA  xB}. Note that AB contains all the elements of A and it contains all the elements of B: A, B: (AB  A)  (AB  B)

Union Examples Required Form 2 5 3 7 {a,b,c}{2,3} = {a,b,c,2,3} {2,3,5}{3,5,7} = {2,3,5,3,5,7} ={2,3,5,7} Required Form 2 3 5 7

The Intersection Operator For sets A, B, their intersection AB is the set containing all elements that are simultaneously in A and (“”) in B. Formally, A,B: AB{x | xA  xB}. Note that AB is a subset of A and it is a subset of B: A, B: (AB  A)  (AB  B)

Intersection Examples {a,b,c}{2,3} = ___ {2,4,6}{3,4,5} = ______  {4} 2 3 5 6 4

Help, I’ve been disjointed! Disjointedness Help, I’ve been disjointed! Two sets A, B are called disjoint (i.e., unjoined) iff their intersection is empty. (AB=) Example: the set of even integers is disjoint with the set of odd integers.

Inclusion-Exclusion Principle Discrete Mathematics and its Applications 2018-09-13 Inclusion-Exclusion Principle How many elements are in AB? |AB| = |A|  |B|  |AB| Example: {2,3,5}{3,5,7} = {2,3,5,3,5,7} ={2,3,5,7} Subtract out items in intersection, to compensate for double-counting them! We will see this basic counting principle again when we talk about combinatorics. (c)2001-2002, Michael P. Frank

Discrete Mathematics and its Applications 2018-09-13 Set Difference For sets A, B, the difference of A and B, written AB, is the set of all elements that are in A but not B. A  B : x  xA  xB  x   xA  xB   Also called: The complement of B with respect to A. NOT (x in A -> x in B) = NOT (x not in A or x in B) (defn. of implies) = x in A AND x not in B (DeMorgan’s law). (c)2001-2002, Michael P. Frank

Set Difference Examples {1,2,3,4,5,6}  {2,3,5,7,9,11} = ___________ Z  N  {… , -1, 0, 1, 2, … }  {0, 1, … } = {x | x is an integer but not a nat. #} = {x | x is a negative integer} = {… , -3, -2, -1} {1,4,6}

Set Difference - Venn Diagram A-B is what’s left after B “takes a bite out of A” Chomp! Set AB Set A Set B

Set Complements The universe of discourse can itself be considered a set, call it U. The complement of A, written , is the complement of A w.r.t. U, i.e., it is UA. E.g., If U=N,

More on Set Complements Discrete Mathematics and its Applications 2018-09-13 More on Set Complements An equivalent definition, when U is clear: Note that set difference and complement do not relate to each other like arithmetic difference and negative. In arithmetic, we know that a-b = -(b-a). But in sets, A-B is not generally the same as the complement of B-A. A U (c)2001-2002, Michael P. Frank

Set Identities Identity: A=A AU=A Domination: AU=U A= Idempotent: AA = A = AA Double complement: Commutative: AB=BA AB=BA Associative: A(BC)=(AB)C A(BC)=(AB)C

DeMorgan’s Law for Sets Exactly analogous to (and derivable from) DeMorgan’s Law for propositions.

Proving Set Identities Discrete Mathematics and its Applications 2018-09-13 Proving Set Identities To prove statements about sets, of the form E1 = E2 (where Es are set expressions), here are three useful techniques: Prove E1  E2 and E2  E1 separately. Use logical equivalences. Use a membership table. A membership table is like a truth table. (c)2001-2002, Michael P. Frank

Method 1: Mutual subsets Example: Show A(BC)=(AB)(AC). Show A(BC)(AB)(AC). Assume xA(BC), & show x(AB)(AC). We know that xA, and either xB or xC. Case 1: xB. Then xAB, so x(AB)(AC). Case 2: xC. Then xAC , so x(AB)(AC). Therefore, x(AB)(AC). Therefore, A(BC)(AB)(AC). Show (AB)(AC)  A(BC). …

Method 3: Membership Tables Just like truth tables for propositional logic. Columns for different set expressions. Rows for all combinations of memberships in constituent sets. Use “1” to indicate membership in the derived set, “0” for non-membership. Prove equivalence with identical columns.

Membership Table Example Prove (AB)B = AB.

Membership Table Exercise Prove (AB)C = (AC)(BC).

Generalized Union Binary union operator: AB n-ary union: AA2…An : ((…((A1 A2) …) An) (grouping & order is irrelevant) “Big U” notation: Or for infinite sets of sets:

Generalized Intersection Binary intersection operator: AB n-ary intersection: AA2…An((…((A1A2)…)An) (grouping & order is irrelevant) “Big Arch” notation: Or for infinite sets of sets:

Multisets A multiset is a set of elements, each of which has a multiplicity The size of the multiset is the sum of the multiplicities of all the elements Example: {X, Y, Z} with m(X)=0 m(Y)=3, m(Z)=2 Unary visualization: {Y, Y, Y, Z, Z}

Counting Multisets n + k - 1 n + k - 1 = k n - 1 The number of ways to choose a multiset of size k from n types of elements is: n + k - 1 n - 1 n + k - 1 k =

Example : Pirates How many ways are there of choosing 20 pirates from a set of 5 pirates, with repetitions allowed? 5 + 20 - 1 20 24 20 24 4 = =

Operations on multiset : Union For multisets A, B, their union AB is the multiset containing maximum of the multiplicities of the elements in A and in B. Example: A = { a, a, a, c, d, d} B = {a, a, b, c, c} AB = {a, a, a, b, c, c, d, d}

Operations on multiset : intersection For multisets A, B, their intersection A  B is the multiset such that multiplicity of an element is equal to minimum of the multiplicities of the elements in A and B Example : A = { a, a, a, c, d, d} B = {a, a, b, c, c} A  B = {a, a, c}

Operations on multiset : difference For multisets A, B, their difference A - B is the multiset such that multiplicity of an element is equal to multiplicity of an element in A minus multiplicity of an element in B Example : A = { a, a, a, b, b, c, d, d, e} B = {a, a, b, b, b, c, c, d, d, f} A - B = {a, e}

Operations on multiset : sum For multisets A, B, their intersection A + B is the multiset such that multiplicity of an element is equal to sum of multiplicities of the elements in A and B Example : A = { a, a, b, c, c} B = {a, b, b, d} A  B = {a, a, a, b, b, b, c, c, d}