Is it possible to define multiplication of two positive integers only using addition and squaring? Of course I have $5 \cdot 3 = 5 + 5 + 5$ but I would like something without saying do this $n$-times.
Peano Arithmetic has the following two axioms:
- $x \cdot 0 = 0$
- $x \cdot y = x \cdot (y-1) + x$
So I could also write $3 \cdot 5 = 3 \cdot (5-1) + 3 = 3^2 + 3 + 3$ but again I don't "know" how often I need to apply the $2$nd axiom.
I tried a few things and noticed that one has:
$$2xy = (x+y)^2-x^2-y^2 \text{ and } 4xy = (x+y)^2-(x-y)^2$$
Close to $xy$ but still not what I am looking for. And actually this uses subtraction...
Edit: As clarified in the comments: I am asking how to define multiplication inside the structure $(\mathbb{N}, +, \cdot^2)$.