4. Transitive A relation RRR is transitive if for all elements aaa , bbb , and ccc in AAA, whenever aaa is related to bbb and bbb is related to ccc, then aaa must also be related to ccc. Formally: ∀ a,b,c∈A , ( a,b )∈R and ( b,c )∈R ⟹ ( a,c )∈R.\ forall a, b, c \in A, \ (a, b) \in R \ \text{and} \ (b, c) \in R \implies (a, c) \in R.∀ a,b,c∈A , ( a,b )∈R and ( b,c )∈R⟹( a,c )∈R. Example : The "is an ancestor of" relation is transitive because if aaa is an ancestor of bbb and bbb is an ancestor of ccc, then aaa is an ancestor of ccc. 5. Irreflexive A relation RRR is irreflexive if no element of AAA is related to itself. Formally: ∀ a∈A , ( a,a )∉R.\ forall a \in A, \ (a, a) \ notin R.∀ a∈A , ( a,a )∈/R. Example : The "less than" (<<<) relation is irreflexive because no number is less than itself. 6. Asymmetric A relation RRR is asymmetric if for all elements aaa and bbb in AAA, whenever aaa is related to bbb , bbb is never related to aaa . Formally: ∀ a,b∈A , ( a,b )∈R ⟹ ( b,a )∉R.\ forall a, b \in A, \ (a, b) \in R \implies (b, a) \ notin R.∀ a,b∈A , ( a,b )∈R⟹( b,a )∈/R. Example : The "less than" (<<<) relation is asymmetric because if a< ba < ba <b, then it cannot be true that b<ab < ab<a. 7. Total (or Connex) A relation RRR on a set AAA is total if every pair of elements in AAA is comparable. That is, for any aaa and bbb in AAA, either ( a,b )∈R(a, b) \in R( a,b )∈R or ( b,a )∈R(b, a) \in R( b,a )∈R. Formally: ∀ a,b∈A , a≠b ⟹ ( a,b )∈R or ( b,a )∈R.\ forall a, b \in A, \ a \ neq b \implies (a, b) \in R \ \text{or} \ (b, a) \in R.∀ a,b∈A , a=b⟹( a,b )∈R or ( b,a )∈R. Example : The "less than or equal to" (≤\ leq ≤) relation on the set of real numbers is total, because for any two real numbers aaa and bbb , either a≤ba \ leq ba≤b or b≤ab \ leq ab≤a .