Question
If , , and the universal set , find , , , , , and verify .
(CBSE 11 & JEE Main — sets chapter)
Solution — Step by Step
= all elements in A or B (or both):
= elements in both A and B:
= elements in A but not in B:
= elements in B but not in A:
= elements in U but not in A:
, , ,
Why This Works
Set operations correspond to logical operations: union = OR, intersection = AND, complement = NOT. The formula corrects for double-counting — elements in both sets get counted twice when we add and , so we subtract the intersection once.
graph TD
A["Set Operation Problem"] --> B{"What's asked?"}
B -->|"Elements in A OR B"| C["Union: A ∪ B<br/>Combine all elements"]
B -->|"Elements in A AND B"| D["Intersection: A ∩ B<br/>Common elements only"]
B -->|"Elements in A but NOT B"| E["Difference: A - B"]
B -->|"Elements NOT in A"| F["Complement: A'<br/>= U - A"]
B -->|"Count of union"| G["n(A∪B) = n(A) + n(B)<br/>- n(A∩B)"]
G --> H{"Three sets?"}
H -->|"Yes"| I["Add/subtract using<br/>inclusion-exclusion principle"]
Alternative Method — Venn Diagram Approach
Draw two overlapping circles inside a rectangle (universal set). Fill in the intersection first (), then the remaining parts of each circle ( for A-only, for B-only), then the outside (). Read any operation directly from the diagram.
For JEE word problems: when the question says ” students play cricket, play football, play both,” directly apply . For three activities, use inclusion-exclusion: .
Common Mistake
Students write . These are NOT equal (set difference is not commutative). In our example, while . The symmetric difference is the operation that IS commutative. CBSE boards test this distinction explicitly.