Then, R = { (a, b), (b, c), (a, c)}
That is,
If "a" is related to "b" and "b" is related to "c", then "a" has to be related to "c".
Important Note :
For a particular ordered pair in R, if we have (a, b) and we don't have (b, c), then we don't have to check transitive for that ordered pair.
So, we have to check transitively, only if we find both (a, b) and (b, c) in R.
Examples:
1)Let A = {1, 2, 3} and R be a relation defined on set A as
R = {(1, 1), (2, 2), (3, 3), (1, 2)}
Note : For the two ordered pairs (2, 2) and (3, 3), we don't find the pair (b, c). So, we don't have to check the condition for those ordered pairs.
2)Let A = {1, 2, 3} and R be a relation defined on set A as
R = {(1, 1), (2, 2), (1, 2), (2, 1)}
3) Let A = {1, 2, 3} and R be a relation defined on set A as
R = {(1, 1), (2, 2), (3, 3), (1, 2), (2, 1), (2, 3), (3, 2)}