HomeMCS-212QuestionsWhat is a Set?
Must StudyEasyUnit 1 · 10 marks

What is a Set? Explain types of sets and set operations with examples.

🔥 Asked 9/10 papers📅 Last: Dec 2023📚 Set Theory & Relations
Jun 2019Dec 2019Jun 2020Dec 2020Jun 2021Jun 2022Dec 2022Jun 2023Dec 2023

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

Sets are denoted by capital letters (A, B, C...) and elements by lowercase letters (a, b, c...). If 'a' is an element of set A, we write: a ∈ A. If 'a' is NOT an element, we write: a ∉ A.

2Methods of Representation

Roster / Tabular Form

List all elements inside curly braces. Example: Set of vowels = {a, e, i, o, u}

Set Builder / Rule Form

Describe the property elements must satisfy. Example: A = {x | x is a natural number less than 5} = {1, 2, 3, 4}

3Types of Sets

Empty Set (Null Set) — ∅

A set with no elements. Example: {x | x² = -1, x is real}

Finite Set

A set with a countable number of elements. Example: {1, 2, 3, 4, 5}

Infinite Set

A set with unlimited elements. Example: Set of all natural numbers N = {1, 2, 3, ...}

Universal Set (U)

The set containing all objects under consideration in a problem.

Subset (⊆)

A is a subset of B (A ⊆ B) if every element of A is also in B. Example: {1,2} ⊆ {1,2,3}

Power Set P(A)

The set of all subsets of A. If |A| = n, then |P(A)| = 2ⁿ. Example: A = {1,2} → P(A) = {∅, {1}, {2}, {1,2}}

Equal Sets

Two sets A and B are equal if they contain exactly the same elements: A = B iff A ⊆ B and B ⊆ A

4Set Operations

Union (A ∪ B)

All elements in A OR B (or both). A ∪ B = {x | x ∈ A or x ∈ B}

Intersection (A ∩ B)

Elements in BOTH A AND B. A ∩ B = {x | x ∈ A and x ∈ B}

Difference (A − B)

Elements in A but NOT in B. A − B = {x | x ∈ A and x ∉ B}

Complement (A')

All elements in U that are NOT in A. A' = U − A

Symmetric Difference (A △ B)

Elements in A or B but NOT in both. A △ B = (A − B) ∪ (B − A)

5Important Set Laws (must memorise)

De Morgan's Laws

(A ∪ B)' = A' ∩ B' and (A ∩ B)' = A' ∪ B'

Distributive Laws

A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C) and A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C)

Idempotent Laws

A ∪ A = A and A ∩ A = A

Absorption Laws

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.

Related Questions