[Math] The difference between well order and total order

order-theorywell-orders

I am trying to grasp the difference between well ordering and total ordering. So far I have come to the understanding that a total ordering is if a set is transitive, anti-symmetric and follows, a< b, a> b or a=b.

Where as well-ordering is that the conditions above must be satisfied but additionally, every non-empty subset must have a least member. Is this correct?

Thanks in advance.

Best Answer

A well-ordering, as you say, is a linear ordering where every nonempty set has a least element. Every well-ordering is a linear ordering by definition$^*$, but the converse is not true - the following are examples of linear orders which are not well-ordered:

  • $\mathbb{Z}$ ($\mathbb{Z}$ itself has no least element).

  • $\{{1\over n+1}: n\in\mathbb{N}\}\cup\{0\}$ (while the whole set does have a least element, the nonempty proper subset $\{{1\over n+1}: n\in\mathbb{N}\}$ does not).

  • $\mathbb{Q}$, $\mathbb{R}$, $[0, 1]$, ... There are lots.

The simplest examples of well-orderings are the finite linear orders and $\mathbb{N}$ itself (the fact that $\mathbb{N}$ is well-ordered is the thing that makes proof by induction work!). However, there are bigger well-orderings; for example, "$\mathbb{N}+\mathbb{N}$," where "$+$" denotes the sum of linear orders (put the first "after" the second). Concretely, an example of a linear ordering of type $\mathbb{N}+\mathbb{N}$ would be $$\{1-{1\over n+1}: n\in\mathbb{N}\}\cup\{2-{1\over n+1}: n\in\mathbb{N}\}$$ with the usual ordering.

Indeed, there are arbitrarily large well-orderings, even though they get increasingly difficult to visualize. For any infinite cardinal $\kappa$, the set of isomorphism types of well-orderings$^{**}$ of cardinality $\le \kappa$ is itself well-ordered by "embeds into," and has cardinality $>\kappa$ (in fact, $\kappa^+$). For a concrete example, there are uncountable well-ordered sets! Note that this does not rely on the axiom of choice.


$^*$Actually, we can say a bit more: any antisymmetric relation $R$ on a set $X$ satisfying $$\mbox{For all nonempty $Y\subseteq X$, there is some $y\in Y$ with $yRz$ for all other $z\in Y$}$$ is actually a well-ordering (that is, the "linear ordering" requirement is superfluous): we already have antisymmetry, so now just show trichotomy and transitivity:

  • For trichotomy, given $x\not=y$ think about the two-element set $\{x, y\}$ ...

  • For transitivity, suppose $xRy$ and $yRz$ (note: by antisymmetry this means $x\not=z$) but $x\not Rz$. By trichotomy, we have $zRx$. But now think about the three-element set $\{x, y, z\}$ ...


$^{**}$There's a bit of an issue here actually: an isomorphism type is a proper class, so we can't form the set of isomorphism types of well-orderings of a given cardinality. There are various ways to get around this, and it's at this point that the von Neumann ordinals should be introduced. But this should really be a side issue.

Related Question