Difference between revisions of "Ordering"

From Maths
Jump to: navigation, search
m
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
An ordering is a special kind of [[Relation|relation]], other than the concept of a relation we require three properties before we can define it.
+
{{Refactor notice}}
 +
For partial orderings see [[partial ordering]], the only useful thing on this page not on that page is the theorem at the bottom:
 +
[[Ordering#Proof_that_.5Bmath.5D.5Cle.5B.2Fmath.5D_is_a_partial_ordering_.5Bmath.5D.5Ciff_.3C.5B.2Fmath.5D_is_a_strict_ordering|Proof that <math>\le</math> is a partial ordering <math>\iff <</math> is a strict ordering]]
 +
<hr/>
  
==Note==
+
An ordering is a special kind of [[Relation|relation]], we can define an order uniquely as a partial or strict ordering. That is the two are equivalent.
Partial orderings and strict orderings are very similar, and the terms differ slightly for each. For example for {{M|a}} and {{M|b}} to be '''comparable''' in a partial ordering (for a relation {{M|R}} in {{M|A}}) it means that <math>aRb\vee bRa</math> - an example would be {{M|\le}}
+
  
However! For a strict ordering for {{M|a}} and {{M|b}} to be comparable we must have: <math>a\ne b\implies[aRb\vee bRa]</math>, for example {{M|<}}
+
==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:
 +
{| class="wikitable" border="1"
 +
|-
 +
! Relation
 +
! Partial form
 +
! Strict form
 +
|-
 +
| Less than (or equal to)
 +
| <math>\le</math>
 +
| <math><</math>
 +
|-
 +
| (Other ordering symbol)
 +
| <math>\preceq</math>
 +
| <math>\prec</math>
 +
|-
 +
| proper subset (or equal to)
 +
| <math>\subseteq</math>
 +
| <math>\subset</math>
 +
|}
  
==Required properties==
+
===Partial Ordering===
 +
A binary relation that is antisymmetric, reflexive and transitive is a partial ordering. Example <math>\le</math>
 +
===Strict ordering===
 +
A relation {{M|S}} in {{M|A}} is a strict ordering if it is asymmetric and transitive. Example <math>< </math>
 +
===Reminder of terms===
 
These are restated from the [[Relation|relation]] page for convenience  
 
These are restated from the [[Relation|relation]] page for convenience  
  
Line 49: Line 74:
 
|}
 
|}
  
==Definition==
+
==Moving between partial and strict relations==
If we have "just an ordering" it refers to a partial ordering.
+
Given a partial relation <math>\le</math> we may define a strict relation <math><</math> by:
===Partial Ordering===
+
 
A binary relation that is antisymmetric, reflexive and transitive is a partial ordering. An example of a partial ordering is {{M|\le}}, notice {{M|a\le b}} and <math>b\le a\implies a=b</math>
+
<math>a< b\iff[a\le b\wedge a\ne b]</math>
===Strict ordering===
+
 
A relation {{M|S}} in {{M|A}} is a strict ordering if it is asymmetric and transitive.
+
If given a <math><</math> we can define a <math>\le</math> by:
 +
 
 +
<math>a\le b\iff[a< b\vee a=b]</math>
  
 
==Comparable elements==
 
==Comparable elements==
Line 68: Line 95:
  
 
For example the ordering <math>a|b</math> meaning {{M|a}} divides {{M|b}} (example: <math>(3,6)\iff 3|6</math>) is not total, however <math>\le</math> is, as is <math> ></math>
 
For example the ordering <math>a|b</math> meaning {{M|a}} divides {{M|b}} (example: <math>(3,6)\iff 3|6</math>) is not total, however <math>\le</math> is, as is <math> ></math>
 +
 +
==Properties==
 +
Given a partial ordering <math>\le</math> of <math>A</math> and let {{M|B\subset A}}
 +
{| class="wikitable" border="1"
 +
|-
 +
! Property
 +
! Statement
 +
|-
 +
|}
 +
 +
==Proof that <math>\le</math> is a partial ordering <math>\iff <</math> is a strict ordering==
 +
{{Begin Theorem}}
 +
Proof that <math>\le</math> is a partial ordering <math>\iff <</math> is a strict ordering
 +
{{Begin Proof}}
 +
'''First: <math>\le</math> is partial <math>\implies <</math> is strict'''
 +
 +
# '''<math><</math> is transitive'''
 +
#:
 +
#: Suppose <math>x< y</math> and <math>y < z</math> (which may be written more compactly as <math>x< y< z</math>) then:
 +
#:* <math>x\le y\wedge x\ne y</math>
 +
#:* <math>y\le z\wedge y\ne z</math>
 +
#: As <math>x\le y</math> and <math>y\le z</math> by transitivity of <math>\le</math> we see <math>x\le z</math>
 +
#: ''However'' all we know is <math>x\ne y\wedge y\ne z</math> so we cannot yet conclude <math>x=z</math> or <math>x\ne z</math>
 +
#:: Suppose <math>x=z</math> we already know <math>[x\le y]\wedge [y\le z]</math> but <math>z=x</math>
 +
#:: thus <math>[x\le y]\wedge[y \le x]</math> but <math>\iff y=x</math> '''contradicting''' that <math>y\ne x</math>
 +
#: Now we know <math>x\ne z</math>
 +
#: Noting that <math>[x< y\wedge y< z]\implies [x\le z\wedge x\ne z]\implies x< z</math>. We conclude <math><</math> is transitive.
 +
#:
 +
#:
 +
# '''<math><</math> is asymmetric (we have <math>a< b\implies b\not< a</math>)'''
 +
#:
 +
#: If <math>x< y</math> then we know <math>x\le y\wedge x\ne y</math>
 +
#: So we must have <math>y\not\le x</math> as if:
 +
#:* <math>y\le x</math> were true then we'd have <math>[x\le y\wedge y\le x]\implies x=y</math>
 +
#:*: contradicting that <math>x</math> and {{M|y}} are different
 +
#: But <math>y< x\iff[y\le x\wedge x\ne y]</math> - we do not have <math>y\le x</math> so we cannot have <math>y< x</math>
 +
#: Thus we see that <math>x< y\implies x\not< y</math> - we conclude that <math><</math> is asymmetric
 +
 +
'''Second: <math><</math> is strict <math>\implies \le</math> is partial'''
 +
{{Todo|Fill this out}}
 +
{{End Proof}}
 +
{{End Theorem}}
 +
 +
==Good resources==
 +
* [http://www.math.uah.edu/stat/foundations/Order.html http://www.math.uah.edu/stat/foundations/Order.html]
  
 
{{Definition|Set Theory}}
 
{{Definition|Set Theory}}

Latest revision as of 13:21, 1 January 2016

This page is currently being refactored (along with many others)
Please note that this does not mean the content is unreliable. It just means the page doesn't conform to the style of the site (usually due to age) or a better way of presenting the information has been discovered.

For partial orderings see partial ordering, the only useful thing on this page not on that page is the theorem at the bottom: Proof that is a partial ordering < is a strict 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.

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 aAbA(aRbbRa) equiv relations
Antisymmetric aAbA([aRbbRa]a=b) Let A=N then [abba]a=b #
Asymmetric aAbB(aRb(b,a)R) If a<b then b<a is false #
Reflexive aA(aRa) equiv relations, Let A=N then aa #
Transitive aAbAcA([aRbbRc]aRc) equiv relations, A=N then abbcabcac # #

Moving between partial and strict relations

Given a partial relation we may define a strict relation < by:

a<b[abab]

If given a < we can define a by:

ab[a<ba=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 aRbbRa

Strict ordering

For a and b to be comparable we require ab[aRbbRa], notice that false implies false

Total ordering (Linear ordering)

A (partial or strict) ordering is a total (also known as linear) ordering if aAbB, 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 >

Properties

Given a partial ordering of A and let BA

Property Statement

Proof that is a partial ordering < is a strict ordering

[Expand]

Proof that is a partial ordering < is a strict ordering


Good resources