What is a Set? Explain types of sets and set operations with examples.
Model Answer
A Set is a well-defined collection of distinct objects. The objects belonging to a set are called elements or members of the set. 'Well-defined' means there is no ambiguity — for any given object, we can clearly determine whether it belongs to the set or not.
1Notation
2Methods of Representation
List all elements inside curly braces. Example: Set of vowels = {a, e, i, o, u}
Describe the property elements must satisfy. Example: A = {x | x is a natural number less than 5} = {1, 2, 3, 4}
3Types of Sets
A set with no elements. Example: {x | x² = -1, x is real}
A set with a countable number of elements. Example: {1, 2, 3, 4, 5}
A set with unlimited elements. Example: Set of all natural numbers N = {1, 2, 3, ...}
The set containing all objects under consideration in a problem.
A is a subset of B (A ⊆ B) if every element of A is also in B. Example: {1,2} ⊆ {1,2,3}
The set of all subsets of A. If |A| = n, then |P(A)| = 2ⁿ. Example: A = {1,2} → P(A) = {∅, {1}, {2}, {1,2}}
Two sets A and B are equal if they contain exactly the same elements: A = B iff A ⊆ B and B ⊆ A
4Set Operations
All elements in A OR B (or both). A ∪ B = {x | x ∈ A or x ∈ B}
Elements in BOTH A AND B. A ∩ B = {x | x ∈ A and x ∈ B}
Elements in A but NOT in B. A − B = {x | x ∈ A and x ∉ B}
All elements in U that are NOT in A. A' = U − A
Elements in A or B but NOT in both. A △ B = (A − B) ∪ (B − A)
5Important Set Laws (must memorise)
(A ∪ B)' = A' ∩ B' and (A ∩ B)' = A' ∪ B'
A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C) and A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C)
A ∪ A = A and A ∩ A = A
A ∪ (A ∩ B) = A and A ∩ (A ∪ B) = A
Key Formulas
|A ∪ B| = |A| + |B| - |A ∩ B|
|P(A)| = 2ⁿ where n = |A|
(A ∪ B)' = A' ∩ B' (De Morgan's Law 1)
(A ∩ B)' = A' ∪ B' (De Morgan's Law 2)
💡 Exam Tip
Write the definition clearly first, then cover types with one example each, then operations. Use bullet points — examiners give marks per point. Always draw a Venn diagram for union/intersection — it gets you 1-2 extra marks for clarity.