I am trying to understand how one can check to see if a relation on a set satisfies the properties of reflexivity, transitivity and symmetry.
To be more specific, I work with two examples in which I try to figure out whether these 3 properties hold. As you will see, within the examples I have some questions, but overall I am interested to know if this is how someone would "rigorously" check if the 3 properties hold. I apologize for the lengthy examples but I think that by writing my answers as detailed as I can , this will help others understand if there is a gap in my thinking.
Example 1:
Let $R_1$ be a relation on the set $X = \{a, b, c\}$
$R_1 = \{ (a,c) , (c,a) , (a,b) , (b,a) , (b,c) , (c,b) , (a,a)\} $
Reflexivity requires that $\forall x \in X: xR_1x$ , or in other words that $\forall x \in X: (x,x) \in R_1$
Since $(b,b)$ and $(c,c)$ do not belong in $R_1$, the relation $R_1$ on $X$ is not symmetric.
For transitivity, I want to check if $\forall x,x',x'' \in X :$ if $xR_1x'$ and $x'R_1x''$ , then this implies that $xR_1x''$
I observe that:
$aR_1b$ and $bR_1c$ $\Rightarrow$ $aR_1c$ , which is true
$aR_1c$ and $cR_1b$ $\Rightarrow$ $aR_1b$ , true
$bR_1a$ and $aR_1c$ $\Rightarrow$ $bR_1c$ , true
$bR_1c$ and $cR_1a$ $\Rightarrow$ $bR_1a$ , true
$cR_1a$ and $aR_1b$ $\Rightarrow$ $cR_1b$ , true
$cR_1b$ and $bR_1a$ $\Rightarrow$ $cR_1a$ , true
Thus, I believe that the relation is indeed transitive.
For symmetry, I check if $\forall x,x' \in X:$ if $xR_1x'$ then this implies that $x'R_1x$
Again, I observe that:
$aR_1b$ $\Rightarrow$ $bR_1a$ , which is true
$aR_1c$ $\Rightarrow$ $cR_1a$ , true
$bR_1a$ $\Rightarrow$ $aR_1b$ , true
$bR_1c$ $\Rightarrow$ $cR_1b$ , true
$cR_1a$ $\Rightarrow$ $aR_1c$ , true
$cR_1b$ $\Rightarrow$ $bR_1c$ , true
If I have correctly applied the definitions in order to check if the properties hold, then the second example is the one that puzzles me.
Example 2:
Let $R_2$ be a second relation on the set $X$.
$R_2= \{ (b,c) , (c,b) , (a,a) , (b,b) , (c,c)\}$
$R_2$ is reflexive since $(x,x) \in R_2$ $\forall x \in X$
My question is how can I check if the transitivity property holds, given that I cannot find 3 distinct elements $x,x',x'' \in X$ for which $xR_2x'$ and $x'R_2x'$' , so that I can check if $xR_2x''$ holds or not.
Lastly for symmetry, I think that the relation is indeed symmetric since the only pairs which I can test for symmetry are the following:
$bR_2c$ $\Rightarrow$ $cR_2b$ , which is true
and
$cR_2b$ $\Rightarrow$ $bR_2c$ , which is also true.