P: Mostrar que $(\mathbb{Z},|,+,0,1)$ define la multiplicación en $\mathbb{Z}$.
Yo sé cómo hacer esto en $\mathbb{N}$, pero estoy atascado tratando de hacer esto es $\mathbb{Z}$. La idea que tengo es la de definir el mínimo común múltiplo ($lcm$) y el uso de la propiedad de coprimes para definir $x^2$. Desde allí, $(x+y)^2$ me va a permitir definir $x\cdot y$.
Así que primero definir $$z = lcm(x,y) \iff x\mid z \land y \mid z \land \forall m(x \mid m \land y\mid m \rightarrow z \mid m).$$ Then I define $$2x^2 = x(x+1) + x(x-1) = lcm(x,x+1) + lcm(x,x-1).$$ However, I realised that my definition of $lcm(x,y)=z$ could give $z$ as either a negative or positive integer. Without the ordering relation ($<$), I am having difficulty finding a way to define $lcm$ such that I only get the positive $z$. ¿Cómo puedo superar esto?