Question 1 Easy
In a class of 30 students, 18 study French and 14 study Spanish.
If 6 students study both, how many study at least one of the two languages?
💡KEY: "At least one" = Union. Use: n(F∪S) = n(F) + n(S) − n(F∩S)
📖 Explanation
Using the inclusion-exclusion principle:
n(F∪S) = n(F) + n(S) − n(F∩S) = 18 + 14 − 6 = 26
Common mistake: adding 18 + 14 = 32 without subtracting the overlap. Students who study both are counted twice — once in each group — so you must subtract them once.
Question 2 Medium
Universal set U = {1, 2, 3, 4, 5, 6, 7, 8}, A = {1, 3, 5, 7}, B = {3, 4, 5, 6}.
Find (A ∪ B)′.
💡TRICK: First find A∪B, then take the complement from U. Don't forget — the prime symbol (′) means "everything NOT in that set."
A {3, 5}
B {2, 8}
C {1, 2, 6, 7, 8}
D {1, 7}
📖 Explanation
Step 1: A∪B = {1, 3, 4, 5, 6, 7} (all elements in A
or B)
Step 2: (A∪B)′ = U − (A∪B) = {1,2,3,4,5,6,7,8} − {1,3,4,5,6,7} =
{2, 8}
Common mistake: confusing (A∪B)′ with A′∩B′. By De Morgan's Law, they are actually equal — but students often compute (A∩B)′ instead!
Question 3 Tricky
In a survey of 50 people: 30 like apples, 25 like bananas, 10 like neither.
How many people like both apples and bananas?
💡STEP 1: Find n(A∪B) first. People who like at least one = total − neither = 50 − 10 = 40.
📖 Explanation
n(A∪B) = 50 − 10 =
40 (those who like at least one fruit)
Apply inclusion-exclusion: n(A∩B) = n(A) + n(B) − n(A∪B) = 30 + 25 − 40 =
15
Key insight: always subtract the "neither" group first to find the union, then work backwards for the intersection.