What are Set Operations: Union, Intersection, Complement, and Difference?

Set operations refer to mathematical operations that take two input sets and provide a new output set. The four main set operations are Union, Intersection, Complement, and Difference. Union combines elements from both sets, Intersection identifies elements that appear in both sets, Complement is the elements in one set and not the other, and Difference is the elements in one set and not the other. Each of these operations can be applied to two sets in order to produce a new set of elements.


set is a collection of items.

We denote a set using a capital letter and we define the items within the set using curly brackets. For example, suppose we have some set called “A” with elements 1, 2, 3. We would write this as:

A = {1, 2, 3}

This tutorial explains the most common set operations used in probability and statistics.

Union

Union set operation

Definition: The union of sets A and B is the set of items that are in either A or B.

Notation: A ∪ B

Examples:

  • {1, 2, 3} ∪ {4, 5, 6} = {1, 2, 3, 4, 5, 6}
  • {1, 2} ∪ {1, 2} = {1, 2}
  • {1, 2, 3} ∪ {3, 4} = {1, 2, 3, 4}

Intersection

Intersection set operation

Definition: The intersection of sets A and B is the set of items that are in both A and B.

Notation: A ∩ B

Examples:

  • {1, 2, 3} ∩ {4, 5, 6} = {∅}
  • {1, 2} ∩ {1, 2} = {1, 2}
  • {1, 2, 3} ∩ {3, 4} = {3}

Complement

Complement set operation

Definition: The complement of set A is the set of items that are in the universal set U but are not in A.

Notation: A’  or  Ac

Examples:

  • If U = {1, 2, 3, 4, 5, 6} and A = {1, 2}, then Ac = {3, 4, 5, 6}
  • If U = {1, 2, 3} and A = {1, 2}, then Ac = {3}

Difference

Difference set operation

Definition: The difference of sets A and B is the set of items that are in A but not B.

Notation: A – B

Examples:

  • {1, 2, 3} – {2, 3, 4} = {1}
  • {1, 2} – {1, 2} = {∅}
  • {1, 2, 3} – {4, 5} = {1, 2, 3}

Symmetric Difference

Symmetric difference between two sets

Definition: The symmetric difference of sets A and B is the set of items that are in either A or B, but not in both.

Notation: A Δ B

Examples:

  • {1, 2, 3} Δ {2, 3, 4} = {1, 4}
  • {1, 2} Δ {1, 2} = {∅}
  • {1, 2, 3} Δ {4, 5} = {1, 2, 3, 4, 5}

Cartesian Product

Cartesian product of two sets

Definition: The cartesian product of sets A and B is the set of ordered pairs from A and B.

Notation: A x B

Examples:

  • If A = {H, T} and B = {1, 2, 3}, then A x B = {(H, 1), (H, 2), (H, 3), (T, 1), (T, 2), (T, 3)}
  • If A = {T, H} and B = {1, 2, 3}, then A x B = {(T, 1), (T, 2), (T, 3), (H, 1), (H, 2), (H, 3)}
x