This topic introduces the language of sets and how to perform operations involving union, intersection, complements, and subsets. You'll learn how to use Venn diagrams to represent relationships, identify disjoint and overlapping sets, and solve problems involving set membership and classification.
A = {1, 2, 3}
x ∈ A
A ⊆ B
A ⊂ B
and A ≠ B
A ∪ B
A ∩ B
A'
or U - A
(relative to universal set)A ∩ B = ∅
A = B
Problem: Given A = {1, 2, 3, 4}
and B = {3, 4, 5, 6}
, find:
Step 1: Union:
A ∪ B = {1, 2, 3, 4, 5, 6}
Step 2: Intersection:
A ∩ B = {3, 4}
Step 3: Complement (assuming universal set U = {1–6}):
A' = {5, 6}
Final Answer:
A ∪ B = {1, 2, 3, 4, 5, 6}
A ∩ B = {3, 4}
A' = {5, 6}