Mi objetivo aquí es encontrar una biyección desde $\mathbb{Z} \to \mathbb{Z} \times \mathbb{Z}$ (esto es dejar $0 \in \mathbb{Z}$
Esto es lo que tengo hasta ahora:
Dejemos que $$A = \{ x^2 - x \mid x \in \mathbb{Z} \} $$ y que $g: \mathbb{Z} \to \mathbb{Z}$ , $g(x) = a \in A$ , $a$ es el mayor elemento de $A$ para lo cual $a \leq x$ es decir
$$ x \geq a $$ $$ \forall_{b \in A} \left( b > a \to b > x \right)$$
La función $g$ asigna un número entero al mayor número triangular que es menor que él mismo. Por ejemplo, $$g(0) = 0$$ $$g(1) = g(2) = 1$$ $$g(3) = g(4) = g(5) = 3$$ $$g(6) = g(7) = g(8) = g(9) = 6$$
Dejemos que $h: \mathbb{Z} \to \mathbb{Z}$ , $h(x) = g(x) - g(g(x) - 1)$
$$h(0) = 0$$ $$h(1) = h(2) = 1$$ $$h(3) = h(4) = h(5) = 2$$ $$h(6) = h(7) = h(8) = h(9) = 3$$
Dejemos que $f: \mathbb{Z} \to \mathbb{Z} \times \mathbb{Z}$ tal que $$f(x) = (x - g(x), h(x) - (x - g(x)))$$
$$f(0) = (0 - 0, 0 - 0) = (0,0) $$ $$f(1) = (1 - 1, 1 - (1 - 1)) = (0, 1) $$ $$f(2) = (2 - 1, 1 - (2 - 1)) = (1, 0) $$ $$f(3) = (3 - 3, 2 - (3 - 3)) = (0, 2) $$ $$f(4) = (4 - 3, 2 - (4 - 3)) = (1, 1) $$ $$f(5) = (5 - 3, 2 - (5 - 3)) = (2, 0) $$ $$ . $$ $$ . $$ $$ . $$
¿Cómo puedo encontrar la inversa de esta función? Aparte de demostrar que es un isomorfismo. El objetivo no es simplemente demostrar que existe una biyección, sino encontrar una biyección.