Subsets — Sets inside Sets

Let X be the set of all students in your school and Y the set of all students in your class. Every member of Y is automatically a member of X — we say Y is a subset of X.

Key Point (Definition): A set A is a subset of a set B, written ABA \subset B, if every element of A is also an element of B. In implication form: ABA \subset B if aAaBa \in A \Rightarrow a \in B.

If A is not a subset of B — that is, A has at least one element not in B — we write A⊄BA \not\subset B.

Two consequences follow immediately from the definition:

  1. Every set is a subset of itself: AAA \subset A, since every element of A is (of course) in A.
  2. The empty set is a subset of every set: ϕA\phi \subset A for all A. There is no element of ϕ\phi that could fail to be in A — the requirement is satisfied vacuously.

And a beautiful two-way street:

AB and BA    A=BA \subset B \text{ and } B \subset A \iff A = B

This is exactly how equality of sets is proved in mathematics — show containment both ways. The symbol     \iff reads "if and only if" (iff).

Proper subsets and supersets

If ABA \subset B and ABA \neq B, then A is a proper subset of B, and B is a superset of A. For example {1, 2, 3} is a proper subset of {1, 2, 3, 4}. A set with just one element, like {a}, is called a singleton set.

[Board Important] Distinguish the two symbols with a mantra: \in connects an element to a set; \subset connects a set to a set. 2{1,2}2 \in \{1, 2\} but {2}{1,2}\{2\} \subset \{1, 2\}.

Element or Subset? The \in vs \subset Minefield

Sets can themselves be elements of other sets, and this is where exams set their traps. Consider

A={1,2,{3,4},5}A = \{1, 2, \{3, 4\}, 5\}

This set has four elements: the numbers 1, 2, 5 and the set {3, 4} as a single packaged object. Now test yourself:

  • {3,4}A\{3, 4\} \in Atrue: the set {3, 4} is one of the listed elements.
  • {3,4}A\{3, 4\} \subset Afalse: that would need 3A3 \in A and 4A4 \in A, but 3 and 4 are not elements of A (they are sealed inside the packet).
  • {{3,4}}A\{\{3, 4\}\} \subset Atrue: this singleton's only element is {3, 4}, which does belong to A.
  • 1A1 \in A — true; 1A1 \subset Afalse (1 is not a set here).
  • ϕA\phi \subset Atrue (always); ϕA\phi \in Afalse: ϕ\phi is not among the listed elements.

Key Point: To check xAx \in A, scan A's element list for x exactly as written. To check XAX \subset A, unpack X and scan for each of its elements in A's list.

[JEE Tip] A statement like "if ABA \in B and BCB \subset C then ACA \subset C" is FALSE in general. Counterexample: A = {1}, B = {{1}, 2}, C = {{1}, 2, 3}. Here ABA \in B and BCB \subset C, but 1C1 \notin C, so A⊄CA \not\subset C. Membership and containment do not chain with each other — only \subset chains with \subset (transitivity: AB,BCACA \subset B, B \subset C \Rightarrow A \subset C).

Subsets of R: Intervals

The most-used subsets of R\mathbb{R} in all of mathematics are intervals. Let a,bRa, b \in \mathbb{R} with a<ba < b.

  • Open interval (a,b)={y:a<y<b}(a, b) = \{y : a < y < b\} — all points between a and b, excluding both endpoints.
  • Closed interval [a,b]={x:axb}[a, b] = \{x : a \leq x \leq b\}including both endpoints.
  • Semi-open intervals: [a,b)={x:ax<b}[a, b) = \{x : a \leq x < b\} includes a but not b; (a,b]={x:a<xb}(a, b] = \{x : a < x \leq b\} includes b but not a.

Number lines showing open closed and semi open intervals with dots

On a number line: a filled dot marks an included endpoint, a hollow dot an excluded one.

Infinity notation extends the idea: [0,)[0, \infty) is the set of non-negative reals, (,0)(-\infty, 0) the negative reals, and (,)(-\infty, \infty) is R\mathbb{R} itself. The side with \infty is always open — infinity is not a number that could be included.

The number bab - a is called the length of each of the intervals (a,b)(a, b), [a,b][a, b], [a,b)[a, b) and (a,b](a, b] — inclusion of endpoints does not change length.

Key Point: Every interval contains infinitely many points — even the tiny interval (0,0.001)(0, 0.001).

[JEE Tip] Translation drill you must do on sight: {x:xR,5<x7}=(5,7]\{x : x \in \mathbb{R}, -5 < x \leq 7\} = (-5, 7] and [3,5)={x:3x<5}[-3, 5) = \{x : -3 \leq x < 5\}. In JEE answers, domains and ranges are written in interval notation by default — fluency here pays off in every later chapter.

Universal Set and Venn Diagrams

The universal set U

In any particular discussion, all sets in play are subsets of one background set fixed for the context. That background set is called the universal set, denoted U.

  • Studying divisibility? U = N\mathbb{N} or Z\mathbb{Z} works.
  • Studying equations and their real roots? U = R\mathbb{R}.
  • A survey of a town's population? U = the set of people in that town.

The universal set is a choice — for the set of integers, U could be Q\mathbb{Q} or R\mathbb{R}, whichever suits the discussion. What matters is that U contains every set under consideration.

Venn diagrams

Most relationships between sets can be drawn. In a Venn diagram (named after the English logician John Venn, 1834-1883):

  • the universal set U is a rectangle;
  • its subsets are circles (or other closed curves) inside the rectangle;
  • elements, when shown, are written inside their regions.

Rectangle for universal set containing circle A with its elements

The picture above shows U = {1, 2, …, 10} with the subset A = {2, 4, 6, 8, 10} inside the circle and the non-members outside it.

When one set sits inside another, the circles nest:

Nested circles showing B inside A inside universal rectangle

Here B = {4, 6} \subset A = {2, 4, 6, 8, 10} \subset U — every level of nesting is a subset relation.

[Board Important] Venn diagrams are a reasoning tool, not just decoration — in Section 4 you will verify De Morgan's laws by shading regions. Practise drawing them neatly now: rectangle first, label U, then circles with their letters outside the circle boundary.

Solved Examples

Example 1. Given ϕ\phi, A = {1, 3}, B = {1, 5, 9}, C = {1, 3, 5, 7, 9}, insert the correct symbol \subset or ⊄\not\subset: (i) ϕ\phi … B (ii) A … B (iii) A … C (iv) B … C.

Solution.

Step 1 — recall the test. XYX \subset Y demands that EVERY element of X lies in Y; a single straying element breaks it.

(i) Step 2. ϕ\phi has no elements, so the demand is satisfied vacuously — nothing can stray. ϕB\phi \subset B ✓ (true for every set).

(ii) Step 3. Check A's elements against B: 1B1 \in B ✓ but 3B3 \notin B ✗. One stray is enough: A⊄BA \not\subset B.

(iii) Step 4. 1C1 \in C ✓ and 3C3 \in C ✓ — all of A accounted for: ACA \subset C.

(iv) Step 5. 1C1 \in C ✓, 5C5 \in C ✓, 9C9 \in C ✓: BCB \subset C.

Takeaway: subset checking is element-by-element bookkeeping, and the verdict flips on the first missing element.


Example 2. Examine whether the following are true or false: (i) {a, b} ⊄\not\subset {b, c, a} (ii) {a, e} {x:x is a vowel}\subset \{x : x \text{ is a vowel}\} (iii) {1, 2, 3} \subset {1, 3, 5} (iv) {a} \in {a, b, c}.

Solution.

(i) Step 1. Test the subset relation honestly: a{b,c,a}a \in \{b, c, a\} ✓ and b{b,c,a}b \in \{b, c, a\} ✓, so {a, b} IS a subset. The statement claims it is NOT — false.

(ii) Step 2. The vowel set is {a, e, i, o, u}; both a and e belong. True.

(iii) Step 3. Check 2: 2{1,3,5}2 \notin \{1, 3, 5\}. One stray element kills it. False.

(iv) Step 4. Read the claim precisely: is the SET {a} an ELEMENT of {a, b, c}? The elements listed are the letters a, b, c — the packet {a} is not among them. False (although {a}{a,b,c}\{a\} \subset \{a, b, c\} would be true).

Takeaway: part (iv) is the \in vs \subset distinction in miniature — braces around a letter change the object, and hence the claim.

Example 3. Let A = {1, 2, {3, 4}, 5}. Decide which statements are incorrect and why: (i) {3, 4} \subset A (ii) {3, 4} \in A (iii) {{3, 4}} \subset A (iv) 1A1 \in A (v) 1A1 \subset A (vi) {1, 2, 5} \subset A (vii) ϕA\phi \in A (viii) ϕA\phi \subset A.

Solution.

Step 1 — inventory A's elements first. A has exactly FOUR elements: the numbers 1, 2, 5, and the packet {3, 4} treated as one sealed object. Crucially, 3 and 4 themselves are NOT elements of A.

(i) Step 2 — incorrect. {3,4}A\{3, 4\} \subset A would require 3A3 \in A and 4A4 \in A; both fail (they are sealed inside the packet).

(ii) Step 3 — correct. The packet {3, 4} is literally one of A's listed elements: {3,4}A\{3, 4\} \in A.

(iii) Step 4 — correct. The set {{3, 4}} has a single element — the packet — and that packet belongs to A. So {{3,4}}A\{\{3,4\}\} \subset A.

(iv) Step 5 — correct. 1 appears in the list: 1A1 \in A.

(v) Step 6 — incorrect. 1 is a number, not a set; writing 1A1 \subset A is a category error (only sets can be subsets).

(vi) Step 7 — correct. 1, 2, 5 each belong to A, so {1,2,5}A\{1, 2, 5\} \subset A.

(vii) Step 8 — incorrect. Scan the element list: ϕ\phi is not among the four elements, so ϕA\phi \notin A.

(viii) Step 9 — correct. The empty set is a subset of EVERY set: ϕA\phi \subset A always.

Takeaway: this one example carries the whole \in/\subset logic: to test \in, scan the element list as written; to test \subset, unpack the candidate and scan for each of ITS elements.


Example 4. Write down all the subsets of: (i) {a} (ii) {a, b} (iii) {1, 2, 3} (iv) ϕ\phi.

Solution.

Step 1 — build subsets by in/out decisions. For each element, a subset either takes it or leaves it — so list systematically by size.

(i) Step 2. One element: ϕ\phi (take nothing) and {a} (take a). Two subsets.

(ii) Step 3. Size 0: ϕ\phi. Size 1: {a}, {b}. Size 2: {a, b}. Four subsets.

(iii) Step 4. Size 0: ϕ\phi. Size 1: {1}, {2}, {3}. Size 2: {1, 2}, {1, 3}, {2, 3}. Size 3: {1, 2, 3}. Eight subsets.

(iv) Step 5. The empty set's only subset is itself: ϕ\phi. One subset.

Step 6 — spot the pattern. Counts 1, 2, 4, 8 for 0, 1, 2, 3 elements: each new element doubles the count, so a set with nn elements has 2n2^n subsets — the power-set formula used constantly in the JEE Corner section.

Takeaway: enumerate by size to avoid missing subsets, and remember ϕ\phi and the set itself always appear.

Example 5. Write the following as intervals: (i) {x:xR,4<x6}\{x : x \in \mathbb{R}, -4 < x \leq 6\} (ii) {x:xR,12<x<10}\{x : x \in \mathbb{R}, -12 < x < -10\} (iii) {x:xR,0x<7}\{x : x \in \mathbb{R}, 0 \leq x < 7\} (iv) {x:xR,3x4}\{x : x \in \mathbb{R}, 3 \leq x \leq 4\}.

Solution.

Step 1 — apply the dictionary. Strict inequality << ↔ round bracket (endpoint excluded); \leq ↔ square bracket (endpoint included). Read each side separately.

(i) Step 2. 4<x-4 < x strict → "(" at 4-4; x6x \leq 6 inclusive → "]" at 6: (4,6](-4, 6].

(ii) Step 3. Strict on both sides: (12,10)(-12, -10).

(iii) Step 4. Inclusive left, strict right: [0,7)[0, 7).

(iv) Step 5. Inclusive both sides: [3,4][3, 4].

Takeaway: translate one endpoint at a time — the bracket shape is decided locally by that endpoint's inequality alone.


Example 6. Write in set-builder form: (i) (3,0)(-3, 0) (ii) [6,12][6, 12] (iii) (6,12](6, 12] (iv) [23,5)[-23, 5).

Solution.

Step 1 — run the same dictionary backwards. Round bracket → strict <<; square bracket → \leq.

(i) Step 2. (3,0)={x:xR,3<x<0}(-3, 0) = \{x : x \in \mathbb{R}, -3 < x < 0\}.

(ii) Step 3. [6,12]={x:xR,6x12}[6, 12] = \{x : x \in \mathbb{R}, 6 \leq x \leq 12\}.

(iii) Step 4. (6,12]={x:xR,6<x12}(6, 12] = \{x : x \in \mathbb{R}, 6 < x \leq 12\}.

(iv) Step 5. [23,5)={x:xR,23x<5}[-23, 5) = \{x : x \in \mathbb{R}, -23 \leq x < 5\}.

Takeaway: the translation is a two-way dictionary — drill both directions until each takes a second.


Example 7. If A = (3,5)(-3, 5) and B = [7,9][-7, 9], show that ABA \subset B. What is the length of each interval?

Solution.

Step 1 — set up the containment check. Take any xAx \in A, i.e. 3<x<5-3 < x < 5. We must show 7x9-7 \leq x \leq 9.

Step 2 — chain the inequalities. From x>3x > -3 and 3>7-3 > -7: x>7x > -7, so certainly x7x \geq -7 ✓. From x<5x < 5 and 5<95 < 9: x<9x < 9, so x9x \leq 9 ✓. Every element of A lies in B: ABA \subset B.

Step 3 — compute lengths. Length of A =5(3)=8= 5 - (-3) = 8; length of B =9(7)=16= 9 - (-7) = 16. (Endpoint inclusion never affects length.)

Takeaway: interval containment reduces to endpoint comparison — the inner interval must begin later and end earlier, with bracket care only when endpoints coincide.

Example 8. Given A = {1, 3, 5}, B = {2, 4, 6} and C = {0, 2, 4, 6, 8}, which of the following may be considered a universal set for A, B, C? (i) {0, 1, 2, 3, 4, 5, 6} (ii) ϕ\phi (iii) {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} (iv) {1, 2, 3, 4, 5, 6, 7, 8}.

Solution.

Step 1 — recall the requirement. A universal set must contain EVERY element of EVERY set in the discussion; equivalently AUA \subset U, BUB \subset U and CUC \subset U must all hold.

(i) Step 2. A ✓ and B ✓ fit, but C needs 8 and 8{0,,6}8 \notin \{0, \ldots, 6\}. Not valid.

(ii) Step 3. ϕ\phi contains nothing, so it cannot contain the non-empty sets A, B, C. Not valid.

(iii) Step 4. All needed elements 0-8 appear (9 and 10 extra are harmless). Valid universal set.

(iv) Step 5. C needs 0, and 0{1,,8}0 \notin \{1, \ldots, 8\}. Not valid.

Takeaway: check each candidate against each set — one missing element disqualifies; extra elements never do.


Example 9. What universal set would you propose for (i) the set of right triangles (ii) the set of isosceles triangles?

Solution.

Step 1. Both are families of triangles, so any set containing all triangles works. (i) U = the set of all triangles in the plane. (ii) The same U serves — or even larger choices like the set of all polygons.

Step 2 — note the freedom. U is a CHOICE, not a uniquely determined object; any superset of every set under discussion qualifies, and we normally pick the most natural one.

Takeaway: "propose a universal set" questions accept any sufficiently large set — justify by containment, not uniqueness.


Example 10. Let A, B, C be sets with ABA \subset B and BCB \subset C. Prove that ACA \subset C.

Solution.

Step 1 — set up an element chase. To prove ACA \subset C we take an ARBITRARY xAx \in A and must land it in C.

Step 2 — push through the first inclusion. xAx \in A and ABA \subset B give xBx \in B.

Step 3 — push through the second. xBx \in B and BCB \subset C give xCx \in C.

Step 4 — conclude. Every element of A belongs to C, which is precisely ACA \subset C. ∎

Takeaway: "take x, push it through the inclusions" is the template for every subset proof in this chapter — transitivity is its simplest instance.

Example 11. Determine whether each statement is true or false; if false, give a counterexample. (i) If xAx \in A and ABA \in B, then xBx \in B. (ii) If ABA \subset B and xBx \notin B, then xAx \notin A.

Solution.

(i) Step 1 — try to break it. Take A = {1} and B = {{1}, 2}. Then 1A1 \in A ✓ and ABA \in B ✓ (the packet {1} is an element of B).

Step 2 — check the conclusion. B's elements are the packet {1} and the number 2. The number 1 is NOT among them: 1B1 \notin B. The statement is false — membership does not pass through membership.

(ii) Step 3 — prove it by contradiction. Suppose the conclusion fails, i.e. xAx \in A. Then ABA \subset B forces xBx \in B — contradicting the hypothesis xBx \notin B. Hence xAx \notin A: the statement is true.

Takeaway: \in does not chain with \in, but a subset relation DOES transfer non-membership backwards — that one-line contradiction recurs throughout set-theory proofs.


Example 12. Decide which sets are subsets of one another: A={x:xR and x28x+12=0}A = \{x : x \in \mathbb{R} \text{ and } x^2 - 8x + 12 = 0\}, B = {2, 4, 6}, C = {2, 4, 6, 8, …}, D = {6}.

Solution.

Step 1 — convert A to roster form. Factorise: x28x+12=(x2)(x6)=0x^2 - 8x + 12 = (x - 2)(x - 6) = 0, so A = {2, 6}.

Step 2 — identify C. C = {2, 4, 6, 8, …} is the set of all even natural numbers.

Step 3 — test the inclusions. D = {6}: 6 lies in A, in B, and in C → DAD \subset A, DBD \subset B, DCD \subset C. A = {2, 6}: both elements lie in B and in C → ABA \subset B, ACA \subset C. B = {2, 4, 6}: all even naturals → BCB \subset C. No reverse inclusion holds (e.g. 4B4 \in B but 4A4 \notin A; 8C8 \in C but 8B8 \notin B).

Step 4 — assemble the chain. DABCD \subset A \subset B \subset C.

Takeaway: solve every defining equation first; once all sets are explicit, the subset chain reads off element by element.


Example 13. Write {x:xR,x2}\{x : x \in \mathbb{R}, x \geq -2\} and {x:xR,x<3}\{x : x \in \mathbb{R}, x < 3\} in interval notation, and identify their common part.

Solution.

Step 1. x2x \geq -2: from 2-2 (included) rightwards without bound: [2,)[-2, \infty). The infinity side is always open.

Step 2. x<3x < 3: everything to the left of 3 (excluded): (,3)(-\infty, 3).

Step 3 — intersect on the number line. A number in both sets satisfies 2x-2 \leq x AND x<3x < 3 simultaneously: the overlap is [2,3)[-2, 3) — square bracket from the first set's included endpoint, round bracket from the second's excluded one.

Takeaway: the "common part" is the intersection; the number line shows it instantly, and Section 4 gives it the formal symbol \cap.


Example 14. How many of the following are true? (i) {0}{0,1}\{0\} \subset \{0, 1\} (ii) 0{0,1}0 \subset \{0, 1\} (iii) {0}{0,1}\{0\} \in \{0, 1\} (iv) 0{0,1}0 \in \{0, 1\}.

Solution.

(i) Step 1. Unpack {0}: its only element is 0, and 0{0,1}0 \in \{0, 1\} ✓. True.

(ii) Step 2. 0 is a number, not a set — the subset symbol does not apply to it. False.

(iii) Step 3. The elements of {0, 1} are the numbers 0 and 1; the SET {0} is not one of them. False.

(iv) Step 4. 0 is listed as an element. True.

Step 5 — count. Exactly 2 of the four statements are true.

Takeaway: braces are not decoration: {0} is a one-element set, 0 is a number — every mixed-symbol question hinges on that difference.