Note: Do not confuse binary operations (+, x, -, …) with relations. Recall the definition for a relation as:

A relation R on a set A is a subset R ⊆ A × A. We often abbreviate the statement (x, y) ∈ R as xRy.

For instance, the binary operation “x” has a numeric value: 3 \times 3 = 9 \text{ and } 40 \times \frac{1}{5} = 8. Yet a mathematical relation, for example “<“, has a True/False value: 3 < 3 \text{ and } 40 < \frac{1}{5} are both False expressions.

 

We want to look at some properties of relations. We will look at three properties for relation expressions:

Suppose A is a set with relation R, then

  1. Relation R is Reflexive if \forall x \in A, \text{ } xRx
  2. Relation R is Symmetric if \forall x,y \in A, \text{ } xRy \rightarrow yRx
  3. Relation R is Transitive if \forall x,y,z \in A, \text{ } xRy \wedge yRz \rightarrow xRz

The first property tells us that if every element, x, in set A is related to itself, then the relation R acting on the set A is termed “reflective.”

The second property tells us that if “x is related to y” from set A implies that “y is also related to x,” then R is termed “symmetric.”

Lastly, if “x is related to y” and “y is related to z” implies that “x is also related to z,” then the relation R is termed “transitive.”

 

Let’s look at the following examples: A = \{ 1, 2, 3, 4\} with relation \le. Then:

\forall x \in A, \text{ } x \le x

In other words \le is reflexive since every number in set A is equal to itself (i.e. 1 \le 1,  2 \le 2, ... are all true expressions)

\forall x,y \in A, \text{ } x \le y \nrightarrow x \le y

In other words \le is not symmetric since we can find some numbers in A such that x \le y does not imply y \le x. For example, 2 \le 4 doesn’t imply 4 \le 2

\forall x, y, z \in A, x \le y \text{ and } y \le z \rightarrow x \le z

In other words \le is transitive. We can take any three numbers (x, y and z) from set A: whenever x \le y \text{ and } y \le z holds true, it implies x \le z. For instance, 2 \le 3 \text{ and } 3 \le 4 implies 2 \le 4

 

Consider the next example: Here A = \{b, c,d, e \} and R is the following relation on A: R = \{ (b,b), (b,c), (b,d), (c,c), (c,b), (c,d), (d,d), (d,b), (d,c) \}. We want to check whether R is reflexive, symmetric or transitive.

  • This relation is not reflexive.  We know this because R doesn’t have the elements (e, e) so we cannot conclude that every element in A is related to itself under the relation R. Note however, that elements b, c and d are related to themselves since we have (b, b), (c, c) and (d, d) in R.
  •  The relation R is symmetric. We can see this because whenever we have xRy, it follows that yRx holds true as well (where x and y are any elements from set A). Unlike the reflexive property, we do not need the relation to hold FOR ALL elements in A. Rather, the condition for symmetry is that WHENEVER some relation holds in A, the reverse should also be implied. In other words: (b, c) implies (c, b); (b, d) implies (d, b) and finally (c, d) implies (d, c). We can also write: bRc and cRb; bRd and dRb; dRc and cRd.
  • The relation R is also transitive. As with symmetry, the transitive property need not hold FOR ALL elements in A. Showing the transitive property will take a bit more work… For example: (d, b) and (b, c) implies (d, c). Similarly, (b, d) and (d, d) implies (b, d). We can do this for all the other pairs, too. In summary, (x, y) and (y, z) implies (x, z) where x, y and z are elements in A.
  • So the relation R is symmetric and transitive.

Sometimes relations are simultaneously reflexive, symmetric and transitive. In such cases we call the relation an Equivalence Relation. 

 

How clear is this post?