Mathwords logoMathwords

Partially Ordered Set — Definition, Formula & Examples

A partially ordered set (poset) is a set paired with a binary relation that lets you compare some, but not necessarily all, pairs of elements in a consistent way. The relation must be reflexive, antisymmetric, and transitive.

A partially ordered set is an ordered pair (S,)(S, \leq) where SS is a set and \leq is a binary relation on SS satisfying three axioms for all a,b,cSa, b, c \in S: (1) reflexivity: aaa \leq a; (2) antisymmetry: if aba \leq b and bab \leq a, then a=ba = b; (3) transitivity: if aba \leq b and bcb \leq c, then aca \leq c.

How It Works

To verify that a set with a relation forms a poset, check each of the three axioms. Reflexivity means every element relates to itself. Antisymmetry means two distinct elements cannot each be related to the other. Transitivity means the relation chains: if aa relates to bb and bb relates to cc, then aa relates to cc. Unlike a totally ordered set, a poset may have incomparable elements — pairs where neither aba \leq b nor bab \leq a holds.

Worked Example

Problem: Let S={1,2,3,6}S = \{1, 2, 3, 6\} with the relation aba \mid b (a divides b). Show that (S,)(S, \mid) is a partially ordered set and identify a pair of incomparable elements.
Step 1: Reflexivity: Every element divides itself: 111\mid1, 222\mid2, 333\mid3, 666\mid6. Reflexivity holds.
aa for all aSa \mid a \text{ for all } a \in S
Step 2: Antisymmetry: If aba \mid b and bab \mid a for positive integers, then a=ba = b. For instance, 262 \mid 6 but 626 \nmid 2, so no contradiction arises. Antisymmetry holds.
ab and ba    a=ba \mid b \text{ and } b \mid a \implies a = b
Step 3: Transitivity: If aba \mid b and bcb \mid c, then aca \mid c. For example, 121 \mid 2 and 262 \mid 6, so 161 \mid 6. Transitivity holds.
ab and bc    aca \mid b \text{ and } b \mid c \implies a \mid c
Step 4: Incomparable pair: Consider 22 and 33: 232 \nmid 3 and 323 \nmid 2, so they are incomparable. This confirms the order is partial, not total.
Answer: ({1,2,3,6},)(\{1,2,3,6\}, \mid) is a poset. The elements 22 and 33 are incomparable.

Why It Matters

Posets appear throughout computer science and mathematics — task scheduling uses them to model dependency ordering, and lattice theory in abstract algebra builds directly on poset structure. In discrete math courses, understanding posets is essential for topics like Hasse diagrams, topological sorting, and the study of Boolean algebras.

Common Mistakes

Mistake: Assuming every two elements in a poset are comparable.
Correction: A poset only requires the relation to satisfy reflexivity, antisymmetry, and transitivity. Some pairs may be incomparable. A poset where every pair is comparable is a special case called a totally ordered set (or chain).