[Math] Rigorous definition of rational, natural numbers

real-analysis

I've just started studying real analysis using Walter Rudin's Principles of Mathematical Analysis The book rigorously constructs the real numbers from rationals via Dedekind cuts. So I've wondered: if the real numbers need a rigorous definition, isn't the same true for rationals numbers, and integers?

What would be the rigorous definition of natural and rational numbers, and why does Rudin skip over this, if he stresses rigor?

Best Answer

The natural numbers can be defined very rigorously using either Zermelo-Fraenkel or Von Neumann-Bernays-Godel Set Theory. Both are axiomatic constructions of almost all of mathematics as we know it.

http://en.wikipedia.org/wiki/Zermelo%E2%80%93Fraenkel_set_theory http://en.wikipedia.org/wiki/Von_Neumann%E2%80%93Bernays%E2%80%93G%C3%B6del_set_theory

The natural numbers are usually defined as $\emptyset=0, \{\emptyset\}=\{0\}=1, \{\{\emptyset\},\emptyset\}=\{1,0\}=2$ and so on. This has the useful property that $n\in n+1$ for any $n\in\mathbb{N}$ and $2=0\cup 1$. We can then define addition inductively in terms of the successor function $0^+=0+1=1$, and $n^+=n+1=(n-1)\cup n=\{0,1,2,\ldots,n-1\}\cup n$.

It takes a bit of work, but you can then prove some things like the successor function (which is basically $n^+=n+1$) is injective.

We then define an equivalence relation ~, as $(a,b)$~$(c,d))$ iff $a+d=b+c$, so given $a,b\in \mathbb{N}$, define $a-b:=\{(c,d)\in\mathbb{N}^2|a+d=c+b\}=:[(a,b)]$. This basically says that if you have something like $5-3$, will will consider that as being equal to $6-4$, since $5+4=6+3$. We can now construct $\mathbb{Z}$.

$\mathbb{Z}:=\{a-b|(a,b)\in\mathbb{N}^2\}$

This says any integer is just the difference of two natural numbers. Now make the equivalence relation ~, as $(a,b)$~$(c,d)$ iff $ad=bc$ and define division, for any $a,b\in\mathbb{Z}, b\neq 0$ as,

$\frac{a}{b}:=\{(c,d)\in\mathbb{Z}|ad=bc \mbox{ and }d\neq 0\}=[(a,b)]$

Again, because we don't have division, we have to define this equivalence class in terms of multiplication (the brother of division) to our definition of division. You'll find as well, that these definitions of division, subtraction, multiplication and addition all behave as you'd expect, and you can prove everything you'd expect you could like commutivity, associtativity, distribution of addition and multiplication, inverses etc.

Finally we'll define $\mathbb{Q}$ as,

$\mathbb{Q}:=\{\frac{a}{b}|a,b\in\mathbb{Z} \mbox{ and } b\neq0\}$

This definition assures that numbers like $\frac{2}{4}=\frac{1}{2}$ by using these equivalence relations and classes.

The reals are then often defined as the completion of $\mathbb{Q}$.

Related Question