If I were to construct the field of rationals from integers, I might start with the Cartesian product of the integers, something like this: $S = \{(a, b) : a, b \in \mathbb{Z}, b \neq 0\}$.
$S$ is now a set of ordered pairs that look like rational numbers (eg, $(1, 2)$, $(4, 4)$, $(5, 5)$), except I now need at least an additive identity (which I lost by saying $b \neq 0$ to avoid division by 0), so I can define the addition operation on $S$ to be $(ad + bc, bd)$. I can now use $(0,1)$ as the additive identity (eg, $(0,1) + (4,5) = (0(5) + 4(1), 1(5)) = (4, 5)$).
Next, I at least need additive inverses, so I can just invert the first element of the ordered pair: $(-4, 5) + (4, 5) = (-20 + 20, 25) = (0, 25)$. This seems like my additive identity if I think of $\frac{0}{1} = \frac{0}{25}$, but I actually need to set up an equivalence relation to make those two equal, such as $(a, b) \sim (c, d) \leftrightarrow ad = bc$.
That is as far as I've gotten. Does that sound right so far? I do not want to proceed if I am misunderstanding something at this point.
$$-\frac ab\sim\frac{-a}b,$$ $$\frac ab+\frac cd\sim\frac{ad+bc}{bd},$$ $$\frac ab\frac cd\sim\frac{ac}{bd}$$
and so on.
– Jan 20 '20 at 07:49