Ordering
An ordering is a special kind of relation, we can define an order uniquely as a partial or strict ordering. That is the two are equivalent.
Contents
[hide]Definition
So far it varies so much as to what "Ordering" means that based on the context it could be either partial or strict. The big clue will be the symbols used:
Relation | Partial form | Strict form |
---|---|---|
Less than (or equal to) | ≤ |
< |
(Other ordering symbol) | ⪯ |
≺ |
proper subset (or equal to) | ⊆ |
⊂ |
Partial Ordering
A binary relation that is antisymmetric, reflexive and transitive is a partial ordering. Example ≤
Strict ordering
A relation S in A is a strict ordering if it is asymmetric and transitive. Example <
Reminder of terms
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 |
# | # |
Moving between partial and strict relations
Given a partial relation ≤
a<b⟺[a≤b∧a≠b]
If given a <
a≤b⟺[a<b∨a=b]
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]
Total ordering (Linear ordering)
A (partial or strict) ordering is a total (also known as linear) ordering if ∀a∈A∀b∈B
For example the ordering a|b
Properties
Given a partial ordering ≤
Property | Statement |
---|
Proof that ≤ is a partial ordering ⟺< is a strict ordering
Proof that ≤