"Unions, intersections, and complements involving 2 sets"
Basic Set Operations
Key Definitions
- Set: A collection of distinct elements.
- Universal Set (U): The set that contains all possible elements in a particular context.
- Subset: A set whose elements are all contained in another set.
- Complement: The complement of a set A, denoted as A', is the set of elements in the universal set that are not in A.
Operations on Sets
Intersection (A ∩ B):
- Definition: The set of elements that are common to both sets A and B.
- Example: If A = {q, r, y, z} and B = {f, y, z}, then:
A \cap B = {y,z}
Union (A ∪ B):
- Definition: The set of elements that are in either set A, set B, or both.
- Example: Using the same sets:
A \cup B = {f, q, r, y, z}
Complement (A'):
- Definition: Elements in the universal set U that are not in set A.
- Example: If U = {f, q, r, x, y, z} and A = {q, r, y, z}, then:
A' = U - A = {f, x}
Finding Complement, Intersection, and Union
- Given:
- U = {f, q, r, x, y, z}
- A = {q, r, y, z}
- B = {f, y, z}
Steps:
Finding Complement of A (A'):
- Using the universal set U,
- A' = U - A = {f, x}
Finding Intersection of A and B (A ∩ B):
Finding Intersection of A and the Complement of B (A ∩ B'):
- Knowing that B' is the set of elements not in B:
- If B = {f, y, z}, then B' = {q, r, x}
- Therefore,
- A \cap B' = {q,r,y,z} \cap {q,r,x} = {q,r}
Finding Union of A' and B (A' ∪ B):
- A' \cup B = {f, x} \cup {f, y, z} = {f, x, y, z}
Summary of Results
- A' = {f, x}
- A ∩ B = {y, z}
- A ∩ B' = {q, r}
- A' ∪ B = {f, x, y, z}