Structured Connections
A binary relation on a set is a set of ordered pairs from — it records which elements are "related." We write when . "Equals," "is less than," "divides," and "is congruent to mod " are all relations. A function is a special relation; more generally, relations model any pairwise connection.
Three properties classify relations:
- Reflexive — for every (each element relates to itself).
- Symmetric — (relatedness is mutual).
- Transitive — and (relatedness chains).
A relation with all three properties is an equivalence relation. Equivalence relations behave like "sameness in some respect" and have a beautiful structure: each partitions the set into disjoint equivalence classes — maximal groups of mutually related elements — that together cover all of . "Congruent mod " partitions the integers into the five remainder classes . Conversely, every partition arises from an equivalence relation, so equivalence relations and partitions are two views of the same idea.
A different combination — reflexive, antisymmetric ( and ), and transitive — is a partial order, capturing "ordering" like or subset inclusion, where some elements may be incomparable. Recognizing which properties a relation has tells you its structure immediately, without examining every pair.
Common pitfall: confusing symmetric with transitive, or assuming a relation with one property has the others. Symmetry reverses a single pair (); transitivity chains two pairs into a third. A relation can have one without the other — "is one step from" (on a number line) is symmetric but not transitive. Only relations with all three of reflexive, symmetric, and transitive are equivalence relations.