The five relationships introduced above describe the main ways sets can be related to one another — from identity, through size equivalence, through varying degrees of overlap, to the multi-set case of partitioning. The capstone table below collects them all with the defining condition, a worked example, and the key fact that distinguishes each relationship from the others.
| Relationship |
Defining condition |
Example |
Key distinguishing fact |
| Equal sets |
same elements: ∀x (x ∈ A ⇔ x ∈ B) |
{1, 2, 3} = {3, 1, 2} |
proved by mutual subset containment (A ⊆ B and B ⊆ A) |
| Equivalent sets |
same cardinality: |A| = |B| |
{a, b, c} ~ {1, 2, 3}; ℕ ~ ℤ |
equal ⇒ equivalent, but not the other way around |
| Disjoint sets |
no common elements: A ∩ B = ∅ |
{1, 2, 3} and {4, 5, 6}; evens and odds |
called "mutually exclusive" in probability |
| Overlapping sets |
A ∩ B ≠ ∅, A ⊄ B, B ⊄ A |
{1, 2, 3} and {2, 3, 4} |
both A \ B and B \ A are non-empty (lens-shaped Venn intersection) |
| Partition (of S) |
non-empty, pairwise disjoint subsets whose union = S |
{evens, odds} of ℤ; residue classes mod n |
every element of S belongs to exactly one piece |