Introduction to Sets
Introduction of sets, roster form and set builder form.
Introduction to Sets — Class 10 Mathematics
Chapter 2: Sets introduces one of the most fundamental ideas in modern mathematics. Sets are taught in Class 10 under the CBSE, Telangana SSC, and Andhra Pradesh SSC syllabi, and they form the foundation for topics in higher classes like relations, functions, probability, and even computer science.
In everyday life, we naturally group things together — a collection of fruits, a list of students in a class, the colours of a rainbow. In mathematics, when such a collection is precisely and unambiguously defined, we call it a set.
What Does "Well-Defined" Mean?
A collection is called well-defined if we can clearly determine, for any given object, whether it belongs to that collection or not — with no doubt or disagreement.
- "The set of vowels in English" — well defined, because we can say for certain that "a" belongs to it and "b" does not.
- "The collection of tall students in a class" — NOT well defined, because "tall" means different things to different people. There's no fixed rule to decide membership.
- Sets are written by listing their elements between curly brackets { }, also called braces.
- Sets are usually denoted by capital English letters such as A, B, C, N, P, V, etc.
Examples of Sets
Here are some classic examples of well-defined sets that you'll encounter throughout this chapter:
| Set Name | Description | Elements |
|---|---|---|
| N | Natural numbers | 1, 2, 3, 4, 5, … |
| M | Letters in "MATHEMATICS" (distinct only) | M, A, T, H, E, I, C, S |
| P | Planets in the solar system | Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune |
| V | Vowels in English | a, e, i, o, u |
| M | Multiples of 5 between 100 and 125 | 105, 110, 115, 120 |
| C | First five cubic numbers | 1, 8, 27, 64, 125 |
| R | Digits in the Ramanujan number (1729) | 1, 2, 7, 9 |
Membership: "Belongs To" (∈) and "Does Not Belong To" (∉)
Once a set is defined, we need a way to express whether a particular object is inside it or not. Mathematics uses two special symbols for this:
x ∈ A → "x belongs to A" (x is an element of A)x ∉ A → "x does not belong to A" (x is not an element of A)
Worked Examples Using ∈ and ∉
Let N = set of natural numbers, M = set of letters in "mathematics", V = set of vowels, C = set of first five cubic numbers {1, 8, 27, 64, 125}, R = {1, 2, 7, 9} (digits in Ramanujan's number).
| Statement | Meaning | True / False |
|---|---|---|
| 3 ∈ N | 3 belongs to the set of natural numbers | ✅ True |
| 0 ∉ N | 0 does not belong to natural numbers | ✅ True |
| a ∈ M | 'a' belongs to letters of "mathematics" | ✅ True |
| g ∉ V | 'g' is not a vowel | ✅ True |
| e ∈ V | 'e' is a vowel | ✅ True |
| l ∉ M | 'l' is not a letter in "mathematics" | ✅ True |
| 8 ∈ C | 8 is a cubic number (2³ = 8) | ✅ True |
| 31 ∉ C | 31 is not in the first five cubic numbers | ✅ True |
| 7 ∈ R | 7 is a digit of 1729 | ✅ True |
| 4 ∉ R | 4 is not a digit of 1729 | ✅ True |
Roster Form and Set-Builder Form
There are two standard ways to write a set in mathematics. Understanding both, and converting between them, is essential for this chapter.
All elements of the set are listed out individually, separated by commas, inside braces.
A = {a, e, i, o, u}
The set is described using a common property that all its elements share, instead of listing them.
A = {x : x is a vowel}
More Roster Form ↔ Set-Builder Form Pairs
| Roster Form | Set-Builder Form |
|---|---|
| R = {1, 2, 3, 4, 5} | {x : x ∈ ℕ, x ≤ 5} |
| A = {a, e, i, o, u} | {x : x is a vowel in the English alphabet} |
| M = {3, 6, 9, 12, 15, 18} | {x : x is a multiple of 3 and x < 20} |
| S = {−2, −1, 0, 1, 2} | {x : x ∈ ℤ, −2 ≤ x ≤ 2} |
| C = {2, 5, 10, 17} | {x : x ∈ n²+1, n ∈ ℕ, n ≤ 4} |
Practice Problems — Converting Between Forms
(i) G = all the factors of 20
(ii) F = multiples of 4 between 17 and 61, divisible by 7
(iii) S = letters in the word 'MADAM'
(iv) P = whole numbers between 3.5 and 6.7
(i) B = set of all months in a year having 30 days
(ii) P = set of all prime numbers smaller than 10
(iii) X = set of the colours of the rainbow
| Roster Form | Matches | Set-Builder Form |
|---|---|---|
| (i) {p, r, i, n, c, a, l} | → (d) | x is a letter of the word PRINCIPAL |
| (ii) {0} | → (c) | x is an integer and x + 1 = 1 |
| (iii) {1, 2, 3, 6, 9, 18} | → (a) | x is a positive integer and a divisor of 18 |
| (iv) {3, −3} | → (b) | x is an integer and x² − 9 = 0 |
How the Matching Works
- (i) → (d): The word PRINCIPAL has the distinct letters p, r, i, n, c, a, l — exactly the roster set given.
- (ii) → (c): If x + 1 = 1, then x = 0. So the set is {0}.
- (iii) → (a): The positive divisors of 18 are 1, 2, 3, 6, 9, 18 — matches exactly.
- (iv) → (b): If x² − 9 = 0, then x² = 9, so x = 3 or x = −3.
Common Mistakes to Avoid
- Repeating elements — A set never lists an element twice. Always remove duplicates when converting a word or list into a set, like "MADAM" → {M, A, D}, not {M, A, D, A, M}.
- Confusing ∈ and ⊆ — The symbol ∈ relates an element to a set (e.g., 3 ∈ N). It is different from relations between two sets, which you'll study later as subsets.
- "Well-defined" mistakes — Avoid treating vague descriptions (e.g., "good students," "beautiful flowers") as sets. Only collections with a precise, checkable rule qualify.
- Mixing up roster and set-builder form — Roster form lists every element; set-builder form states a rule. Don't mix the two styles in one answer — board exams expect the exact format asked for in the question.
- Forgetting brackets/braces — Always enclose set elements within { } in both roster and set-builder forms. Writing 1, 2, 3 without braces is not a valid set notation.
Board Exam Tips & What This Lesson Prepares You For
The Introduction to Sets is a scoring chapter in Telangana SSC, AP SSC, and CBSE Class 10 Board Exams. Questions are usually straightforward — converting between roster and set-builder forms, identifying well-defined collections, and using ∈/∉ notation correctly.
- Practice converting at least 10 sets between roster and set-builder forms — this is the most commonly tested skill.
- Always double-check for duplicate elements before finalising a roster form answer.
- When asked "is this a well-defined set," always justify your answer with a one-line reason (e.g., "Yes, because membership can be clearly decided").
- Memorise the meaning of ℕ (natural numbers) and ℤ (integers) — they appear frequently in set-builder notation.