Why order needs its own note
Earlier chapters focused on building , , and , then defining their operations carefully. Chapter 4 changes the viewpoint. We now ask not only what the numbers are, but also what sort of order structure they carry.
That shift matters because later concepts such as bounds, supremum, limits, and completeness all depend on the order relation. Before talking about “least upper bounds,” we need to know what kind of order we are even using.
Partial order versus total order
Definition
Total order
A set with relation is totally ordered if:
- for every ,
- and imply ,
- and imply ,
- for every , either or .
The first three conditions say that is a partial order. The fourth condition is the extra comparability condition that makes the order total.
The crucial new feature is comparability. In a total order, there are no two elements left floating without comparison.
Worked example
A standard total order
The usual order on {1,2,3,4} is total. For any two elements, one lies at or
to the left of the other, so comparison is never ambiguous.
Worked example
A partial order that is not total
Let and declare when x divides y.
This is a partial order, but not a total order. The elements 2 and 3 are
incomparable: 2 does not divide 3, and 3 does not divide 2.
This example is important because it shows that “ordered” does not automatically mean “every pair is comparable.” That extra property has to be checked.
Restricted order on a subset
Once an ambient set is totally ordered, every subset inherits that order.
Theorem
Restricted order stays total
If is totally ordered and , then becomes totally ordered when we use the same comparison rule on elements of .
Why does this matter? Because later we will study subsets such as
inside a larger ordered set. We do not invent a new order on ; we restrict the one already living on .
The standard order on and
For integers and rationals, the familiar order can be written in a way that fits the algebra already built in earlier chapters:
So comparison is translated into a statement about the sign of a difference. This is useful because sign, addition, and multiplication are already part of the algebraic language of and .
Theorem
The standard order on and is total
With the usual notion of positivity, the standard order on and on is a total order.
The reason is structural: for any difference , exactly one of three things happens. It is positive, it is zero, or it is negative. Those three cases give , , or , so every pair is comparable.
Order and operations must cooperate
The order is not an isolated decoration. It has to behave properly with the field operations.
Definition
Order-compatible algebra facts
For rational numbers x,y,z:
- if , then ;
- if and , then .
The first rule says translation preserves order. The second says multiplying nonnegative quantities cannot suddenly create a negative result.
Worked example
Why translation invariance matters
If 1/3\le 1/2, then adding 2 to both sides gives
This is not a new theorem each time. It is the same structural rule applied to different numbers.
Without these compatibility rules, the order would not interact correctly with the algebra. Later arguments about intervals, bounds, and absolute values would fall apart.
Fields and ordered fields
One can summarize almost everything we know about by packaging the operations together.
Definition
Field
A field is a set with distinguished elements 0 and 1, together with
addition and multiplication, such that:
- addition and multiplication are associative and commutative,
- multiplication distributes over addition,
- every element has an additive inverse,
- every nonzero element has a multiplicative inverse.
This definition remembers the algebra, but it says nothing about order.
Definition
Ordered field
An ordered field is a field equipped with a total order such that:
- implies ,
- and imply .
So an ordered field is not just “a field plus a comparison symbol.” It is a field whose algebra and order fit together coherently.
The rational numbers are an ordered field. The real numbers will also be an ordered field, but chapter 4 will show that has one more crucial property beyond this: completeness.
Common mistake
A total order is more than a left-to-right picture
Students often think a total order is just “something that can be drawn on a line.” The real point is the comparability axiom. A partial order can still have a clear diagram or hierarchy and yet fail to compare some pairs.
Common mistake
A field is not automatically an ordered field
The field axioms only describe algebraic operations. To become an ordered field, the set also needs a total order, and that order must respect addition and multiplication in the precise way stated above.
Quick checks
Quick check
Why is divisibility on positive integers not a total order?
Look for two incomparable elements.
Solution
Answer
Quick check
If , why does also hold?
Rewrite subtraction as addition.
Solution
Answer
Exercises
Quick check
Explain why every subset of a totally ordered set inherits a total order.
Take two elements of the subset and compare them in the ambient set.
Solution
Guided solution
Quick check
Why is not a field?
Check closure and inverses against the field axioms.
Solution
Guided solution
Related notes
Read this after 3.4 Rationals and well-defined operations and 3.5 Gaps in Q and sqrt(2). Then continue to 4.2 Upper bounds, supremum, and infimum.