First, we have to define: what is a fraction? For now, we will just say it is an ordered pair $(a, b)$, where $b \ne 0$. We identify $(a, 1)$ with the integer $a$. (The notation doesn't matter, I just chose this so that we don't accidentally use identities we already know)
Here is what we want:
- $(a, 1) + (b, 1) = (a + b, 1)$
- $(a, 1)(b, 1) = (ab, 1)$
- $(a, 1)(1, b) = (a, b)$
- $(ac, bc) = (a, b)$
- Multiplication to distribute over addition.
- Multiplication and addition to be distributive and commutative.
This is sufficient to define everything! First, we show that $(a, 1)(1, a) = (1, 1)$:
$$(a, 1)(1, a) = (a, a) = (a1, a1) = (1, 1)$$
Next, we show $(1, a)(1, b) = (1, ab)$:
$$(ab, 1) \cdot (1, a) \cdot (1, b) = (ab, a) \cdot (1, b) = (b, 1) \cdot (1, b) = (1, 1)$$
Because $(ab, 1) \cdot \left( (1, a) \cdot (1, b) \right) = (1, 1)$, we know that $(1, a) \cdot (1, b) = (1, ab)$.
So now we want to find $(a, b) \cdot (c, d)$. We factor:
$$(a, 1) \cdot (1, b) \cdot (c, 1) \cdot (1, d) = (ac, 1) \cdot (1, bd) = (ac, bd)$$
Now we move on to addition:
$$ \begin{align*}
(a, b) + (c, d) &= (a, 1)(1, b) + (c, 1)(1, d) \\
&= (a, 1)(d, bd) + (c, 1)(b, bd) \\
&= (a, 1)(d, 1)(1, bd) + (c, 1)(b, 1)(1, bd) \\
&= (ad, 1)(1, bd) + (bc, 1)(1, bd) \\
&= [ (ad, 1) + (bc, 1) ] (1, bd) \\
&= (ad + bc, 1)(1, bd) \\
&= (ad + bc, bd)
\end{align*} $$
So, just starting from that bullet list, we have determined that $(a, b) + (c, d)$ must equal $(ad + bc, bd)$. If we change our notation, this gives us what you want.
Fractions are similar: You can think of the fraction $p/q$ as measuring $p$ pieces of $1$ cut into $q$ pieces. In order to measure the total, we need comparable units first; the denominator can be though of as specifying what units one is using.
– Feb 16 '14 at 00:25