ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Discrete Structures
    GE-167
    Progress0 / 67 topics
    Topics
    1. Mathematical Reasoning: Propositional and Predicate Logic2. Propositional Logic: Logical Operators3. Translations Between Symbolic Expressions and Formal English Expression4. Logical Equivalences5. Predicate Logic: Quantifiers6. Nested Quantification7. Equivalences in Predicate Logic8. Translations Between Symbolic Forms and Formal English9. Rules of Inference: Proof Methods and Strategies10. Direct Proof11. Proof by Contraposition12. Proof by Induction13. Proof by Implication14. Existence Proof15. Uniqueness Proofs16. Trivial Proofs17. Vacuous Proofs18. Sets: Notations and Set Operations19. Venn Diagrams20. Countable and Uncountable Sets21. Relations: Equivalence Relations and Partitions22. Partial Orderings23. Recurrence Relations24. Functions: Injective, Surjective, Bijective25. Special Types of Functions26. Function Composition27. Inverse Functions28. Recursive Functions29. Compositions30. Number Theory: Sequences and Series31. Counting: Inclusion and Exclusion Principle32. Pigeonhole Principle33. Permutations and Combinations34. Integers and Divisibility: Division Theorem35. Modular Arithmetic36. LCM and GCD37. Euclidean and Extended Euclidean Method38. Finding Solutions to Congruence39. Primes: Fundamental Theorem of Arithmetic40. Characterizations of Primes41. Mersenne Primes42. Induction: Weak Induction43. Strong Induction44. Recursion and Recurrences: Formulation of Recurrences45. Closed Formulas46. Counting: Product Rule and Sum Rule47. Principle of Inclusion-Exclusion48. Binomial Coefficients49. Pascal's Identity and Pascal’s Triangle50. Binomial Theorem51. Relations: Reflexive, Symmetric, Transitive, and Antisymmetric52. Equivalence Relations and Equivalence Classes53. Partial Orders54. Graph Theory: Terminologies55. Elements of Graph Theory56. Planar Graphs57. Graph Coloring58. Euler Graph59. Hamiltonian Path60. Rooted Trees61. Graph Traversals62. Handshaking Lemma and Corollary63. Special Families of Graphs64. Graph Isomorphism65. Planarity in Graphs66. Eulerian and Hamiltonian Graphs67. Trees in Graph Theory
    GE-167›Relations: Reflexive, Symmetric, Transitive, and Antisymmetric
    Discrete StructuresTopic 51 of 67

    Relations: Reflexive, Symmetric, Transitive, and Antisymmetric

    16 minread
    2,732words
    Advancedlevel

    Relations: Reflexive, Symmetric, Transitive, and Antisymmetric

    A relation on a set AAA is a subset of the Cartesian product A×AA \times AA×A, which means it is a set of ordered pairs of elements from AAA. For example, a relation RRR on a set AAA consists of pairs (a,b)(a, b)(a,b), where both aaa and bbb belong to the set AAA.

    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 RRR on a set AAA is said to be reflexive if every element in AAA is related to itself. In other words, for all a∈Aa \in Aa∈A, the pair (a,a)(a, a)(a,a) must be in RRR.

    Formal Definition:

    ∀a∈A,(a,a)∈R\forall a \in A, (a, a) \in R∀a∈A,(a,a)∈R

    Example:

    Let A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and let R={(1,1),(2,2),(3,3)}R = \{(1, 1), (2, 2), (3, 3)\}R={(1,1),(2,2),(3,3)}. This relation is reflexive because every element in AAA is related to itself.

    Non-Example:

    If A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)}, then the relation is not reflexive, because no element in AAA is related to itself (e.g., (1,1)∉R(1, 1) \notin R(1,1)∈/R).


    2. Symmetric Relation

    A relation RRR on a set AAA is symmetric if for all a,b∈Aa, b \in Aa,b∈A, whenever (a,b)∈R(a, b) \in R(a,b)∈R, it follows that (b,a)∈R(b, a) \in R(b,a)∈R. In other words, if aaa is related to bbb, then bbb must also be related to aaa.

    Formal Definition:

    ∀a,b∈A, if (a,b)∈R, then (b,a)∈R\forall a, b \in A, \text{ if } (a, b) \in R \text{, then } (b, a) \in R∀a,b∈A, if (a,b)∈R, then (b,a)∈R

    Example:

    Let A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,1),(2,3),(3,2)}R = \{(1, 2), (2, 1), (2, 3), (3, 2)\}R={(1,2),(2,1),(2,3),(3,2)}. This relation is symmetric because if (1,2)∈R(1, 2) \in R(1,2)∈R, then (2,1)∈R(2, 1) \in R(2,1)∈R, and similarly for the other pairs.

    Non-Example:

    If A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)}, the relation is not symmetric, because (2,1)∉R(2, 1) \notin R(2,1)∈/R and (3,2)∉R(3, 2) \notin R(3,2)∈/R.


    3. Transitive Relation

    A relation RRR on a set AAA is transitive if for all a,b,c∈Aa, b, c \in Aa,b,c∈A, whenever (a,b)∈R(a, b) \in R(a,b)∈R and (b,c)∈R(b, c) \in R(b,c)∈R, it follows that (a,c)∈R(a, c) \in R(a,c)∈R. In other words, if aaa is related to bbb and bbb is related to ccc, then aaa must also be related to ccc.

    Formal Definition:

    ∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R\forall a, b, c \in A, \text{ if } (a, b) \in R \text{ and } (b, c) \in R, \text{ then } (a, c) \in R∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R

    Example:

    Let A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,3),(1,3)}R = \{(1, 2), (2, 3), (1, 3)\}R={(1,2),(2,3),(1,3)}. This relation is transitive because:

    • (1,2)∈R(1, 2) \in R(1,2)∈R and (2,3)∈R(2, 3) \in R(2,3)∈R, so (1,3)∈R(1, 3) \in R(1,3)∈R, which is true.

    Non-Example:

    If A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)}, the relation is not transitive, because:

    • (1,2)∈R(1, 2) \in R(1,2)∈R and (2,3)∈R(2, 3) \in R(2,3)∈R, but (1,3)∉R(1, 3) \notin R(1,3)∈/R, which violates the transitive property.

    4. Antisymmetric Relation

    A relation RRR on a set AAA is antisymmetric if for all a,b∈Aa, b \in Aa,b∈A, whenever (a,b)∈R(a, b) \in R(a,b)∈R and (b,a)∈R(b, a) \in R(b,a)∈R, it follows that a=ba = ba=b. In other words, if both aaa is related to bbb and bbb is related to aaa, then aaa and bbb must be the same element.

    Formal Definition:

    ∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b\forall a, b \in A, \text{ if } (a, b) \in R \text{ and } (b, a) \in R, \text{ then } a = b∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b

    Example:

    Let A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,1),(3,3)}R = \{(1, 2), (2, 1), (3, 3)\}R={(1,2),(2,1),(3,3)}. This relation is antisymmetric because the only pair (a,b)(a, b)(a,b) and (b,a)(b, a)(b,a) that satisfies the condition is (1,2)(1, 2)(1,2) and (2,1)(2, 1)(2,1), but since these pairs are distinct, antisymmetry holds.

    Non-Example:

    If A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and R={(1,2),(2,1),(2,2)}R = \{(1, 2), (2, 1), (2, 2)\}R={(1,2),(2,1),(2,2)}, the relation is not antisymmetric because both (1,2)(1, 2)(1,2) and (2,1)(2, 1)(2,1) are in RRR, but 1≠21 \neq 21=2, which violates antisymmetry.


    Summary of Properties

    Property Definition Example Non-Example
    Reflexive ∀a∈A,(a,a)∈R\forall a \in A, (a, a) \in R∀a∈A,(a,a)∈R R={(1,1),(2,2),(3,3)}R = \{(1, 1), (2, 2), (3, 3)\}R={(1,1),(2,2),(3,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3} R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3}
    Symmetric ∀a,b∈A, if (a,b)∈R, then (b,a)∈R\forall a, b \in A, \text{ if } (a, b) \in R, \text{ then } (b, a) \in R∀a,b∈A, if (a,b)∈R, then (b,a)∈R R={(1,2),(2,1),(2,3),(3,2)}R = \{(1, 2), (2, 1), (2, 3), (3, 2)\}R={(1,2),(2,1),(2,3),(3,2)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3} R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3}
    Transitive ∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R\forall a, b, c \in A, \text{ if } (a, b) \in R \text{ and } (b, c) \in R, \text{ then } (a, c) \in R∀a,b,c∈A, if (a,b)∈R and (b,c)∈R, then (a,c)∈R R={(1,2),(2,3),(1,3)}R = \{(1, 2), (2, 3), (1, 3)\}R={(1,2),(2,3),(1,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3} R={(1,2),(2,3)}R = \{(1, 2), (2, 3)\}R={(1,2),(2,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3}
    Antisymmetric ∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b\forall a, b \in A, \text{ if } (a, b) \in R \text{ and } (b, a) \in R, \text{ then } a = b∀a,b∈A, if (a,b)∈R and (b,a)∈R, then a=b R={(1,2),(2,1),(3,3)}R = \{(1, 2), (2, 1), (3, 3)\}R={(1,2),(2,1),(3,3)} for A={1,2,3}A = \{1, 2, 3\}A={1,2,3} R={(1,2),(2,1),(2,2)}R = \{(1, 2), (2, 1), (2, 2)\}R={(1,2),(2,1),(2,2)} for A={1,2,3}A = \{1, 2, 3\}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.

    Previous topic 50
    Binomial Theorem
    Next topic 52
    Equivalence Relations and Equivalence Classes

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time16 min
      Word count2,732
      Code examples0
      DifficultyAdvanced