Topic

PrintPrint

Imagine a line segment of length b with the left end labeled a and the right end labeled c. Starting from a, it takes b steps to the right to reach c. This movement to the right is modeled mathematically by addition:

a + b = c.

From c, it takes b steps to the left to get back to a. This movement to the left is modeled by subtraction:

c − b = a.

Subtraction line segment.svg

Now, a line segment labeled with the numbers 1, 2, and 3. From position 3, it takes no steps to the left to stay at 3, so 3 − 0 = 3. It takes 2 steps to the left to get to position 1, so 3 − 2 = 1. This picture is inadequate to describe what would happen after going 3 steps to the left of position 3. To represent such an operation, the line must be extended.

To subtract arbitrary natural numbers, one begins with a line containing every natural number (0, 1, 2, 3, 4, 5, 6, ...). From 3, it takes 3 steps to the left to get to 0, so 3 − 3 = 0. But 3 − 4 is still invalid since it again leaves the line. The natural numbers are not a useful context for subtraction.

The solution is to consider the integer number line (..., −3, −2, −1, 0, 1, 2, 3, ...). From 3, it takes 4 steps to the left to get to −1:

3 − 4 = −1.

There are some cases where subtraction as a separate operation becomes problematic. For example, 3 − (−2) (i.e. subtract −2 from 3) is not immediately obvious from either a natural number view or a number line view, because it is not immediately clear what it means to move −2 steps to the left or to take away −2 apples. One solution is to view subtraction as addition of signed numbers. Extra minus signs simply denote additive inversion. Then we have 3 − (−2) = 3 + 2 = 5. This also helps to keep the ring of integers "simple" by avoiding the introduction of "new" operators such as subtraction. Ordinarily a ring only has two operations defined on it; in the case of the integers, these are addition and multiplication. A ring already has the concept of additive inverses, but it does not have any notion of a separate subtraction operation, so the use of signed addition as subtraction allows us to apply the ring axioms to subtraction without needing to prove anything.