Chapter 01 • Topic 03

Set Operations, Venn Diagrams & Applications

Perform calculations on collections! Learn to combine, intersect, and subtract sets. Visualize relations using Venn diagrams, and apply set cardinality formulas to solve real-world survey problems.

Topic Overview

What You'll Learn in This Section

Now that we understand set notations, subsets, and universal sets, we can begin performing operations on sets to construct new collections. This topic explores key mathematical operations and visual tools.

Key Concepts Covered

Union of Sets ($A \cup B$): Combining elements of two or more sets.
Intersection of Sets ($A \cap B$): Finding common elements shared between sets.
Difference of Sets ($A - B$): Elements belonging to set $A$ but not to set $B$.
Complement of a Set ($A'$): Elements in the Universal set $U$ that are not in set $A$.
Venn Diagrams: Visualizing set relationships using circles inside a bounding rectangle representing $U$.
Practical Applications: Using formulas like $n(A \cup B) = n(A) + n(B) - n(A \cap B)$ to solve real-world survey problems.

Start Learning

Click on Concepts & Solved Examples to begin studying the theory, or go straight to Exercise 1.3 Solutions to check your homework answers.

Set Operations, Venn Diagrams & Applications: Concepts

Section 1.11

What is a Venn Diagram?

A Venn diagram is a visual or pictorial representation of sets. Named after the English mathematician and philosopher John Venn (1834–1923), these diagrams illustrate relationships between sets, helping us draw logical deductions.

In a standard Venn diagram:

  • The Universal Set $U$ is represented by a bounding rectangle.
  • Subsets of $U$ are represented by circles inside the rectangle.
  • Circles may overlap (if they share elements) or remain distinct (if they share no elements).
U A B

Figure: Venn Diagram of two overlapping sets $A$ and $B$ within Universal set $U$.

Section 1.12

Set Operations

Just as numbers can be added or subtracted, sets can be combined using specific mathematical operations.

1. Union of Two Sets ($\cup$)

The union of sets $A$ and $B$ is the set containing elements that belong to $A$, or to $B$, or to both. We write this as $A \cup B$ (read as "$A$ union $B$" or "$A$ or $B$").

$A \cup B = \{x \mid x \in A \text{ or } x \in B\}$
U A B

Figure: Union of sets ($A \cup B$, shaded region).

Ex 12
Example 12: If $A = \{2, 3, 5, 7\}$ and $B = \{1, 3, 5, 9, 11\}$, find $A \cup B$.
Show Solution
Combined distinct elements of $A$ and $B$:
$A \cup B = \{1, 2, 3, 5, 7, 9, 11\}$
Ex 13
Example 13: Find the union of the following pair of sets:

(i) $A = \{2, 5, 9\}$, $B = \{1, 4, 7\}$
(ii) $C = \{3, 5, 6\}$, $D = \{3, 4, 5, 6, 9\}$
(iii) $P = \{a, b, d, e\}$, $Q = \{b, c, e, f, g\}$

Show Solution
(i) $A \cup B = \{1, 2, 4, 5, 7, 9\}$
(ii) $C \cup D = \{3, 4, 5, 6, 9\} = D$ (since $C \subseteq D$)
(iii) $P \cup Q = \{a, b, c, d, e, f, g\}$

2. Intersection of Two Sets ($\cap$)

The intersection of sets $A$ and $B$ is the set that contains only the elements present in both $A$ and $B$. We write this as $A \cap B$ (read as "$A$ intersection $B$" or "$A$ and $B$").

$A \cap B = \{x \mid x \in A \text{ and } x \in B\}$
U A B

Figure: Intersection of sets ($A \cap B$, shaded region).

Ex 14
Example 14: Find the intersection of: $A = \{2, 3, 5, 7, 9\}$ and $B = \{3, 5, 9, 11, 13\}$.
Show Solution
Common elements are $3, 5, 9$.
$A \cap B = \{3, 5, 9\}$
Ex 15
Example 15: Find the intersection of the following pairs of sets:

(i) $\{a, b, f\}$ and $\{d, e, f, g\}$
(ii) $\{1, 2, 3, 6, 9\}$ and $\{1, 4, 5, 9, 13\}$
(iii) $\emptyset$ and $\{c, d, e\}$
(iv) $\{x \mid x \text{ is natural number } 4 < x < 10\}$ and $\{x \mid x \text{ is a factor of } 12\}$

Show Solution
(i) $\{f\}$
(ii) $\{1, 9\}$
(iii) $\emptyset$
(iv) Let the sets be $P = \{5, 6, 7, 8, 9\}$ and $Q = \{1, 2, 3, 4, 6, 12\}$. The common element is $6$.
$\Rightarrow P \cap Q = \{6\}$

3. Disjoint Sets

Two sets $A$ and $B$ are said to be disjoint if they have no elements in common. Their intersection is empty:

$A \cap B = \emptyset$
Ex 16
Example 16: Identify pair(s) of disjoint sets from the following:

$A = \{1, 3, 4\}$;   $B = \{5, 6, 7, 8, \dots\}$;   $C = \{x \mid x \text{ is prime factor of } 36\}$;   $D = \{5, 7, 11, 13\}$

Show Solution
First, rewrite $C$ in roster form: prime factors of 36 are 2 and 3 $\Rightarrow C = \{2, 3\}$.
• $A \cap B = \emptyset$, so $A$ and $B$ are disjoint.
• $A \cap D = \emptyset$, so $A$ and $D$ are disjoint.
• $C \cap D = \emptyset$ (since $C=\{2, 3\}$ and $D=\{5, 7, 11, 13\}$), so $C$ and $D$ are disjoint.

4. Difference of Sets

The difference of sets $A$ and $B$ (denoted $A - B$) is the set containing elements which belong to $A$ but do not belong to $B$.

$A - B = \{x \mid x \in A \text{ and } x \notin B\}$
U A B

Figure: Difference of sets ($A - B$, shaded region).

Ex 17
Example 17: Find the difference $A - B$ for:

(i) $A = \{1, 3, 5, 7, 9\}$ and $B = \{2, 6, 8\}$
(ii) $A = \{a, b, p, q\}$ and $B = \{b, q\}$
(iii) $A = \{1, 5, 9\}$ and $B = \{1, 2, 4, 5, 7, 9\}$

Show Solution
(i) Since they share no elements, $A - B = A = \{1, 3, 5, 7, 9\}$.
(ii) Subtract $b, q \Rightarrow A - B = \{a, p\}$.
(iii) Since every element in $A$ is also in $B$ ($A \subseteq B$), subtracting $B$ leaves nothing: $A - B = \emptyset$.
Section 1.13

Complement of a Set

The complement of a set $A$ is the collection of all elements in the Universal set $U$ that do not belong to $A$. Symbolically denoted by $A'$ (or $A^c$):

$A' = \{x \mid x \in U \text{ and } x \notin A\} = U - A$
U A

Figure: Complement of set ($A'$, shaded region outside circle $A$).

Ex 18
Example 18: Given $U = \{x \in \mathbb{N} \mid x \le 9\}$, $A = \{1, 2, 7\}$, and $B = \{1, 6, 8, 9\}$, find:

(a) $A'$    (b) $B'$    (c) $(A \cup B)'$    (d) $A' \cap B'$

Show Solution
First, rewrite $U$ in roster form: $U = \{1, 2, 3, 4, 5, 6, 7, 8, 9\}$.

(a) $A' = U - A = \{3, 4, 5, 6, 8, 9\}$
(b) $B' = U - B = \{2, 3, 4, 5, 7\}$
(c) $A \cup B = \{1, 2, 6, 7, 8, 9\}$. So, $(A \cup B)' = U - (A \cup B) = \{3, 4, 5\}$.
(d) $A' \cap B' = \{3, 4, 5, 6, 8, 9\} \cap \{2, 3, 4, 5, 7\} = \{3, 4, 5\}$.

Observation: Note that $(A \cup B)' = A' \cap B'$. This identity is known as De-Morgan's Law.
Ex 19
Example 19: Given $A = \{1, 3, 5, 8, 9\}$, $B = \{2, 3, 4, 7, 9, 13\}$, and $U = \{1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15\}$, verify De-Morgan's Laws:

(i) $(A \cup B)' = A' \cap B'$      (ii) $(A \cap B)' = A' \cup B'$

Show Solution
(i) $A \cup B = \{1, 2, 3, 4, 5, 7, 8, 9, 13\}$.
$\Rightarrow (A \cup B)' = U - (A \cup B) = \{6, 11, 15\}$.
Now, $A' = \{2, 4, 6, 7, 11, 13, 15\}$ and $B' = \{1, 5, 6, 8, 11, 15\}$.
$\Rightarrow A' \cap B' = \{6, 11, 15\}$. Thus, $(A \cup B)' = A' \cap B'$.

(ii) $A \cap B = \{3, 9\}$.
$\Rightarrow (A \cap B)' = U - (A \cap B) = \{1, 2, 4, 5, 6, 7, 8, 11, 13, 15\}$.
Now, $A' \cup B' = \{2, 4, 6, 7, 11, 13, 15\} \cup \{1, 5, 6, 8, 11, 15\} = \{1, 2, 4, 5, 6, 7, 8, 11, 13, 15\}$.
Thus, $(A \cap B)' = A' \cup B'$.
Section 1.14

Practical Applications & Cardinality Formulae

We can solve real-life survey and partition problems using specific set cardinality relationships. For two finite sets $A$ and $B$, the formulas are:

1. $n(A \cup B) = n(A) + n(B) - n(A \cap B)$
(Number of elements in either $A$ or $B$)
2. $n(A - B) = n(A) - n(A \cap B)$
(Number of elements in $A$ only, not $B$)
3. $n(A' \cap B') = n(U) - n(A \cup B)$
(Number of elements in neither $A$ nor $B$)
4. $n[(A-B) \cup (B-A)] = n(A) + n(B) - 2n(A \cap B)$
(Number of elements in exactly one of the sets)
Ex 20
Example 20: In a class with 40 students, 22 play badminton, 11 play both badminton and table tennis, and 16 play neither badminton nor table tennis. How many play table tennis but not badminton?
Show Solution
Let $B$ be badminton, $T$ be table tennis.
Given: $n(U) = 40$, $n(B) = 22$, $n(B \cap T) = 11$, and $n(B' \cap T') = 16$.
• Step 1: Find $n(B \cup T) = n(U) - n(B' \cap T') = 40 - 16 = 24$.
• Step 2: Apply formula: $n(B \cup T) = n(B) + n(T) - n(B \cap T)$
$\Rightarrow 24 = 22 + n(T) - 11 \Rightarrow 24 = 11 + n(T) \Rightarrow n(T) = 13$.
• Step 3: Find table tennis but not badminton: $n(T - B) = n(T) - n(B \cap T) = 13 - 11 = 2$.
Answer: 2 students.
Ex 21
Example 21: In a group of 120 students, each participated in teaching a language (L) or mathematics (M). 92 teach language, 46 teach mathematics. Find: (a) students who teach both, (b) students who teach only one subject.
Show Solution
Given: $n(L \cup M) = 120$, $n(L) = 92$, $n(M) = 46$.
(a) $n(L \cap M) = n(L) + n(M) - n(L \cup M) = 92 + 46 - 120 = 18$ students.
(b) $n(\text{only one}) = n(L) + n(M) - 2n(L \cap M) = 92 + 46 - 2(18) = 138 - 36 = 102$ students.
Ex 22
Example 22: Survey of 100 students: 70 like Physics (P), 60 like Chemistry (C). Find: (i) max students who like neither, (ii) min students who like both.
Show Solution
$n(P \cup C) = n(P) + n(C) - n(P \cap C) = 70 + 60 - n(P \cap C) = 130 - n(P \cap C)$.
(i) Neither liking $x = 100 - n(P \cup C) = 100 - (130 - n(P \cap C)) = n(P \cap C) - 30$.
This is maximized when $n(P \cap C)$ is maximized. Since $n(P \cap C) \le \min(70, 60) = 60$, the max value of $x = 60 - 30 = \mathbf{30}$.
(ii) Liking both $n(P \cap C) = 130 - n(P \cup C)$. Since $n(P \cup C) \le n(U) = 100$, the minimum possible value of $n(P \cap C) = 130 - 100 = \mathbf{30}$.

Formula for Three Finite Sets

For three sets $A, B$, and $C$, the cardinal relationship is:

$n(A \cup B \cup C) = n(A) + n(B) + n(C) - [n(A \cap B) + n(B \cap C) + n(C \cap A)] + n(A \cap B \cap C)$
Ex 23
Example 23: Online survey of 1000 consumers: 350 rated shampoo A 5-stars, 300 rated B, 250 rated C. 200 rated both A & B, 150 both B & C, 150 both A & C. 100 rated all three. Find: (i) % rating only one, (ii) consumers rating none.
Show Solution
Given: $n(U) = 1000, n(A) = 350, n(B) = 300, n(C) = 250$, $n(A \cap B) = 200, n(B \cap C) = 150, n(A \cap C) = 150$, $n(A \cap B \cap C) = 100$.
Using a Venn diagram breakdown:
• Only $A \cap B \cap C = 100$.
• Only $A \cap B = 200 - 100 = 100$.
• Only $B \cap C = 150 - 100 = 50$.
• Only $A \cap C = 150 - 100 = 50$.
• Only $A = 350 - (100 + 100 + 50) = 100$.
• Only $B = 300 - (100 + 100 + 50) = 50$.
• Only $C = 250 - (50 + 100 + 50) = 50$.

(i) Rated only one: $\text{only } A + \text{only } B + \text{only } C = 100 + 50 + 50 = 200$. Percentage = $\frac{200}{1000} \times 100 = 20\%$.
(ii) Rated none: $1000 - n(A \cup B \cup C) = 1000 - (100 + 50 + 50 + 100 + 50 + 50 + 100) = 1000 - 500 = 500$ consumers.

Exercise 1.3 — Ideal Textbook Solutions

Question 1

Find the union $A \cup B$ for each pair

(i) $A = \{1, 2, 3, 7\}$ and $B = \{2, 7, 9\}$

(ii) $A = \{a, b, d, e\}$ and $B = \{a, e, i, o, u\}$

(iii) $A = \{x \mid x \text{ is natural number } > 5\}$ and $B = \{x \mid x \text{ is natural number } < 5\}$

(iv) $A = \emptyset$ and $B = \{2, \alpha, 1, 0\}$

View Complete Solution & Explanation

(i) Solution:
Combine all distinct elements of $A$ and $B$:
$A \cup B = \{1, 2, 3, 7, 9\}$

(ii) Solution:
Combine alphabetic characters:
$A \cup B = \{a, b, d, e, i, o, u\}$

(iii) Solution:
Write the sets in roster form first:
• $A = \{6, 7, 8, 9, \dots\}$
• $B = \{1, 2, 3, 4\}$
Combining them:
$A \cup B = \{1, 2, 3, 4, 6, 7, 8, 9, \dots\}$ or $\{x \in \mathbb{N} \mid x \neq 5\}$

(iv) Solution:
The union of any set with the empty set is the set itself:
$A \cup B = \{0, 1, 2, \alpha\}$

Question 2

Evaluate Intersections ($\cap$)

(i) $\{1, 2\} \cap \{1, 2, 5\}$

(ii) $\{1, 3, 5, 7, 9\} \cap \{2, 4, 6, 8\}$

(iii) $\{g, o, a, t\} \cap \{c, a, t\}$

(iv) $\{x \mid x \text{ is an integer}\} \cap \{x \mid x \text{ is a negative integer}\}$

View Complete Solution & Explanation

(i) Solution: The common elements are 1 and 2.
$\{1, 2\}$

(ii) Solution: The first set contains odd integers, and the second contains even integers. They share no common elements.
$\emptyset$ or $\{\}$

(iii) Solution: The common letters are 'a' and 't'.
$\{a, t\}$

(iv) Solution: Since every negative integer is also an integer (negative integers are a subset of integers), their intersection is the set of negative integers itself.
$\{x \mid x \text{ is a negative integer}\}$

Question 3

Identify Disjoint Sets

Which of the following pairs are disjoint sets:

(i) $\{x \mid x \text{ is a multiple of } 2\}$ and $\{x \mid x \text{ is a multiple of } 3\}$

(ii) $\{e, \pi, 2, 0\}$ and $\left\{\frac{2}{3}, \pi, 3, 1, e\right\}$

(iii) $\{x \mid x \text{ is a real number}\}$ and $\{x \mid x \text{ is an irrational number}\}$

View Complete Solution & Explanation

Recall that two sets are disjoint if $A \cap B = \emptyset$.

(i) Solution: Not Disjoint
The multiples of 2 and 3 share common multiples (specifically, multiples of 6, like $6, 12, 18, \dots$). Since their intersection is not empty, they are not disjoint.

(ii) Solution: Not Disjoint
Both sets contain the elements $e$ and $\pi$. Their intersection is $\{e, \pi\} \neq \emptyset$. So they are not disjoint.

(iii) Solution: Not Disjoint
Every irrational number is also a real number. Their intersection is the set of irrational numbers, which is non-empty. So they are not disjoint.

Question 4

Find the Set Difference $A - B$

(i) $A = \{1, 3, 5, 8\}$ and $B = \{3, 7, 8, 9\}$

(ii) $A = \{3, 0, 8\}$ and $B = \{1, 3, 0, 8, 9\}$

(iii) $A = \{2, 6\}$ and $B = \{1, 3, 5, 9\}$

View Complete Solution & Explanation

Recall that $A - B$ contains elements that are in $A$ but not in $B$.

(i) Solution:
Remove common elements 3 and 8 from $A$:
$\{1, 5\}$

(ii) Solution:
Since $A \subseteq B$, all elements of $A$ are removed:
$\emptyset$

(iii) Solution:
$A$ and $B$ share no common elements. Removing elements of $B$ from $A$ changes nothing:
$\{2, 6\}$

Question 5

Venn Diagram Interpretation

Use the Venn diagram below to find the following sets:

U A B C 1,2 4 5 6,7 8 9 10

(i) $A$      (ii) $B$      (iii) $(A \cap B)'$      (iv) $A - B$      (v) $A \cup B \cup C$      (vi) $A \cap (B \cup C)$

View Complete Solution & Explanation

Based on the elements in the Venn diagram:

  • Universal set $U = \{1, 2, 4, 5, 6, 7, 8, 9, 10\}$
  • Set $A = \{1, 2, 4, 5\}$
  • Set $B = \{4, 5, 6, 7, 8\}$
  • Set $C = \{5, 8, 9\}$

Solutions:

(i) $A$: $\{1, 2, 4, 5\}$

(ii) $B$: $\{4, 5, 6, 7, 8\}$

(iii) $(A \cap B)'$: $A \cap B = \{4, 5\}$. So, $(A \cap B)' = U - \{4, 5\} = \{1, 2, 6, 7, 8, 9, 10\}$.

(iv) $A - B$: Elements in $A$ but not $B$: $\{1, 2\}$.

(v) $A \cup B \cup C$: Combined elements: $\{1, 2, 4, 5, 6, 7, 8, 9\}$.

(vi) $A \cap (B \cup C)$: $B \cup C = \{4, 5, 6, 7, 8, 9\}$. Intersecting with $A$: $\{4, 5\}$.

Question 6

Verify Difference Identity

Verify $A - B = A \cap B'$ using a Venn diagram.

View Complete Solution & Explanation

Let's verify this step-by-step using a Venn diagram of two overlapping sets $A$ and $B$:

  1. Left Hand Side ($A - B$): This region contains elements in $A$ that are strictly outside circle $B$. It corresponds to the left-crescent of circle $A$.
  2. Right Hand Side ($A \cap B'$):
    • $B'$ is the entire region outside circle $B$.
    • When we intersect $B'$ with $A$ ($A \cap B'$), we look for elements that lie inside $A$ AND outside $B$.
    • This is exactly the left-crescent region of circle $A$.

Since both operations describe the exact same region (elements in $A$ only, excluding the overlap $A \cap B$), we have verified that:
$A - B = A \cap B'$

Question 7

Competitive Exam Word Problem

For a competitive exam, 85% of students opted for a Mock Test in Mathematics and 75% opted for a Mock Test in Science.

(a) What is the minimum possible percentage of students who opted for both tests?

(b) If 10% opted for neither, how does the minimum percentage for both change?

View Complete Solution & Explanation

Let $M$ be Mathematics and $S$ be Science.

We know that: $n(M \cup S) = n(M) + n(S) - n(M \cap S)$
$\Rightarrow n(M \cap S) = n(M) + n(S) - n(M \cup S)$

(a) Solution:
To find the minimum possible value of $n(M \cap S)$, we must maximize the union $n(M \cup S)$. Since percentages are capped at 100%, the maximum possible value of $n(M \cup S)$ is 100%.
$\Rightarrow \text{Min } n(M \cap S) = 85\% + 75\% - 100\% = 160\% - 100\% = \mathbf{60\%}$.

(b) Solution:
If 10% opted for neither, then the union of students taking these tests is fixed at:
$n(M \cup S) = 100\% - 10\% = 90\%$.
Substituting this fixed value into our equation:
$\Rightarrow n(M \cap S) = 85\% + 75\% - 90\% = 160\% - 90\% = \mathbf{70\%}$.
The minimum percentage of students who opted for both tests increases to 70%.

Question 8

English and Hindi Speakers

Let $S$ be a set of 50 people. 35 people speak English and 25 speak Hindi. If $k$ is the number of people who speak only English, find the value of $k$, assuming every person speaks at least one of the two languages.

View Complete Solution & Explanation

Let $E$ represent English speakers and $H$ represent Hindi speakers.

We are given:
• $n(E \cup H) = 50$ (since everyone speaks at least one language)
• $n(E) = 35$
• $n(H) = 25$

Step 1: Find the number of people who speak both languages:
$n(E \cup H) = n(E) + n(H) - n(E \cap H)$
$\Rightarrow 50 = 35 + 25 - n(E \cap H)$
$\Rightarrow 50 = 60 - n(E \cap H) \Rightarrow n(E \cap H) = 10$.

Step 2: Find the number of people who speak only English ($k$):
$k = n(E - H) = n(E) - n(E \cap H)$
$\Rightarrow k = 35 - 10 = \mathbf{25}$.

Thus, the value of $k$ is 25.

Question 9

Activity Certificates (3 Sets)

An organization awarded certificates to its 56 students for at least one of the three activities of Origami, Instrumental music and Fine arts. If 17 students received certificates for Origami, 28 for Instrumental music, 25 for Fine arts and only 4 students got certificates for all three, find the number of students who received certificates for exactly two activities.

View Complete Solution & Explanation

Let $O$ = Origami, $I$ = Instrumental music, and $F$ = Fine arts.

We are given:
• $n(O \cup I \cup F) = 56$
• $n(O) = 17$,  $n(I) = 28$,  $n(F) = 25$
• $n(O \cap I \cap F) = 4$

Step 1: Write down the 3-set cardinality formula:
$n(O \cup I \cup F) = n(O) + n(I) + n(F) - [n(O \cap I) + n(I \cap F) + n(F \cap O)] + n(O \cap I \cap F)$

Let $S_2 = n(O \cap I) + n(I \cap F) + n(F \cap O)$ represent the sum of double intersections.

$\Rightarrow 56 = 17 + 28 + 25 - S_2 + 4$
$\Rightarrow 56 = 74 - S_2 \Rightarrow S_2 = 18$.

Step 2: Relate $S_2$ to the number of students receiving certificates for exactly two activities:
$S_2 = (\text{exactly two}) + 3 \times n(O \cap I \cap F)$
$\Rightarrow 18 = (\text{exactly two}) + 3(4)$
$\Rightarrow 18 = (\text{exactly two}) + 12 \Rightarrow \text{exactly two} = 18 - 12 = \mathbf{6}$.

Thus, 6 students received certificates for exactly two activities.

Question 10

Multilingual School Survey

A survey of a group of 100 students revealed that 60 spoke English (E), 50 spoke German (G), and 35 spoke Spanish (S). Further, 40 spoke both English and German, 30 spoke both German and Spanish, 25 spoke both English and Spanish, and 25 spoke all three languages. Answer the following using a Venn diagram:

(a) How many students could speak at least two languages?

(b) How many students could speak at most one language?

(c) How many students could not speak any of the three languages?

View Complete Solution & Explanation

Let's calculate the values for each region of the 3-circle Venn diagram starting from the center:

  1. All three ($E \cap G \cap S$): $25$
  2. Exactly two languages:
    • English and German only: $n(E \cap G) - 25 = 40 - 25 = 15$
    • German and Spanish only: $n(G \cap S) - 25 = 30 - 25 = 5$
    • English and Spanish only: $n(E \cap S) - 25 = 25 - 25 = 0$
  3. Exactly one language:
    • English only: $n(E) - (15 + 25 + 0) = 60 - 40 = 20$
    • German only: $n(G) - (15 + 25 + 5) = 50 - 45 = 5$
    • Spanish only: $n(S) - (0 + 25 + 5) = 35 - 30 = 5$
  4. Union of all speakers ($n(E \cup G \cup S)$):
    $20 (\text{E only}) + 5 (\text{G only}) + 5 (\text{S only}) + 15 (\text{E\&G}) + 5 (\text{G\&S}) + 0 (\text{E\&S}) + 25 (\text{all 3}) = \mathbf{75}$.
  5. None of the languages:
    $n(U) - n(E \cup G \cup S) = 100 - 75 = \mathbf{25}$.

Final Answers:

(a) At least two languages: (exactly two + all three) = $15 + 5 + 0 + 25 = \mathbf{45}$ students.

(b) At most one language: (exactly one + none) = $20 (\text{E only}) + 5 (\text{G only}) + 5 (\text{S only}) + 25 (\text{none}) = \mathbf{55}$ students.

(c) Not speak any: $\mathbf{25}$ students.

Worksheets — Set Operations & Venn Diagrams

Level 1: Basic Mastery

Set Arithmetic & Venn Shading

Focuses on roster union, intersections, differences, complements, and simple shading representations.

  • 1
    Given $U = \{1, 2, 3, \dots, 10\}$, $A = \{1, 3, 5, 7, 9\}$, and $B = \{2, 3, 5, 7\}$. Find:
    (a) $A \cup B$     (b) $A \cap B$     (c) $A - B$     (d) $A'$
  • 2
    Draw a simple Venn diagram containing circles $P$ and $Q$ inside a rectangle $U$. Shade the region representing:
    (a) $P \cap Q'$     (b) $(P \cup Q)'$
  • 3
    In a class of 30 students, 18 play chess and 15 play carrom. If 5 play both, find the number of students who play neither. (Hint: Draw a Venn diagram).
Level 2: Standard Mastery

Algebraic Identities & 2-Set Applications

Verifying De-Morgan's laws, cardinality calculations, and standard word problems.

  • 4
    Prove algebraically that $A - B$ and $B - A$ are disjoint sets. (Show that their intersection is empty).
  • 5
    In a survey of 200 people, 120 read English newspapers and 90 read Hindi newspapers. If 30 read neither, find:
    (a) How many read both papers?     (b) How many read English only?
  • 6
    Given $A = \{x \mid x \text{ is a factor of } 12\}$ and $B = \{x \mid x \text{ is a factor of } 18\}$. Find $A \cap B$ and $A - B$.
Level 3: Advanced Challenges

3-Set Formulae & Algebraic Proofs

Complex 3-set survey problems, extreme overlap limits, and algebraic verifications.

  • 7
    Prove that $(A - B) \cup (B - A) = (A \cup B) - (A \cap B)$ (Symmetric Difference Identity). Draw the corresponding Venn diagram.
  • 8
    In a survey of 100 students, 35 preferred Physics, 45 preferred Chemistry, and 40 preferred Biology. 15 liked both Physics and Chemistry, 18 liked Chemistry and Biology, 12 liked Physics and Biology, and 5 liked all three. Find:
    (a) The number of students who liked only Physics.
    (b) The number of students who liked none of the three subjects.
  • 9
    For any three sets $A, B$, and $C$, show that $A - (B \cup C) = (A - B) \cap (A - C)$.

Quick Revision Notes — Set Operations & Venn Diagrams

60-Second Summary

The core takeaways in under a minute

Set calculations combine distinct elements using specific operations: Union ($\cup$, combining elements of both), Intersection ($\cap$, listing shared elements only), and Difference ($A - B$, elements in $A$ only). Sets with an empty intersection ($A \cap B = \emptyset$) are disjoint. The Complement ($A'$) contains all elements in $U$ except $A$. Visual representations of sets inside a universal rectangle are called Venn Diagrams. Cardinality relationships, like $n(A \cup B) = n(A) + n(B) - n(A \cap B)$, help us solve practical survey problems.

Key Terminology & Symbols

Set operation equations cheat-sheet

Symbol / Term Meaning Key Formula / Identity
$A \cup B$ Union of $A$ and $B$ (either $A$ or $B$) $n(A \cup B) = n(A) + n(B) - n(A \cap B)$
$A \cap B$ Intersection (both $A$ and $B$) $A \cap B = \emptyset$ (if disjoint)
$A - B$ Difference (in $A$ but not $B$) $A - B = A \cap B'$
$A'$ Complement (outside $A$) $A' = U - A$
De-Morgan's Laws Complements of Unions & Intersections $(A \cup B)' = A' \cap B'$
$(A \cap B)' = A' \cup B'$
Symmetric Difference Elements in exactly one set $(A-B) \cup (B-A) = (A \cup B) - (A \cap B)$

Common Mistakes to Avoid

Watch out for these classic exam traps!

1
Assuming Set Difference is Commutative

$A - B \neq B - A$ (unless $A = B$). E.g., if $A = \{1, 2\}$ and $B = \{2, 3\}$, then $A - B = \{1\}$ and $B - A = \{3\}$.

2
Double-Counting the Intersection

When calculating $n(A \cup B)$, always remember to subtract the overlapping elements ($n(A \cap B)$). Writing $n(A \cup B) = n(A) + n(B)$ is only correct if the sets are disjoint.

3
De-Morgan's Sign Swap mistake

When taking the complement, the union changes to an intersection, and vice-versa.
• Correct: $(A \cup B)' = A' \cap B'$
• Incorrect: $(A \cup B)' = A' \cup B'$

Set Operations & Venn Diagrams Chapter Tests

Topic Tests

Take a Practice Test

Select your testing level to practice set operations, Venn diagram representations, De-Morgan's Laws, and survey applications. Each test is out of 24 Marks and contains 10 structured questions. Compare your responses with marking keys to self-grade descriptive parts.

Basic Test

Simple union, intersection, set differences, disjoint checks, and basic word problems.

30 min 10 Q (24M) Easy

Standard Test

NCERT level cardinal equations, De-Morgan's verifications, minimum overlap limits, and Venn analysis.

40 min 10 Q (24M) Medium

Advanced Test

Empty complements, algebraic identity proofs, 3-set shampoo surveys, and double intersection equations.

50 min 10 Q (24M) Hard