1 Fundamentals of Partially Ordered Sets
A binary relation ≤ on a set P is a partial order if it satisfies the following three axioms:
Reflexivity:x≤x for all x∈P.
Antisymmetry: if x≤y and y≤x, then x=y.
Transitivity: if x≤y and y≤z, then x≤z.
The pair (P,≤) is called a partially ordered set (or poset).
We say that ycoversx, written x⋖y, if x<y and there is no element z with x<z<y.
The Hasse diagram of a finite poset (P,≤) is the graph whose vertices are the elements of P, with an upward edge from x to y whenever x⋖y.
Consider P={1,2,3,6,12} partially ordered by divisibility (a∣b). The covering relations are 1⋖2, 1⋖3, 2⋖6, 3⋖6, and 6⋖12.
2 Chains and Antichains
A subset C of a poset P is a chain if every two elements of C are comparable (i.e., x≤y or y≤x). A subset A is an antichain if no two distinct elements of A are comparable.
The height of a poset P is the length of its longest chain (measured as the number of elements minus one). The width of P is the maximum size of an antichain.
3 Dilworth's Theorem
Let w be the width (maximum antichain size) of a finite poset P. Then P can be partitioned into exactly w chains (and no fewer).
Since a chain can contain at most one element from any antichain, at least w chains are needed. It remains to show that w chains suffice, which we prove by induction on ∣P∣.Base case. If ∣P∣=1, then w=1 and P itself is a single chain.Inductive step. Assume ∣P∣≥2 and the theorem holds for all posets of smaller size. Fix a maximum antichain A={a1,…,aw} and define P+={x∈P∣∃a∈A,x≥a},P−={x∈P∣∃a∈A,x≤a}.
(i)P=P+∪P−: Every a∈A belongs to both P+ and P− (since a≥a and a≤a). If some x∈P∖(P+∪P−) existed, then x would be incomparable to every element of A, making A∪{x} an antichain of size w+1, contradicting the maximality of A.(ii)P+⊊PandP−⊊P: If P=A (i.e., P is itself an antichain), the partition into w single-element chains is immediate. Otherwise, elements in P∖A exist, and a careful analysis using minimal and maximal elements shows that neither P+ nor P− equals all of P.(iii) Constructing the partition: Since ∣P+∣<∣P∣ and ∣P−∣<∣P∣, and both P+ and P− have width w (the antichain A witnesses w in each, and they are subposets of P), the induction hypothesis provides partitions C1+,…,Cw+ of P+ and C1−,…,Cw− of P− into chains. Since A is an antichain, each ai lies in a different chain of each partition. After relabeling, ai∈Ci+ and ai∈Ci−.Setting Ci=Ci+∪Ci− for each i, every two elements of Ci are comparable via ai (elements of Ci+ are ≥ai and elements of Ci− are ≤ai), so Ci is a chain. Since Ci+∩Ci−={ai} and P=P+∪P−, the chains C1,…,Cw form a partition of P. □
4 Mirsky's Theorem
Let ℓ be the maximum length (number of elements) of a chain in a finite poset P. Then P can be partitioned into exactly ℓ antichains.
For each x∈P, let h(x) denote the length of the longest chain ending at x. Define Ak={x∈P∣h(x)=k} for k=1,…,ℓ. The sets A1,…,Aℓ partition P. Each Ak is an antichain: if x,y∈Ak with x<y, then h(y)≥h(x)+1>k, contradicting y∈Ak. □
5 Lattices
A poset (L,≤) is a lattice if every pair of elements x,y has a least upper bound (the join, x∨y) and a greatest lower bound (the meet, x∧y).
The positive integers under divisibility form a lattice with a∨b=lcm(a,b) and a∧b=gcd(a,b). The power set 2S of a set S, ordered by inclusion, is a lattice with A∨B=A∪B and A∧B=A∩B.
A lattice L is distributive if x∧(y∨z)=(x∧y)∨(x∧z) for all x,y,z∈L.
6 The Möbius Function and the Incidence Algebra
The Möbius functionμ:P×P→Z of a finite poset P is defined recursively by: μ(x,x)=1,x≤z≤y∑μ(x,z)=0(x<y).
Equivalently, μ(x,y)=−∑x≤z<yμ(x,z) for x<y. When x≤y, we set μ(x,y)=0.
Let P be a locally finite poset and let f,g:P→R. Then g(x)=y≤x∑f(y)⟺f(x)=y≤x∑μ(y,x)g(y).
Substitute g(y)=∑z≤yf(z) into the right-hand side: y≤x∑μ(y,x)z≤y∑f(z)=z≤x∑f(z)z≤y≤x∑μ(y,x).
When z<x, the inner sum ∑z≤y≤xμ(y,x)=0 by the defining property of μ. When z=x, it equals μ(x,x)=1. Therefore the entire expression simplifies to f(x). □
For the poset P=(Z>0,∣) (positive integers ordered by divisibility), μ(d,n)=μMo¨bius(n/d), where μMo¨bius is the classical number-theoretic Möö