Proof that ordered fields are unbounded

real-analysissolution-verification

I'm trying to prove the following result, which has been presented as an example in my book:

Let $F$ be an ordered field. Then, $F$ is unbounded.


Proof Attempt:

Suppose that $F$ is bounded. Then:

$\exists K \in F: \forall x \in F: x \leq K$

$\exists k \in F: \forall x \in F: k \leq x$

So, the claim is that:

$F = [k,K] = \{x \in F: k \leq x \leq K\}$

Since $K \in F$, $K + 1 \in F$ and $K+1 \notin [k,K]$. That's a contradiction. Since $k \in F$, $k-1 \in F$ and $k-1 \notin F$. That's a contradiction. Hence, $F$ cannot be bounded.

Is the argument above correct? Would there have been a better way to formulate it or no?

Edit:

Let $F$ be an ordered field. Let $A$ be a nonempty subset of $F$. Then:

  1. A is bounded above if $\exists K \in F: \forall x \in A: x \leq K$

  2. A is bounded below if $\exists k \in F: \forall x \in A: k \leq x$

  3. A is bounded if it is bounded below and bounded above.

  4. A is unbounded if it is not bounded.

Those are the definitions given in my book so that's what I'm working with.

Best Answer

Your proof assumes too much (first, how do you know $1>0$, second, why do you know that $k+1>k$, etc)

I think an easier statement to prove is that any ordered field has the integers embedded in them (I'll only show that the naturals are embedded, but you can show the rest by considering $-1$).

We know that $0\neq1$, so $0<1$ or $0>1$. WLOG $0<1$ (if $0>1$, just generate the negative integers instead)

I claim that $k\in F$ for $k\in\mathbb N$. We already know $0,1\in F$. Assuming $0,...,k\in F$, note that $(k-1)+1<k+1$, so $k+1$ is distinct from $0,...,k$, and greater than all of them.

By induction, we showed there exists an embedding of the ordered naturals. You can show there's an ordered embedding of the integers, which would complete the proof.

Related Question