Sets
A set is an unordered collection of objects.
The objects in a set are called the set's elements or members. They are usually listed inside braces. We write x∈A if x is an element (member) of a set A.
{1,2,3} is a set with 3 elements. It is the same as the set {1,3,2} (order does not matter) and the set {1,1,2,3,3,3,3} (repetition does not matter). Typically, all objects are the same (for example, numbers), but they do not have to be: {1,3,red,blue,John} is a set.
Ellipses are used when a pattern is clear: {1,2,3,4,…,50} is the set of all integers from 1 to 50, inclusive.
Some sets we use a lot:- R is the set of real numbers
- N is the set of natural numbers
- Z is the set of integers
- Q is the set of rational numbers
It is possible to have a set with no elements: {}. This is the empty set and is usually denoted ∅. This is not the same as {∅}, which is a set with one element (that happens to be a (empty) set).
The number of distinct elements in a set S is called its cardinality and is denoted |S|. If |S| is infinite (for example, Z), we say the set is infinite.
One common way to define a set is set builder notation. Here are two examples:
- R={r|r is a real number}
- O={x|x is an odd integer}
Set Operations
Several operations can be performed on sets.-
Union: Given two sets A and B, the union A∪B is the set of all elements that are in either A or B. For example, if A={1,3,5} and B={2,3,6}, then A∪B={1,2,3,4,5,6}. Note that A∪B={x|(x∈A)∨(x∈B)}.
-
Intersection: Given two sets A and B, the intersection A∩B is the set of all elements that are in both A and B. For example, if A={1,2,3,4} and B={3,4,5,6}, then A∩B={3,4}. Note that A∩B={x|(x∈A)∧(x∈B)}. We say that A and B are disjoint if A∩B=∅.
-
Difference: Given two sets A and B, the difference A∖B is the set of all elements that are in A but not in B. For example, if A={1,2,3,4} and B={3,4}, then A∖B={1,2}. Note that A∖B={x|(x∈A)∧(x∉B)}. A∖B is also denoted A−B.
-
Complement: Given a set A, the complement ¯A is the set of all elements that are not in A. To define this, we need some definition of the universe of all possible elements U. We can therefore view the complement as a special case of set difference, where ¯A=U∖A. For example, if U=Z and A={x|x is an odd integer}, then ¯A={x|x is an even number}. Note that ¯A={x|x∉A}.
- Cartesian Product: Given two sets A and B, the cartesian product A×B is the set of ordered pairs where the first element is in A and the second element is in B. We have A×B={(a,b)|a∈A∧b∈B}. For example, if A={1,2,3} and B={a,b}, then A×B={(1,a),(1,b),(2,a),(2,b),(3,a),(3,b)}.
Subsets
A set A is a subset of a set B if every element of A is an element of B. We write A⊆B. Another way of saying this is that A⊆B if and only if ∀x(x∈A→x∈B).
For any set S, we have:
-
∅⊆S
Proof: Must show that ∀x(x∈∅→x∈S). Since x∈∅ is always false, the implication is always true. This is an example of a trivial or vacuous proof.
-
S⊆S
Proof: Must show that ∀x(x∈S→x∈S). Fix an element x. We must show that x∈S→x∈S. This implication is equivalent to x∈S∨x∉S, which is a tautology. Therefore, by Universal Generalization, S⊆S.
Power Sets
The power set of a set A is the set of all subsets of A, denoted P(A). For example, if A={1,2,3}, then P(A)={∅,{1},{2},{3},{1,2},{2,3},{1,3},{1,2,3}}
Notice that |P(A)|=2|A|.
Set Equality
Two sets are equal if they contain the same elements. One way to show that two sets A and B are equal is to show that A⊆B and B⊆A:
A⊆B∧B⊆A≡∀x((x∈A→x∈B)∧(x∈B→x∈A))≡∀x(x∈A↔x∈B)≡A=BNote: it is not enough to simply check if the sets have the same size! They must have exactly the same elements. Remember, though, that order and repetition do not matter.