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 Mathematics
    MATH2113
    Progress0 / 25 topics
    Topics
    1. Mathematical Reasoning: Sets, Subsets, Algebra of Sets2. Propositions and Compound Statements3. Basic Logical Operations4. Propositional Logic and its Applications with Statement Problems5. Propositions and Truth Tables6. Tautologies and Contradictions7. Conditional and Bi-conditional Statements8. Arguments in Propositional Logic9. Propositional Functions10. Quantifiers and Negation of Quantified Statements11. Relations and Equivalence Relations12. Partial Ordering Relations13. Functions and Recursively Defined Functions14. Combinatorics: Basics of Counting Methods15. Combinations and Permutations16. Pigeonhole Principle17. Graphs and its Types18. Graph Isomorphism19. Trees in Graph Theory20. Connectivity in Graphs21. Eulerian and Hamiltonian Paths22. Spanning Trees and Shortest Path Problem23. Revisiting Special Functions: Power, Floor, Increasing, Decreasing24. Big O, Little O and Omega Notations25. Orders of the Polynomial Functions
    MATH2113›Partial Ordering Relations
    Discrete MathematicsTopic 12 of 25

    Partial Ordering Relations

    9 minread
    1,603words
    Intermediatelevel

    Partial Ordering Relations


    1. Definition of a Partial Order

    A partial order is a binary relation ≤\leq≤ on a set AAA that satisfies the following three properties:

    1. Reflexive: For all a∈Aa \in Aa∈A, a≤aa \leq aa≤a.
    2. Antisymmetric: For all a,b∈Aa, b \in Aa,b∈A, if a≤ba \leq ba≤b and b≤ab \leq ab≤a, then a=ba = ba=b.
    3. Transitive: For all a,b,c∈Aa, b, c \in Aa,b,c∈A, if a≤ba \leq ba≤b and b≤cb \leq cb≤c, then a≤ca \leq ca≤c.

    A relation ≤\leq≤ on a set AAA is a partial order if it satisfies these three conditions.


    2. Example of a Partial Order

    Consider the set A={1,2,3}A = \{1, 2, 3\}A={1,2,3} and the relation ≤\leq≤ defined on AAA by:

    R={(1,1),(1,2),(1,3),(2,2),(2,3),(3,3)}R = \{(1, 1), (1, 2), (1, 3), (2, 2), (2, 3), (3, 3)\}R={(1,1),(1,2),(1,3),(2,2),(2,3),(3,3)}

    We check the three conditions for partial order:

    • Reflexive: Every element is related to itself, i.e., (1,1),(2,2),(3,3)∈R(1, 1), (2, 2), (3, 3) \in R(1,1),(2,2),(3,3)∈R.
    • Antisymmetric: If (1,2)(1, 2)(1,2) and (2,1)(2, 1)(2,1) were both in RRR, we would need 1=21 = 21=2, but that is not the case. Thus, the relation is antisymmetric.
    • Transitive: For example, if (1,2)(1, 2)(1,2) and (2,3)(2, 3)(2,3) are in RRR, then (1,3)(1, 3)(1,3) must also be in RRR, which it is. This holds for all pairs.

    Thus, RRR is a partial order.


    3. Total Order vs. Partial Order

    A total order (also called linear order) is a special case of a partial order where every pair of elements is comparable. That is, for any two elements aaa and bbb in the set AAA, either a≤ba \leq ba≤b or b≤ab \leq ab≤a holds.

    A partial order does not require that every pair of elements be comparable, meaning there may exist pairs aaa and bbb for which neither a≤ba \leq ba≤b nor b≤ab \leq ab≤a holds.

    Example of a Total Order:

    For the set A={1,2,3}A = \{1, 2, 3\}A={1,2,3}, the relation ≤\leq≤ on AAA defined by:

    R={(1,1),(1,2),(1,3),(2,2),(2,3),(3,3)}R = \{(1, 1), (1, 2), (1, 3), (2, 2), (2, 3), (3, 3)\}R={(1,1),(1,2),(1,3),(2,2),(2,3),(3,3)}

    is also a total order because any two elements are comparable (for any a,b∈Aa, b \in Aa,b∈A, either a≤ba \leq ba≤b or b≤ab \leq ab≤a).

    Example of a Partial Order (Not a Total Order):

    Consider the set B={1,2,3}B = \{1, 2, 3\}B={1,2,3} and the relation ≤\leq≤ defined by:

    R={(1,1),(2,2),(3,3),(1,2)}R = \{(1, 1), (2, 2), (3, 3), (1, 2)\}R={(1,1),(2,2),(3,3),(1,2)}

    This is a partial order because:

    • It is reflexive, antisymmetric, and transitive.
    • However, it is not a total order because 222 and 333 are not comparable under this relation (neither 2≤32 \leq 32≤3 nor 3≤23 \leq 23≤2 holds).

    4. Hasse Diagram for Partial Order

    A Hasse diagram is a graphical representation of a partial order relation. It simplifies the relation by omitting redundant edges (edges that can be inferred via transitivity). In a Hasse diagram:

    • The elements of the set are represented as vertices.
    • An edge from vertex aaa to vertex bbb indicates a≤ba \leq ba≤b, and this edge is drawn only if no other element ccc exists such that a≤c≤ba \leq c \leq ba≤c≤b.

    Example:

    For the set A={1,2,3}A = \{1, 2, 3\}A={1,2,3} with the relation ≤\leq≤ (partial order), the Hasse diagram looks like:

       3
       |
       2
       |
       1
    

    This diagram reflects the order 1≤2≤31 \leq 2 \leq 31≤2≤3.


    5. The Greatest and Least Elements

    In a partially ordered set:

    • The least element (also called the minimum element) is an element mmm such that for all xxx in the set, m≤xm \leq xm≤x.
    • The greatest element (also called the maximum element) is an element MMM such that for all xxx in the set, x≤Mx \leq Mx≤M.

    For the set A={1,2,3}A = \{1, 2, 3\}A={1,2,3} with the relation ≤\leq≤, the least element is 1, and the greatest element is 3.


    6. Upper and Lower Bounds

    In a partially ordered set:

    • An element uuu is an upper bound of a subset S⊆AS \subseteq AS⊆A if for all x∈Sx \in Sx∈S, x≤ux \leq ux≤u.
    • An element lll is a lower bound of a subset S⊆AS \subseteq AS⊆A if for all x∈Sx \in Sx∈S, l≤xl \leq xl≤x.

    For example, in the set A={1,2,3}A = \{1, 2, 3\}A={1,2,3}, if S={1,2}S = \{1, 2\}S={1,2}, then:

    • The upper bound of SSS is 3, because 2≤32 \leq 32≤3.
    • The lower bound of SSS is 1, because 1≤11 \leq 11≤1 and 1≤21 \leq 21≤2.

    7. Antisymmetry and the Partial Order Property

    The antisymmetric property is crucial for distinguishing partial orders from other relations. This property ensures that:

    • If two elements are related in both directions, they must be equal.
    • This prevents any "cyclic" or "non-strict" order in the set, which would break the concept of a partial order.

    Summary of Properties for Partial Order:

    • Reflexive: Every element is comparable to itself.
    • Antisymmetric: If a≤ba \leq ba≤b and b≤ab \leq ab≤a, then a=ba = ba=b.
    • Transitive: If a≤ba \leq ba≤b and b≤cb \leq cb≤c, then a≤ca \leq ca≤c.

    Previous topic 11
    Relations and Equivalence Relations
    Next topic 13
    Functions and Recursively Defined Functions

    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 time9 min
      Word count1,603
      Code examples0
      DifficultyIntermediate