20 min read
Number of Elements
Counting how many elements are in a set, and in combinations of sets.
Counting Elements
When two sets overlap, simply adding counts the shared elements twice. To fix this, subtract the overlap once:
Rearranged (useful in exams):
Example 1 — easy numbers
Let A = {, , , } and B = {, , }. Find (A ∪ B).
- (A) = , (B) =
- (A ∩ B): the shared elements are and , so (A ∩ B) =
- (A ∪ B) = (A) + (B) − (A ∩ B) =
Check by listing: A ∪ B = {, , , , }, which has elements. ✓
Answer:
Example 2 — a word problem
In a class of students, play football, play cricket, and play both. How many play football or cricket?
- Let A = football players, (A) = . Let B = cricket players, (B) = .
- The overlap is (A ∩ B) = (play both).
- (A ∪ B) =
Answer: students play football or cricket (or both)
Example 3 — finding students who play neither
Using the class of from Example , how many students play neither sport?
- From Example , students play at least one sport.
- Total students: . Students playing neither:
Answer: students play neither sport
Practice
Swipe or use the arrows to move between questions.
1 / 2
More lessons in Sets and Functions · Next: Three-Set Venn Diagrams · Previous: Complement and Difference
