Partial Order
BasisPrerequisites
When you sort a list of numbers from smallest to largest, you are relying on an ordering. But ordering ideas are far more general: you can order subsets by inclusion, tasks by dependency, or integers by divisibility. The abstract structure behind all of these is the partial order — a precise mathematical notion of “comes before or is equal to” that even allows some pairs of elements to be incomparable.
Binary relations
Before defining an order, you need a way to talk about relationships between elements of a set. The key ingredient is the Cartesian product.
Given sets and , their Cartesian product is the set of all ordered pairs with and :
For example, .
A binary relation on a set is any subset . When , you say ” is related to ” and write . The relation describes which ordered pairs are “related” by whatever rule encodes.
Familiar examples:
- The usual on : the pair belongs to the relation because .
- Divisibility on : means such that .
- Set inclusion on a power set: the pair belongs to the relation because .
Three key properties
Not all binary relations are orders. An ordering relation must satisfy three structural conditions.
Reflexivity. Every element is related to itself:
Antisymmetry. If and , then and must be equal:
This rules out cycles: two distinct elements cannot each be “below” the other simultaneously.
Transitivity. If and , then :
This captures the idea that the ordering “propagates” through chains of comparisons.
Definition of a partial order
A partial order on is a binary relation on that is reflexive, antisymmetric, and transitive. The pair is called a partially ordered set, or poset.
The symbol is conventional, but any binary relation satisfying these three axioms is a partial order, regardless of the notation used.
Strict partial order
From any partial order , you get a companion strict partial order defined by:
The strict version is irreflexive ( for all ) and asymmetric (). Either version determines the other, so you can specify a partial order by giving either or .
Examples
Integers under
is the most familiar partial order. Reflexivity (), antisymmetry (if and then ), and transitivity (if and then ) all hold. In this example, every pair of integers is comparable: given any , either or .
Power sets under inclusion
Let be any set and let denote its power set — the set of all subsets of . Then is a partial order.
With , consider the subsets and : neither contains the other, so they are incomparable under . This does not happen in .
Divisibility on positive integers
Define (” divides ”) if there exists with . Then is a partial order:
- Reflexivity: since . ✓
- Antisymmetry: if and for positive integers, then . ✓
- Transitivity: if and , write and ; then , so . ✓
Yet and are incomparable: and .
Hasse diagrams
For finite posets, a Hasse diagram gives a concise visual summary:
- Draw each element as a labelled dot.
- Place higher than whenever .
- Draw a line segment from upward to only when and there is no with (these are called covering relations).
- Omit lines that are already implied by transitivity.
For the divisibility order on , the diagram has at the bottom, and in the middle (each connected to by a line), and at the top (connected to and ). The line from to is left out because it follows from by transitivity.
Comparable and incomparable elements
Two elements are comparable if or . They are incomparable if neither holds; this is sometimes written .
In , every pair is comparable. In , the singletons and are incomparable. The word “partial” in “partial order” refers precisely to this: not every pair of elements needs to be comparable. When every pair is comparable, the result is a stronger notion — the total order, which you will meet in the next checkpoint.
Minimal, maximal, least, and greatest elements
These four terms are easy to confuse; here are their precise meanings.
An element is minimal if nothing in is strictly below it:
An element is maximal if nothing in is strictly above it:
A least element (or minimum) of is an element below every other element:
A greatest element (or maximum) of is an element above every other element:
Key distinction. A least element is automatically minimal, but a minimal element need not be a least element. A poset can have several minimal elements with no least element among them.
Example. Consider divisibility on . The elements and are both minimal (no element of divides either of them strictly), but there is no least element — and are incomparable, so neither is the other. The element is both maximal and the unique greatest element, since and .
When a least element exists, it is unique by antisymmetry; the same applies to a greatest element.
Summary
- The Cartesian product packages ordered pairs. A binary relation on is any subset of .
- A partial order on is reflexive, antisymmetric, and transitive; the pair is a poset.
- The companion strict partial order is defined by and .
- Key examples: , , and divisibility on positive integers.
- Elements can be comparable (one is the other) or incomparable (neither is).
- A least (greatest) element is () every element in and is unique; a minimal (maximal) element merely has nothing strictly below (above) it and need not be unique.