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 where is a set and is a binary relation on satisfying three axioms for all : (1) reflexivity: ; (2) antisymmetry: if and , then ; (3) transitivity: if and , then .
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 relates to and relates to , then relates to . Unlike a totally ordered set, a poset may have incomparable elements — pairs where neither nor holds.
Worked Example
Problem: Let with the relation (a divides b). Show that is a partially ordered set and identify a pair of incomparable elements.
Step 1: Reflexivity: Every element divides itself: , , , . Reflexivity holds.
Step 2: Antisymmetry: If and for positive integers, then . For instance, but , so no contradiction arises. Antisymmetry holds.
Step 3: Transitivity: If and , then . For example, and , so . Transitivity holds.
Step 4: Incomparable pair: Consider and : and , so they are incomparable. This confirms the order is partial, not total.
Answer: is a poset. The elements and 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).
