Define a set
A set is an unordered collection of objects
What is the rooster method
S = {a, b, c, d} denotes the set S containing elements a, b, c, and d.
Explain this set-builder notation: S = {x E z+| x is odd and x < 10)
For some positive integers, x is odd and x < 10. Contains all the elements from this set that satisfy the predicate
What are the 7 important sets
Define a universal set (U)
The universal set is the set containing everything under consideration
Define an empty set (∅)
an empty set is a set with no elements
How is cardinality shown for A
|A|
When is there set equality
when sets have the same elements,
A = B ↔ ∀x. (x ∈ A ↔ x ∈ B)
What does this mean: (A ⊆ B)
set A is a subset of B, if and only if every element of A is also an element of B: ∀x. (x ∈ A → x ∈ B)
If A ⊆ B, but A ̸= B what do we call this subset
this is called a proper subset denoted by A ⊂ B
Provide an example of a subset
What is the given rule to calculate how many sub-sets any given set has
2 to the power of n (2^n), where n is the cardinality of the set n = |A|
What is the cardinality of the set: A = {1 , 2, 3}
2^3 = 8
What does this symbol denote (∈)
“is in”, it denotes a set membership
What is the unions of set A and B denoted by
A and B, denoted by A ∪ B, is the set:
{x | x ∈ A ∨ x ∈ B}
Complete this example of what the union symbol does {1, 2, 3} ∪ {3, 4, 5}
{1, 2, 3} ∪ {3, 4, 5} = {1, 2, 3, 4, 5}
What is the intersection of set A and B denoted by
The intersection of the sets A and B, denoted by A ∩ B, is the set:
{x | x ∈ A ∧ x ∈ B}
Complete these examples of what the intersection symbol does:
- {1, 2, 3} ∩ {3, 4, 5}
* {1, 2, 3} ∩ {4, 5, 6}
What is the difference of set A and B denoted by
The difference of the sets A and B, denoted by A − B, is the set:
{x | x ∈ A ∧ x ∈/ B}
Complete these examples of what the difference symbol does:
- {1, 2, 3} − {3, 4, 5}
* {1, 2, 3} − {4, 5, 6}
What is the complement of set A and B denoted by
The complement of the set A (with respect to U), denoted by A, is the set:
U − A = {x | x ∈ U ∧ x ∈/ A}
Complete these examples of what the complement symbol does
What does the | symbol mean
“such that for all elements of x”
What does the line above the symbols mean
The complement of