Ordering
An ordering is a special kind of relation, other than the concept of a relation we require three properties before we can define it.
Contents
[hide]Note
Partial orderings and strict orderings are very similar, and the terms differ slightly for each. For example for a and b to be comparable in a partial ordering (for a relation R in A) it means that aRb∨bRa - an example would be ≤
However! For a strict ordering for a and b to be comparable we must have: a≠b⟹[aRb∨bRa], for example <
Required properties
These are restated from the relation page for convenience
Here R will be a relation in A
Property | Statement | Example | Partial | Strict |
---|---|---|---|---|
Symmetric | ∀a∈A∀b∈A(aRb⟹bRa) | equiv relations | ||
Antisymmetric | ∀a∈A∀b∈A([aRb∧bRa]⟹a=b) | Let A=N then [a≤b∧b≤a]⟹a=b | # | |
Asymmetric | ∀a∈A∀b∈B(aRb⟹(b,a)∉R) | If a<b then b<a is false | # | |
Reflexive | ∀a∈A(aRa) | equiv relations, Let A=N then a≤a | # | |
Transitive | ∀a∈A∀b∈A∀c∈A([aRb∧bRc]⟹aRc) | equiv relations, A=N then a≤b∧b≤c⟺a≤b≤c⟹a≤c | # | # |
Definition
If we have "just an ordering" it refers to a partial ordering.
Partial Ordering
A binary relation that is antisymmetric, reflexive and transitive is a partial ordering. An example of a partial ordering is ≤, notice a≤b and b≤a⟹a=b
Strict ordering
A relation S in A is a strict ordering if it is asymmetric and transitive.
Comparable elements
We say a and b are comparable if the following hold:
Partial ordering
For a and b to be comparable we must have aRb∨bRa
Strict ordering
For a and b to be comparable we require a≠b⟹[aRb∨bRa], notice that false implies false
Total ordering (Linear ordering)
A (partial or strict) ordering is a total (also known as linear) ordering if ∀a∈A∀b∈B, a and b are comparable using the definitions above.
For example the ordering a|b meaning a divides b (example: (3,6)⟺3|6) is not total, however ≤ is, as is >