Ordered Set
Definition
An ordered set is a set equipped with an order relation that tells how its elements are arranged relative to one another.
Most commonly in this unit, an ordered set means a partially ordered set (poset):
A pair is called a partially ordered set if:
- is reflexive: for every
- is antisymmetric: if and , then
- is transitive: if and , then
Here, is not necessarily the usual numerical less-than-or-equal relation; it is any relation that satisfies these three properties.
Example
Let with the relation “divides” . Then:
- , ,
- ,
- and
This forms an ordered set because divisibility is reflexive, antisymmetric, and transitive.
Main Content
1. Partial Order and Poset
- A partial order is a relation in which not every pair of elements must be comparable.
- In an ordered set, some elements may be related while others may not be. This is what makes it partial rather than total.
Key idea
For elements and :
- If , then is “before” or “below” in the order.
- If neither nor , then the two elements are incomparable.
Example of incomparable elements
Consider the set of subsets of ordered by inclusion :
Here, and are incomparable because neither is a subset of the other.
Common examples of ordered sets
- Natural numbers with
- Integers with
- Sets ordered by inclusion
- Positive integers ordered by divisibility
- Tasks ordered by precedence in scheduling problems
Important properties
Reflexive
- : every element relates to itself
Antisymmetric
- : no two different elements can dominate each other in both directions
Transitive
- : order can be chained consistently
2. Comparable and Incomparable Elements
- Two elements in an ordered set are comparable if one is related to the other.
- If neither element is related to the other, they are incomparable.
Why this matters
In a total order, every pair is comparable. In a partial order, some pairs may not be comparable, which gives the structure more flexibility.
Example
In the set under divisibility:
- and are comparable because
- and are incomparable because and
- and are comparable because
Interpretation
Comparable elements can be placed in a definite order, while incomparable elements represent branches or independent choices.
Real-life meaning
- In project planning, some tasks must be done before others, but some tasks can be done independently.
- In computer science, dependency graphs often form posets because some components depend on others, but unrelated components are incomparable.
3. Chains, Antichains, and Hasse Diagrams
- A chain is a subset of an ordered set in which every pair of elements is comparable.
- An antichain is a subset in which no two distinct elements are comparable.
- A Hasse diagram is a simplified graphical representation of a poset.
Chain
A chain behaves like a linearly ordered sequence.
Example:
This is a chain because every pair can be compared.
Antichain
An antichain contains elements that are mutually incomparable.
Example in subsets of : These form an antichain.
Hasse diagram
A Hasse diagram shows the order relation without drawing:
- self-loops
- repeated transitive edges
- arrows, usually
Instead, elements are placed so that larger elements appear above smaller ones, and lines connect only covering relations.
Example Hasse diagram for divisibility on
6
/ \
2 3
\ /
1
Interpretation:
- divides and
- and divide
- The diagram avoids drawing the direct edge because it is implied by transitivity
Cover relation
An element covers if:
- there is no element such that
This concept is essential in drawing Hasse diagrams.
Working / Process
1. Identify the set
- First, specify the collection of elements you want to study.
- Example: , subsets of a set, tasks in a project, or numbers in a sequence.
2. Choose or verify the relation
- Determine the relation that will define the order.
- Check whether it is reflexive, antisymmetric, and transitive.
- If all three properties hold, the structure is a poset.
3. Analyze the structure
- Find comparable and incomparable elements.
- Determine chains, antichains, maximal and minimal elements if needed.
- Construct a Hasse diagram by drawing only covering relations.
- Use the structure to solve problems in ordering, dependency, or hierarchy.
Advantages / Applications
- Ordered sets provide a clear way to study hierarchy, dependency, and arrangement in mathematics and applied fields.
- They are essential in constructing and understanding Hasse diagrams, which make complex order relations easy to visualize.
- They are widely used in combinatorics, lattice theory, scheduling, data organization, and computer science problems such as dependency resolution and topological ordering.
Summary
- Ordered sets organize elements using a relation that describes precedence or hierarchy.
- A poset is an ordered set with reflexive, antisymmetric, and transitive relation.
- Hasse diagrams give a compact visual form of ordered sets.
Important terms to remember
- ordered set, partial order, poset, comparable, incomparable, chain, antichain, Hasse diagram, cover relation, maximal element, minimal element