This link has a good answer to how to define the set of natural numbers with only knowledge of set theory. how to express the set of natural numbers in ZFC However, he depends on the operator * for multiplication. I was wondering if it was possible to define multiplication from within set theory without the need of that nor the need to define addition first. My idea was to try and do a Cartesian product, but it ends up being non-commutative. Could anyone tell me if there's a better way according to these criteria?
-
I think I would just use the normal approach in Peano Arithmetic, using recursive definition in terms of addition; where addition is similarly defined recursively in terms of the successor function; and where the successor function (e.g. in the case of the von Neumann ordinals) is just the function $s(x) = x \cup { x }$. – Niel de Beaudrap Sep 13 '12 at 17:17
-
$m \cdot n = k$ iff $k \in \omega \wedge ( \exists f ) ( f \text{ is a bijection from } k \text{ onto } m \times n )$. Of course, you now have to prove that $m \cdot n$ always exists. (And I would hardly call this better than the usual recursive definition.) – user642796 Sep 13 '12 at 17:22
1 Answers
In fact, in ZFC you can define the cartesian product of two sets (using e.g. Kuratowsky's definition of pair), that is $$A\times B:=\left\{x\in P\left(P\left(\bigcup\{A,B\}\right)\right)\ \Big|\ \exists a\exists b\colon a\in A\land b\in B\land x=\left\{\{a\},\{a,b\}\right\}\right\} $$ then for $n, m\in\mathbb N$ define $n\cdot m$ as the unique element of $\mathbb N$ that can be bijected with $n\times m$. As you note from even writingdown the definition, a lot of other axioms are involved (powerset, union, pairing, comprehension). Also, have fun showing existence and uniqueness and the arithmetic properties (not to mention defining the concepts of function and bijection first). Honestly, recursion is the method of choice for definitions for the set $\mathbb N$ or the class of ordinals. Ordinals are so rich and powerful even in the context of weirdest set theories (e.g. they are always well-founded even if a theory allows non-well-founded sets), it would be a shame to define an operation on them with heacvy machinery instead of recursion.

- 374,180