In primary school you learned that 5 - 3 = 2 is a subtraction. Later a teacher told you it is "really" just addition: 5 + (-3) = 2. Both statements claim to be "the right way to see it," and you are left wondering which one actually is. The honest answer: they are both right, and which perspective is more useful depends on what you are about to do. This satellite pins down exactly when "subtraction is its own operation" matters and when "subtraction is just addition" is the cleaner story.
The short answer
Yes, you can always rewrite a - b as a + (-b). The two expressions denote the same number, and no arithmetic or algebraic rule is broken by the rewrite.
But subtraction is still listed as a separate operation on calculators and in textbooks, for three good reasons: it shows up in language ("how much is left?"), it has its own symbol, and it behaves differently from addition under algebraic laws like commutativity and associativity. The "secretly addition" view and the "its own operation" view are not contradictory — they describe the same thing from two different zoom levels.
The rewrite, in detail
The formal definition is:
Here -b is the additive inverse of b — the unique number that adds to b to give zero. So "subtracting b" and "adding -b" refer to the same output.
Check:
- 5 - 3 \;=\; 5 + (-3) \;=\; 2.
- 7 - 10 \;=\; 7 + (-10) \;=\; -3.
- -4 - 6 \;=\; -4 + (-6) \;=\; -10.
Every row: both sides are equal. The rewrite is not an approximation or a shortcut. It is the literal definition of subtraction.
Why this view helps
Treating subtraction as addition-of-a-negative unlocks the associative and commutative laws, which would otherwise fail for subtraction.
-
Associativity. (a - b) - c is trouble: (2 - 3) - 4 = -5 but 2 - (3 - 4) = 3. Bad. But rewrite everything as addition: (a + (-b)) + (-c) = a + ((-b) + (-c)), which is associativity of addition, which does hold. So once you have flattened all the subtractions into additions with negative signs, brackets stop mattering. You can regroup freely.
-
Commutativity. a - b \neq b - a. But a + (-b) = (-b) + a is just commutativity of addition, which does hold. So addition-with-negatives lets you reorder terms freely — something subtraction appears to forbid.
This is why algebra textbooks say "a linear expression is a sum of signed terms." They aren't fudging — they are taking advantage of the rewrite. An expression like 5 - 3 + 7 - 2 is really 5 + (-3) + 7 + (-2), and you can rearrange those four terms in any order: 5 + 7 + (-3) + (-2) = 12 - 5 = 7. Without the rewrite, you would be stuck evaluating left-to-right.
Why the rewrite unlocks associativity: subtraction fails to be associative because it implicitly left-associates (a - b - c means (a - b) - c) and there is no natural way to right-associate that gives the same answer. Addition is symmetric — it associates both ways. So rewriting in terms of + removes a hidden directionality from the notation.
Why the other view also helps
There are contexts where insisting on the "subtraction is its own operation" view is cleaner.
-
Language and word problems. "How many rupees do you have left after spending \tfrac{1}{3} of your savings?" is a subtraction problem in ordinary English. Rewriting it in terms of "add a negative amount" is grammatically weird and pedagogically unhelpful for a child.
-
Calculators and algorithms. The minus key on a calculator, the subtraction circuit in a CPU, and the column-subtraction algorithm you learned in Class 3 all treat - as a first-class operation. Underneath, they may implement it as addition-of-a-complement, but to the user and to the programmer, it is subtraction.
-
Keeping track of signs on a number line. When you see 5 - 3, the intuition "walk 3 steps left from 5" is immediate. Rewriting it as 5 + (-3) gives the same answer but makes the arithmetic feel more abstract.
A subtle misconception
The misconception: "If subtraction is just addition, then it must be commutative and associative too, because addition is."
Why it feels true: You did the rewrite — 5 - 3 became 5 + (-3) — and then noticed you were doing addition. Addition commutes. Why shouldn't subtraction?
The correct view: The rewrite doesn't "make subtraction commutative" — it moves the non-commutativity to a different place. After the rewrite, 5 + (-3) does commute: (-3) + 5 gives the same 2. But the swap that would correspond to 3 - 5 is 3 + (-5) = -2 — and that is a different sum, because you swapped the contents of the two terms, not the order. The sign - is attached to a specific number; swapping the order of the terms doesn't move the sign.
Put another way: addition is commutative in the a + b slots, not the signs attached to the numbers inside those slots. If you keep the signs attached, you can reorder. If you swap the signs, you have a different problem.
Where the two views agree
For every algebraic purpose, the two views agree on the answer. The rules that look different between them — associativity, commutativity, distributive over negatives — are all consistent once you keep the signs attached. The "subtraction is its own operation" rules are simply the consequences of addition's rules filtered through the default sign convention of the minus symbol.
Here is the table in one place:
| statement in subtraction language | same statement in addition-with-negatives language |
|---|---|
| a - b \neq b - a | a + (-b) \neq b + (-a) (sign stays with its number) |
| a - b - c left-to-right | a + (-b) + (-c) — associativity now holds |
| a - (b + c) = a - b - c | a + (-(b + c)) = a + (-b) + (-c) — distributive of - over + |
| -(-a) = a | (-1)(-1)a = a — inverse of inverse |
The left column is the rule book a school student learns. The right column is the rule book an abstract-algebra student learns. They disagree on surface style; they never disagree on a single number.
Which view should you use on exams?
- Arithmetic problems: either view works. Use whichever feels more natural.
- Algebra where you want to rearrange terms: rewrite everything as addition first, reorder, simplify. This is the cleaner path.
- Equation solving: stay in subtraction language for line-by-line clarity, especially when you "subtract from both sides." Writing "add -10 to both sides" is technically equivalent but reads oddly.
- Programming or physics where sign conventions matter: stay in addition-with-signs language. A force of -5\,\text{N} is "really" adding a negative force, and keeping the sign attached to the magnitude prevents confusion when you reverse a reference direction.
The one-line reconciliation
Subtraction is its own operation in the sense that it has its own symbol, its own algorithm, and its own word in English. Subtraction is also addition-of-a-negative, in the sense that this rewrite is legal everywhere and clarifies the algebraic laws. The two statements are not in competition — they are two valid abstractions of the same arithmetic fact, useful at different moments.
The rewrite a - b = a + (-b) is a zoom-in; it reveals internal structure. The subtraction symbol is a zoom-out; it gives you a convenient label for the most common application of that structure. Both levels of zoom are correct. Knowing when to switch between them is most of what makes school algebra feel fluent.
Related: Operations and Properties · Number Systems · Swap the Order of a Subtraction and Watch It Land Somewhere Else · In BODMAS, Doesn't Division Come Before Multiplication?