Labs ICT
โญ Pro Login

Partial Ordering

Understand partial orders, Hasse diagrams, and lattices.

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.

๐Ÿงช Quick Quiz

Which of the following is a partial order?