Relations: Reflexive, Symmetric, Transitive, and Antisymmetric
A relation on a set A is a subset of the Cartesian product A×A, which means it is a set of ordered pairs of elements from A. For example, a relation R on a set A consists of pairs (a,b), where both a and b belong to the set A.
There are specific properties that a relation can have. These properties are crucial in understanding the nature of relations in mathematics and computer science, especially in set theory and graph theory.
The four main properties that a relation can possess are reflexivity, symmetry, transitivity, and antisymmetry. Below is a detailed explanation of each property:
1. Reflexive Relation
A relation R on a set A is said to be reflexive if every element in A is related to itself. In other words, for all a∈A, the pair (a,a) must be in R.
Formal Definition:
∀a∈A,(a,a)∈R
Example:
Let A={1,2,3} and let R={(1,1),(2,2),(3,3)}. This relation is reflexive because every element in A is related to itself.
Non-Example:
If A={1,2,3} and R={(1,2),(2,3)}, then the relation is not reflexive, because no element in A is related to itself (e.g., (1,1)∈/R).
2. Symmetric Relation
A relation R on a set A is symmetric if for all a,b∈A, whenever (a,b)∈R, it follows that (b,a)∈R. In other words, if a is related to b, then b must also be related to a.
Formal Definition:
∀a,b∈A, if (a,b)∈R, then (b,a)∈R
Example:
Let A={1,2,3} and R={(1,2),(2,1),(2,3),(3,2)}. This relation is symmetric because if (1,2)∈R, then (2,1)∈R, and similarly for the other pairs.
Non-Example:
If A={1,2,3} and R={(1,2),(2,3)}, the relation is not symmetric, because (2,1)∈/R and (3,2)∈/R.
3. Transitive Relation
A relation R on a set A is transitive if for all a,b,c∈A, whenever (a,b)∈R and (b,c)∈R, it follows that (a,c)∈R. In other words, if a is related to b and b is related to c, then a must also be related to c.
Formal Definition:
∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R
Example:
Let A={1,2,3} and R={(1,2),(2,3),(1,3)}. This relation is transitive because:
- (1,2)∈R and (2,3)∈R, so (1,3)∈R, which is true.
Non-Example:
If A={1,2,3} and R={(1,2),(2,3)}, the relation is not transitive, because:
- (1,2)∈R and (2,3)∈R, but (1,3)∈/R, which violates the transitive property.
4. Antisymmetric Relation
A relation R on a set A is antisymmetric if for all a,b∈A, whenever (a,b)∈R and (b,a)∈R, it follows that a=b. In other words, if both a is related to b and b is related to a, then a and b must be the same element.
Formal Definition:
∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b
Example:
Let A={1,2,3} and R={(1,2),(2,1),(3,3)}. This relation is antisymmetric because the only pair (a,b) and (b,a) that satisfies the condition is (1,2) and (2,1), but since these pairs are distinct, antisymmetry holds.
Non-Example:
If A={1,2,3} and R={(1,2),(2,1),(2,2)}, the relation is not antisymmetric because both (1,2) and (2,1) are in R, but 1=2, which violates antisymmetry.
Summary of Properties
| Property |
Definition |
Example |
Non-Example |
| Reflexive |
∀a∈A,(a,a)∈R |
R={(1,1),(2,2),(3,3)} for A={1,2,3} |
R={(1,2),(2,3)} for A={1,2,3} |
| Symmetric |
∀a,b∈A, if (a,b)∈R, then (b,a)∈R |
R={(1,2),(2,1),(2,3),(3,2)} for A={1,2,3} |
R={(1,2),(2,3)} for A={1,2,3} |
| Transitive |
∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R |
R={(1,2),(2,3),(1,3)} for A={1,2,3} |
R={(1,2),(2,3)} for A={1,2,3} |
| Antisymmetric |
∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b |
R={(1,2),(2,1),(3,3)} for A={1,2,3} |
R={(1,2),(2,1),(2,2)} for A={1,2,3} |
Conclusion
These four properties—reflexive, symmetric, transitive, and antisymmetric—are used to classify and analyze relations on sets. They provide a foundation for understanding the structure of relations and are essential concepts in areas such as set theory, database theory, graph theory, and logic.