Equivalence Relations
Definition
A relation E on A is an equivalence relation if it is:
- Reflexive: ∀a∈A.aEa
- Symmetric: ∀a,b∈A.(aEb⇒bEa)
- Transitive: ∀a,b,c∈A.(aEb∧bEc⇒aEc)
Equivalence Classes
The equivalence class of a under E is:
[a]E={b∈A:aEb}
Examples
| Relation | Equivalence Classes |
|---|
| a=b on any set | Singletons {a} for each a |
| Congruence mod n | {0,n,2n,…},{1,n+1,…},… |
| “Same parity” on Z | {even integers}, {odd integers} |
| Universal relation A×A | Single class containing all of A |
Partitions
Definition
A partition P of A is a collection of non-empty, pairwise disjoint subsets whose union is A:
- ∀B∈P.B=∅
- ∀B1,B2∈P.(B1=B2⇒B1∩B2=∅)
- ⋃B∈PB=A
The elements of a partition are called blocks.
Examples
- {{1,2},{3},{4,5,6}} is a partition of {1,2,3,4,5,6}
- {{1},{2},{3}} is a partition of {1,2,3}
- {{evens},{odds}} is a partition of Z
Examinable Proof: Bijection between Equivalence Relations and Partitions
Theorem: There is a natural bijection Φ:EqRel(A)≅Part(A).
From Equivalence Relation to Partition
Given an equivalence relation E, define:
Φ(E)={[a]E:a∈A}
Well-defined: The equivalence classes form a partition.
- Non-empty: a∈[a]E by reflexivity
- Disjoint: If b∈[a]E∩[a′]E, then aEb and a′Eb. By symmetry and transitivity, aEa′, so [a]E=[a′]E.
- Covering: Every a is in its own class
From Partition to Equivalence Relation
Given a partition P, define:
Φ−1(P)={(a,b):∃B∈P.a∈B∧b∈B}
Well-defined: This is an equivalence relation.
- Reflexive: a is in exactly one block B, so (a,a)∈Φ−1(P)
- Symmetric: If a,b∈B, then b,a∈B
- Transitive: If a,b∈B and b,c∈B′, then b∈B∩B′. Since blocks are disjoint, B=B′, so a,c∈B.
Inverses
Φ−1(Φ(E))=E: aΦ−1(Φ(E))b iff a,b are in the same equivalence class of E, iff aEb.
Φ(Φ−1(P))=P: The blocks of Φ(Φ−1(P)) are the equivalence classes under “in same block of P”, which are the blocks themselves.
Key Step Explanation
The single crucial fact: every a∈A lies in exactly one block of P.
- No fewer (blocks cover A)
- No more (blocks are disjoint)
This drives both directions of the proof.
Quotient Set
The quotient A/E is the set of equivalence classes:
A/E={[a]E:a∈A}
Canonical Map
π:A→A/E sends a to [a]E.
This is the universal surjection associated with E.
Summary
- Equivalence relations: reflexive, symmetric, transitive
- Partitions: non-empty, disjoint blocks covering A
- Bijection: E↦{[a]E} and P↦{(a,b):a,b in same block}
- Quotient A/E is the set of equivalence classes