UNION OF SET (∪)
- A ∪ B is the set that contains all the elements in either A or B.
INTERSECTION (∩)
- A ∩ B is the set that contains all common elements between sets A and B.
EXAMPLE 1
Let M = {B, E, A, U, T, O} and N = {F, O, B, A, I, N}
What is M ∪ N?
Solution: Since the operation is union of sets, we have to combine all the letters but write the repeated letters only once. Thus
M ∪ N = {B, E, A, U, T, O, F, I, N}
To find the intersection, just enumerate the common elements of M and N. So, we have M ∩ N = {B, A}