Sets and Set Operations
Sets - Section 2.1
Section Summary
Definition of sets
Describing Sets
Roster Method
Set-Builder Notation
Some Important Sets in Mathematics
Empty Set and Universal Set
Subsets and Set Equality
Cardinality of Sets
Tuples
Cartesian Product
Introduction
Sets are basic building blocks in discrete mathematics.
Important for counting.
Programming languages have set operations.
Set theory is an important branch of mathematics.
Many different systems of axioms have been used to develop set theory.
Here we are not concerned with a formal set of axioms for set theory. Instead, we will use what is called naïve set theory.
Sets
A set is an unordered collection of objects.
Example: the students in this class, the chairs in this room.
The objects in a set are called the elements, or members of the set.
A set is said to contain its elements.
The notation denotes that a is an element of the set A.
If a is not a member of A, write
Describing a Set: Roster Method
Order is not important:
Each distinct object is either a member or not; listing more than once does not change the set.
Ellipses (…) may be used to describe a set without listing all of the members when the pattern is clear.
Roster Method Examples
Set of all vowels in the English alphabet:
Set of all odd positive integers less than 10:
Set of all positive integers less than 100:
Set of all integers less than 0:
Some Important Sets
= natural numbers =
= integers =
= positive integers =
= set of real numbers
= set of positive real numbers
= set of complex numbers.
= set of rational numbers
Set-Builder Notation
Specify the property or properties that all members must satisfy:
O = {x ∈ \mathbb{Z^+} | x \text{ is odd and } x < 10}
A predicate may be used:
Example:
Positive rational numbers:
Interval Notation
closed interval
open interval (a,b) = {x | a < x < b}
[a,b) = {x | a ≤ x < b}
(a,b] = {x | a < x ≤ b}
Universal Set and Empty Set
The universal set U is the set containing everything currently under consideration.
Sometimes implicit
Sometimes explicitly stated.
Contents depend on the context.
The empty set is the set with no elements. Symbolized ∅, but {} also used.
Venn Diagram
Some things to remember
Sets can be elements of sets. ,
The empty set is different from a set containing the empty set.
Set Equality
Definition: Two sets are equal if and only if they have the same elements.
Therefore if A and B are sets, then A and B are equal if and only if
We write A = B if A and B are equal sets.
Subsets
Definition: The set A is a subset of B, if and only if every element of A is also an element of B.
The notation is used to indicate that A is a subset of the set B.
holds if and only if is true.
Because is always false, ,for every set S.
Because , , for every set S.
Showing a Set is or is not a Subset of Another Set
Showing that A is a Subset of B:
To show that , show that if x belongs to A, then x also belongs to B.
Showing that A is not a Subset of B:
To show that A is not a subset of B, , find an element with . (Such an x is a counterexample to the claim that implies .)
Examples:
The set of all computer science majors at your school is a subset of all students at your school.
The set of integers with squares less than 100 is not a subset of the set of nonnegative integers.
Another look at Equality of Sets
Recall that two sets A and B are equal, denoted by A = B, iff
Using logical equivalences we have that A = B iff
This is equivalent to and
Proper Subsets
Definition: If , but , then we say A is a proper subset of B, denoted by .
If , then is true.
Venn Diagram
Set Cardinality
Definition: If there are exactly n distinct elements in S where n is a nonnegative integer, we say that S is finite. Otherwise it is infinite.
Definition: The cardinality of a finite set A, denoted by |A|, is the number of (distinct) elements of A.
Examples:
|ø| = 0
Let S be the letters of the English alphabet. Then |S| = 26
The set of integers is infinite.
Power Sets
Definition: The set of all subsets of a set A, denoted P(A), is called the power set of A.
Example: If A = {a,b} then
If a set has n elements, then the cardinality of the power set is . (In Chapters 5 and 6, we will discuss different ways to show this.)
Tuples
The ordered n-tuple is the ordered collection that has as its first element and as its second element and so on until as its last element.
Two n-tuples are equal if and only if their corresponding elements are equal.
2-tuples are called ordered pairs.
The ordered pairs (a,b) and (c,d) are equal if and only if a = c and b = d.
Cartesian Product 1
Definition: The Cartesian Product of two sets A and B, denoted by A × B is the set of ordered pairs (a,b) where and .
Example: A = {a,b}, B = {1,2,3}
Definition: A subset R of the Cartesian product A × B is called a relation from the set A to the set B. (Relations will be covered in depth in Chapter 9.)
Cartesian Product 2
Definition: The cartesian products of the sets A1,A2,……,An, denoted by A1 × A2 × …… × An , is the set of ordered n-tuples where belongs to Ai for i = 1, … n.
Example: What is A × B × C where A = {0,1}, B = {1,2} and C = {0,1,2}
Solution: A × B × C = {(0,1,0), (0,1,1), (0,1,2),(0,2,0), (0,2,1), (0,2,2),(1,1,0), (1,1,1), (1,1,2), (1,2,0), (1,2,1), (1,2,2)}
Truth Sets of Quantifiers
Given a predicate P and a domain D, we define the truth set of P to be the set of elements in D for which P(x) is true. The truth set of P(x) is denoted by
Example: The truth set of P(x) where the domain is the integers and P(x) is “|x| = 1” is the set {-1,1}
Set Operations - Section 2.2
Section Summary
Set Operations
Union
Intersection
Complementation
Difference
More on Set Cardinality
Set Identities
Proving Identities
Membership Tables
Union
Definition: Let A and B be sets. The union of the sets A and B, denoted by A ∪ B, is the set:
Example: What is {1,2,3} ∪ {3, 4, 5}? Solution: {1,2,3,4,5}
Venn Diagram for A ∪ B
Intersection
Definition: The intersection of sets A and B, denoted by A ∩ B, is
Note if the intersection is empty, then A and B are said to be disjoint.
Example: What is? {1,2,3} ∩ {3,4,5} ? Solution: {3}
Example:What is? {1,2,3} ∩ {4,5,6} ? Solution: ∅
Venn Diagram for A ∩B
Complement
Definition: If A is a set, then the complement of the A (with respect to U), denoted by is the set U - A (The complement of A is sometimes denoted by .)
Example: If U is the positive integers less than 100, what is the complement of {x | x > 70}
Solution :{x | x <= 70}
Venn Diagram for Complement
Difference
Definition: Let A and B be sets. The difference of A and B, denoted by A – B, is the set containing the elements of A that are not in B. The difference of A and B is also called the complement of B with respect to A.
Venn Diagram for A − B
The Cardinality of the Union of Two Sets
Inclusion-Exclusion
Example: Let A be the math majors in your class and B be the CS majors. To count the number of students who are either math majors or CS majors, add the number of math majors and the number of CS majors, and subtract the number of joint CS/math majors.
We will return to this principle in Chapter 6 and Chapter 8 where we will derive a formula for the cardinality of the union of n sets, where n is a positive integer.
Venn Diagram for A, B, A ∩ B, A ∪ B
Review Questions
Example: U = {0,1,2,3,4,5,6,7,8,9,10}, A = {1,2,3,4,5}, B ={4,5,6,7,8}
A ∪ B Solution: {1,2,3,4,5,6,7,8}
A ∩ B Solution: {4,5}
Ā Solution: {0,6,7,8,9,10}
Solution: {0,1,2,3,9,10}
A – B Solution: {1,2,3}
B – A Solution: {6,7,8}
Symmetric Difference (optional)
Definition: The symmetric difference of A and B, denoted by is the set
Example: U = {0,1,2,3,4,5,6,7,8,9,10}, A = {1,2,3,4,5} ,B ={4,5,6,7,8}
What is ? Solution: {1,2,3,6,7,8}
Venn Diagram
Set Identities 1
Identity laws
Domination laws
Idempotent laws
Complementation law
Set Identities 2
Commutative laws
Associative laws
Distributive laws
Set Identities 3
De Morgan’s laws
Absorption laws
Complement laws
Proving Set Identities
Different ways to prove set identities:
Prove that each set (side of the identity) is a subset of the other.
Use set builder notation and propositional logic.
Membership Tables: Verify that elements in the same combination of sets always either belong or do not belong to the same side of the identity. Use 1 to indicate it is in the set and a 0 to indicate that it is not
Proof of Second De Morgan Law1
Example: Prove that
Solution: We prove this identity by showing that:
Proof of Second De Morgan Law2
These steps show that:
by assumption
by defn. of complement
by defn. of intersection
by 1st De Morgan law for Prop Logic
defn. of negation
defn. of complement
by defn. of union
Proof of Second De Morgan Law3
These steps show that:
by assumption
by defn. of union
defn. of complement
defn. of negation
1st De Morgan law for Prop Logic
defn. of intersection
defn. of complement
Set-Builder Notation: Second De Morgan Law
by defn. of complement
by defn. of does not belong symbol
by defn. of intersection
by 1st De Morgan law for Prop Logic
by defn. of not belong symbol
by defn. of complement
by defn. of union
by meaning of notation
Membership Table Example
Example: Construct a membership table to show that the distributive law holds.
A | B | C | B∩C | A∪ (B∩C) | A∪B | A∪C | (A∪B) ∩ (A∪C) |
|---|---|---|---|---|---|---|---|
1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |