Order relation

https://arbital.com/p/order_relation

by Joe Zeng Jul 5 2016 updated Jul 7 2016

A way of determining which elements of a set come "before" or "after" other elements.


An order relation (also called an order or ordering) is a binary relation on a set S that can be used to order the elements in that set.

An order relation satisfies the following properties:

  1. For all aS, aa. (the reflexive property)
  2. For all a,bS, if ab and ba, then a=b. (the antisymmetric property)
  3. For all a,b,cS, if ab and bc, then ac. (the transitive property)

A set that has an order relation is called a partially ordered set (or "poset"), and is its partial order.

Totality of an order

There is also a fourth property that distinguishes between two different types of orders:

  1. For all a,bS, either ab or ba or both. (the [total_relation total] property)

The total property implies the reflexive property, by setting a=b.

If the order relation satisfies the total property, then S is called a Totally ordered set, and is its total order.

Well-ordering

A fifth property that extends the idea of a "total order" is that of the well-ordering:

  1. For every subset X of S, X has a least element: an element x such that for all yX, we have xy.

Well-orderings are very useful: they are the orderings we can perform induction over. (For more on this viewpoint, see the page on [structural_induction].)

Derived relations

The order relation immediately affords several other relations.

Reverse order

We can define a reverse order as follows: ab when ba.

Strict order

From any poset (S,), we can derive a strict order <, which disallows equality. For a,bS, a<b when ab and ab. This strict order is still antisymmetric and transitive, but it is no longer reflexive.

We can then also define a reverse strict order > as follows: a>b when ba and ab.

Incomparability

In a poset that is not totally ordered, there exist elements a and b where the order relation is undefined. If neither ab nor ba then we say that a and b are incomparable, and write ab.

Cover relation

From any poset (S,), we can derive an underlying cover relation , defined such that for a,bS, ab whenever the following two conditions are satisfied:

  1. a<b.
  2. For all sS, as<b implies that a=s.

Simply put, ab means that b is the smallest element of S which is strictly greater than a. ab is pronounced "a is covered by b", or "b covers a", and b is said to be a cover of a.


Comments

Dylan Hendrickson

If the order does not satisfy the total property, then S is a partially ordered set, and le is a partial order on that set, in which case certain elements might be incomparable\.

Any relation satisfying 1-3 is a partial order, and the corresponding set is a poset. A total order is a special kind of partial order defined by also satisfying 4.

Joe Zeng

So effectively all order relations are partial order relations?