Homotopy Type
📂Set TheoryHomotopy Type
Definition
Let’s say a equivalence relation R is defined on a set X. For x∈X, x/R:={y∈X:yRx} is called the equivalence class of x. The set of all equivalence classes given by X is represented as X/R:={x/R:x∈X}.
Explanation
Though the expression might look a bit messy, it’s not a difficult concept at all if you think of an example. On the set of natural numbers N, let’s say that if the remainder when divided by 3 is the same, they are equivalent, and if x,y∈Z are equivalent, let it be represented as x≡y(mod3). Since 5,7 have different remainders when divided by 3, which are 2,1 respectively, they are not equivalent but 11,17, having the remainder 2 when divided by 3, can be written as 11≡17(mod3).
1≡4≡7≡10≡⋯(mod3)2≡5≡8≡11≡⋯(mod3)3≡6≡9≡12≡⋯(mod3)
As can be seen from the calculation above, the equivalence class of 1 is (1/≡)={1,4,7,10,⋯}, and the equivalence class of 2 is (2/≡)={2,5,8,11,⋯}, and the equivalence class of 3 is (3/≡)={3,6,9,12,⋯}. From numbers larger than 3, these three equivalence classes repeat, and thus,
(N/≡)={1/≡,2/≡,3/≡}
As can be seen from the example above, equivalence classes have the following common-sense properties.
Basic Properties
- [1] x/R=∅
- [2] x/R∩y/R=∅⟺xRy
- [3] x/R=y/R⟺xRy
- [4] x/R∩y/R=∅⟺x/R=y/R
Proof
[1]
Since R is an equivalence relation on X, by reflexivity, for all x∈X, xRx, and x∈x/R must hold.
■
Strategy [2][3]: Take an arbitrary z, separate from x,y, and connect the equations using the symmetry and transitivity of the equivalence relation.
[2]
x/R and y/R are not empty sets and are equivalence relations on X, so x/R∩y/R=∅, which is equivalent to
⟺⟺⟺z∈x/R∧z∈y/RzRx∧zRyxRz∧zRyxRy
for some z.
■
[3]
(⟹)
If x/R=y/R, then x/R∩y/R=∅, so by [2], xRy
(⟸)
If xRy, for all z∈x/R, zRx. Since xRy, by the transitivity of R, zRy and z∈y/R. To summarize,
z∈x/R⟹z∈y/R
If we change it to the form of a set inclusion relation,
x/R⊂y/R
Similarly, we can obtain y/R⊂x/R, so
x/R=y/R
■
[4]
Following the principle of syllogism, from [2] and [3],
x/R∩y/R=∅⟺xRy⟺x/R=y/R
■