What Is a Partial Order?
A partial order is a relation that is reflexive, antisymmetric, and transitive. Unlike total orders, not every pair of elements needs to be comparable.
Properties (poset):
Reflexive: a โค a
Antisymmetric: a โค b and b โค a โ a = b
Transitive: a โค b and b โค c โ a โค c
Examples of Partial Orders
Subset relation (โ):
A โ A โ
A โ B and B โ A โ A = B โ
A โ B and B โ C โ A โ C โ
Divisibility (|):
a | a โ
a | b and b | a โ a = b โ
a | b and b | c โ a | c โ
Note: 2 and 3 are NOT comparable (neither divides the other)
Subset of a power set (โ):
Always a partial order on any collection of sets
Hasse Diagrams
A Hasse diagram is a simplified graph representation of a partial order. We remove self-loops, remove transitive edges, and draw elements upward.
Example: Divisibility on {1, 2, 3, 4, 6, 12}
12
/ \
4 6
/ \ /
2 3
\ /
1
Reading: 1 divides 2 and 3, 2 divides 4, 3 divides 6, etc.
Maximal, Minimal, Greatest, Least
Maximal: An element with no element above it
Minimal: An element with no element below it
Greatest (Maximum): An element โฅ all others
Least (Minimum): An element โค all others
A poset may have multiple maximal/minimal elements
but at most one greatest/least element.