Table of Contents
Last modified on June 24th, 2024
The difference between the two sets, ‘A’ and ‘B,’ represented by A – B or A ∖ B, is a set containing elements that are present in set A but absent in set B. To find the difference, we remove all elements of set B from set A, and the resulting set consists of the elements that belong only to A.
Mathematically, the set A – B or A ∖ B read as ‘A minus B’ is represented in set-builder form as:
A – B = {x | x ∈ A and x ∉ B}
Similarly, B – A = {x | x ∈ B and x ∉ A}
Here are the representations of A – B and B – A with a Venn diagram.
Like subtracting numbers, finding the difference between two or more sets requires maintaining the correct order.
Let us consider two sets, A = {2, 4, 5, 8, 9} and B = {3, 4, 5, 6, 7}.
Now, to find A – B, we follow the following steps:
Step 1: Finding the intersection of the sets A and B
A ∩ B
= {2, 4, 5, 8, 9} ∩ {3, 4, 5, 6, 7}
= {4, 5}, the common elements of sets A and B.
Step 2: Eliminating the common elements from set A
A – (A ∩ B)
= {2, 4, 5, 8, 9} – {4, 5}
= {2, 8, 9}
Step 3: Defining the new set A − B
Thus, A – B = {2, 8, 9}
Similarly, B – A is a set obtained by removing the elements of A ∩ B from set B = B – (A ∩ B)
⇒ B – A = {3, 4, 5, 6, 7} – {4, 5} = {3, 6, 7}
Since A – B ≠ B – A, the difference between sets does not follow the commutative law.
Now, representing both results with a Venn diagram, we get
Thus, A – B ≠ B – A
If sets ‘A’ and ‘B’ are disjoint, they have no elements in common. Consequently, when we subtract set ‘B’ from set ‘A,’ there are no elements in ‘A’ to be subtracted or removed.
Mathematically, it can be expressed as
If ‘A,’ ‘B,’ and ‘C’ are three non-empty sets, then their difference represented by A – B – C is a set containing the elements of A that are not present in B and C.
Let A = {1, 2, 3, 4, 5}, B = {2, 3, 5, 6, 7}, and C = {3, 5, 7, 8}, then A – B – C is represented as shown.
The complement of a set A, denoted by A’ or Ac, is the difference between the sets U and A, where ‘U’ is the universal set.
Mathematically, it is expressed as
A’ or Ac = U – A, which represents the set containing all elements of the universal set that are not present in set A.
For example, if A = {4, 9, 16, 25} and U = {0, 1, 4, 9, 16, 25, 36}
A’ = U – A = {0, 1, 4, 9, 16, 25, 36} – {4, 9, 16, 25} = {0, 1, 36}
Intersection Over Union: (A ∪ B)C = AC ∩ BC
Union Over Intersection: (A ∩ B)C = AC ∪ BC
If ‘A’ and ‘B’ are two different sets:
The symmetric difference between two sets refers to a set that includes elements present in either set but not present in the intersection of ‘A’ and ‘B.’ It contains the elements found in sets A or B but not in both.
Mathematically, it is represented by A △ B, or A ⊝ B, or A ⊕ B.
The symmetric difference in sets can also be calculated by the formula
A △ B = (A ∪ B) – (A ∩ B)
Or, A △ B = (A – B) ∪ (B – A)
Here is the Venn diagram of A Δ B.
Let us consider two sets, A = {9, 12, 15, 18} and B = {12, 18, 24, 30}
Now, finding the union of sets, we get
A ∪ B = {9, 12, 15, 18} ∪ {12, 18, 24, 30} = {9, 12, 15, 18, 24, 30}
Finding the intersection of sets, we get
A ∩ B = {9, 12, 15, 18} ∩ {12, 18, 24, 30} = {12, 18}
Now, the symmetric difference between sets A and B is
A △ B = (A ∪ B) – (A ∩ B)
⇒ A △ B = {9, 12, 15, 18, 24, 30} – {12, 18} = {9, 15, 24, 30}
Find the value of n(A △ B) when n(A) = 220, n(B) = 50, and n(A ∩ B) = 35.
As we know, n(A △ B) = n(A U B) – n(A ∩ B) and n(A U B) = n(A) + n(B) – n(A ∩ B)
Here, n(A) = 220, n(B) = 50, and n(A ∩ B) = 35
Now, n(A U B) = 220 + 50 – 35 = 235 and
n(A △ B) = n(A U B) – n(A ∩ B) = 235 – 35 = 200
Thus, n(A △ B) = 35
Given set A = {5, 7, 9, 11} and set B = {5, 7, 11, 13, 17}. Find A – B and B – A.
Here, A = {5, 7, 9, 11} and B = {5, 7, 11, 13, 17}
Now, A – B = {5, 7, 9, 11} – {5, 7, 11, 13, 17} = {9}
B – A = {5, 7, 11, 13, 17} – {5, 7, 9, 11} = {13, 17}
Thus, the differences in sets are A – B = {9} and B – A = {13, 17}
Last modified on June 24th, 2024