22 min read
Union and Intersection
Union (∪) combines two sets. Intersection (∩) finds what they share.
Union
Example 1 — union
Let A = {, , } and B = {, , }. Find A ∪ B.
- List every element that appears in A, in B, or in both.
- From A: , , . From B: , , .
- Combine, writing each element only once: , , , ,
Answer: A ∪ B = {, , , , }
Intersection
Example 1 — intersection
Let A = {, , } and B = {, , }. Find A ∩ B.
- Look for elements that appear in both sets.
- Compare: only appears in both A and B.
Answer: A ∩ B = {}
Example 2 — no overlap
Let C = {, } and D = {, }. Find C ∩ D.
- Compare every element: none of or appear in D.
- There is nothing shared.
Answer: C ∩ D = ∅ (C and D are called disjoint sets)
Change a value and watch: Click "A ∪ B" to see everything combined. Click "A ∩ B" to see only the shared element, .
Practice
Let A = {, , , } and B = {, , }. How many elements are in A ∩ B?
Your answer
More lessons in Sets and Functions · Next: Complement and Difference · Previous: Venn Diagrams
