Altanis

1.1Equivalence Relations

Updated 11 May 2026Chapter (PDF)

[1.1.1]Definition(Equivalence Relation)#

An equivalence relation on a set AA is any relation \sim satisfying the three following properties:

  1. Reflexivity. aaa \sim a for every aAa \in A.

  2. Symmetry. aba \sim b if and only if bab \sim a for every a,bAa, b \in A.

  3. Transitivity. If aba \sim b and bcb \sim c, then aca \sim c for every a,b,cAa, b, c \in A.

[1.1.2]Remark(Partitions, Equivalence Classes)#

Equivalence relations partition a set SS, where a partition of a set SS is a set of nonempty, disjoint subsets of SS whose union is SS itself. For partitions induced by equivalence relations, we say each subset is an equivalence class, defined by

[a]={b:ba}.[a]_\sim = \{b : b \sim a\}.
[1.1.3]Definition(Quotient by Equivalence Relation)#

The quotient of a set SS with respect to an equivalence relation \sim is the set of all equivalence classes induced by \sim. That is,

S/={[a]:aS}.S/{\sim} = \{[a]_\sim: a \in S\}.

Note. Sets are deduplicated by definition, so redundant equivalence classes are culled.

[1.1.4]Example(Integers Modulo 2)#

Take S=ZS = \bZ and \sim to be such that

ab    ab is even (ab(mod2)).a \sim b \iff a - b \text{ is even } (a \equiv b \pmod 2).

Then Z/={[0],[1]}\bZ/{\sim} = \{[0]_\sim, [1]_\sim\}, with

[0]={zZ:z0(mod2)}[1]={zZ:z1(mod2)}.[0]_\sim = \{z \in \bZ: z \equiv 0 \pmod 2\} \qquad [1]_\sim = \{z \in \bZ: z \equiv 1 \pmod 2\}.

A word is in order about equivalence classes of numbers modulo nn, which will be discussed in the near future.