Example 1: Checking if a Relation is an Equivalence Relation (Easy)
Let \( A = {1, 2, 3} \). Define a relation \( R \) on \( A \) by \( R = {(1,1), (2,2), (3,3), (1,2), (2,1)} \). Is \( R \) an equivalence relation?
Solution:
- Reflexive: Check if \( (a,a) \in R \) for all \( a \in A \).
Given \( (1,1), (2,2), (3,3) \in R \), so reflexive holds. - Symmetric: For every \( (a,b) \in R \), check if \( (b,a) \in R \).
\( (1,2) \in R \), and \( (2,1) \in R \), so symmetric holds. - Transitive: For \( (1,2) \in R \) and \( (2,1) \in R \), check if \( (1,1) \in R \). It is.
For other pairs, no violation found.
Hence, transitive holds.
Since all three properties hold, \( R \) is an equivalence relation.
