Topic · Arithmetic

Properties of Operations

The handful of structural rules — commutativity, associativity, distributivity, identities, inverses — that make arithmetic feel obvious and algebra possible. They're so familiar with ordinary numbers that you stop noticing them, until you meet an operation where one of them quietly fails.

What you'll leave with

  • Precise statements of the five core properties — commutative, associative, distributive, identity, inverse.
  • The intuition for why each one matters: mental math, simplification, and the algebraic moves they license.
  • Specific counter-examples — subtraction isn't commutative, division isn't associative, addition doesn't distribute over multiplication.
  • The trick of running distributivity backwards — what every act of factoring really is.

1. Why bother naming these?

If you've been doing arithmetic for years, you already use these properties dozens of times a day. You add a column of numbers in any order you like. You "FOIL" two binomials without thinking. You pair $25 \times 4$ to get $100$ before tackling the harder factor. Every one of those moves is one of the properties below, applied silently.

So why name them? Two reasons.

First, naming them makes them transferable. The same rules that let you rearrange a sum of integers also govern polynomials, matrices, vectors, and modular arithmetic — but only the ones that hold. The moment you can say "this works because multiplication is commutative," you can also ask "does it still work for $2 \times 2$ matrices?" (Answer: no, and that surprise has bitten generations of students and programmers.)

Second, the properties are the axioms of algebra. Solving $3x + 5 = 17$ is a sequence of five property applications in disguise. Once you can see the moves, "isolate $x$" stops being a black-box ritual and becomes a chain of reversible algebraic facts.

A small inventory

Five properties show up over and over: commutativity (order doesn't matter), associativity (grouping doesn't matter), distributivity (multiplication spreads over addition), and the existence of identity and inverse elements (a do-nothing value, and an undo-it value). Everything else in this page is a consequence of those five.

2. Commutative property

Commutativity

An operation $\star$ is commutative if $a \star b = b \star a$ for every $a$ and $b$. In ordinary numbers, addition and multiplication both have it.

For addition and multiplication on real numbers:

$$ a + b = b + a \qquad a \times b = b \times a $$

It's the rule that lets you rearrange a sum or a product without changing the answer. $3 + 5 = 5 + 3 = 8$. $4 \times 7 = 7 \times 4 = 28$. Trivially obvious — until it isn't.

Examples and non-examples

Commutative
  • $3 + 5 = 5 + 3$
  • $7 \times 9 = 9 \times 7$
  • Addition of any two real numbers
  • Multiplication of any two real numbers
Not commutative
  • $10 - 4 = 6$ but $4 - 10 = -6$ — subtraction
  • $12 \div 3 = 4$ but $3 \div 12 = \tfrac{1}{4}$ — division
  • Putting on socks vs shoes
  • Matrix multiplication ($AB \neq BA$ in general)
Mental-math handle

Commutativity is what lets you scan a sum for "easy pairs." Faced with $17 + 28 + 3 + 22$, you don't have to add left-to-right. Rearrange: $(17 + 3) + (28 + 22) = 20 + 50 = 70$. The total didn't change; the arithmetic got dramatically easier.

3. Associative property

Associativity

An operation $\star$ is associative if $(a \star b) \star c = a \star (b \star c)$ for every $a$, $b$, $c$. Grouping doesn't matter.

For addition and multiplication:

$$ (a + b) + c = a + (b + c) \qquad (a \times b) \times c = a \times (b \times c) $$

This is the property that lets you write $2 + 3 + 4$ without parentheses at all. The expression is unambiguous because however you group it, the answer is $9$:

$$ (2 + 3) + 4 = 5 + 4 = 9 \qquad 2 + (3 + 4) = 2 + 7 = 9 $$

Without associativity, every sum of three or more terms would need explicit parentheses, and a long expression like $a + b + c + d + e$ would be meaningless on its face.

A counter-example you can verify in your head

Subtraction looks like it should be associative — it's just addition's cousin — but it isn't. Take $a = 8, b = 3, c = 2$:

$$ \begin{aligned} (8 - 3) - 2 &= 5 - 2 = 3 \\ 8 - (3 - 2) &= 8 - 1 = 7 \end{aligned} $$

$3 \neq 7$. The grouping changed the answer. That's why the convention "subtraction is read left-to-right" exists — it's a parsing rule papering over a missing property.

Don't confuse the two

Commutativity reorders operands; associativity regroups them. They are independent. Matrix multiplication is associative but not commutative: $(AB)C = A(BC)$, but $AB \neq BA$. You can have one without the other.

4. Distributive property

Distributivity

Multiplication distributes over addition: $a(b + c) = ab + ac$. Read either way — left to right, you're expanding; right to left, you're factoring.

This is the property that links addition and multiplication, and it's the engine of every algebraic manipulation. Spelled out both directions:

$$ a(b + c) = ab + ac \qquad ab + ac = a(b + c) $$

Numerical check: $5 \times (3 + 4) = 5 \times 7 = 35$, and $5 \times 3 + 5 \times 4 = 15 + 20 = 35$. ✓

The geometric picture

Distributivity is literally the area-splitting principle. A rectangle of width $a$ and length $b + c$ has area $a(b+c)$. Slice the length into pieces of $b$ and $c$, and you get two sub-rectangles with areas $ab$ and $ac$. The total is the same either way.

ab ac b c a a(b + c) = ab + ac

Distributivity goes one way

Multiplication distributes over addition. The reverse — addition distributing over multiplication — is not a thing:

$$ a + (b \times c) \;\neq\; (a + b) \times (a + c) $$

Try $a = 2, b = 3, c = 4$: the left side is $2 + 12 = 14$, the right side is $5 \times 6 = 30$. Not even close.

Distributivity, run backwards

Factoring is just distributivity read right-to-left. $45 + 30$ becomes $15 \times 3 + 15 \times 2 = 15(3 + 2) = 15 \times 5 = 75$. The "common factor" you pull out in factoring is the same factor that got pushed into the parentheses by distributivity in the first place.

5. Identity elements

Identity element

For an operation $\star$, an identity is a special value $e$ such that $a \star e = a$ for every $a$ — it leaves every input alone.

In ordinary numbers:

$$ a + 0 = a \qquad a \times 1 = a $$

$0$ is the additive identity; $1$ is the multiplicative identity. Each is the "do-nothing" value for its operation.

They feel almost too obvious to be worth naming, but they earn their keep in two places. First, identities are how we define inverses (next section). Second, they license a trick that runs through all of algebra: rewriting without changing the value.

For example, finding a common denominator is really "multiply by a clever form of $1$":

$$ \frac{1}{a} - \frac{1}{b} \;=\; \frac{1}{a} \cdot \frac{b}{b} - \frac{1}{b} \cdot \frac{a}{a} \;=\; \frac{b - a}{ab} $$

Each fraction got multiplied by $1$ in disguise. The values didn't change; the form did.

The zero property of multiplication

While we're talking about $0$: $a \times 0 = 0$ for every $a$. This isn't a separate axiom — it's a consequence of distributivity. Since $0 = 0 + 0$, we have $a \times 0 = a \times (0 + 0) = a \times 0 + a \times 0$, which forces $a \times 0 = 0$. So $0$ is an absorbing element under multiplication, while it's the identity under addition.

6. Inverse elements

Inverse element

The inverse of $a$ under an operation $\star$ is the unique value $b$ such that $a \star b$ equals the identity. The identity does nothing; the inverse undoes.

For addition: the additive inverse of $a$ is $-a$, because $a + (-a) = 0$.

For multiplication: the multiplicative inverse of $a$ (when $a \neq 0$) is $\tfrac{1}{a}$, because $a \times \tfrac{1}{a} = 1$.

ElementAdditive inverseMultiplicative inverse
$7$$-7$$\tfrac{1}{7}$
$-3$$3$$-\tfrac{1}{3}$
$\tfrac{2}{5}$$-\tfrac{2}{5}$$\tfrac{5}{2}$
$0$$0$does not exist

Inverses are the engine that makes equations solvable. Every step of "solve for $x$" is "apply the inverse of the operation on both sides":

$$ 3x + 5 = 17 \;\xrightarrow{\;-5\;}\; 3x = 12 \;\xrightarrow{\;\times \tfrac{1}{3}\;}\; x = 4 $$

First we added $-5$ (additive inverse of $5$) to undo the $+5$. Then we multiplied by $\tfrac{1}{3}$ (multiplicative inverse of $3$) to undo the $\times 3$. Solving is just applying inverses until the unknown is alone.

Pitfall

$0$ has no multiplicative inverse. The zero property forces $0 \times x = 0$ for every $x$, so no $x$ can ever make $0 \times x = 1$. This is why division by zero is undefined — there's nothing to multiply by.

7. Putting them to work: mental math

The properties earn their keep most visibly in mental arithmetic. Each row below is a calculation a calculator would brute-force, but a human with the right property can do in their head.

CalculationMoveProperty used
$25 \times 37 \times 4$ $= (25 \times 4) \times 37 = 100 \times 37 = 3700$ Commutativity + associativity
$7 \times 103$ $= 7 \times (100 + 3) = 700 + 21 = 721$ Distributivity (expand)
$17 \times 9$ $= 17 \times (10 - 1) = 170 - 17 = 153$ Distributivity over subtraction
$45 + 30$ $= 15(3 + 2) = 15 \times 5 = 75$ Distributivity (factor)
$12 \times 14.99$ $= 12 \times (15 - 0.01) = 180 - 0.12 = 179.88$ Distributivity over subtraction
$7 + (3 + x) - 7$ $= (7 - 7) + 3 + x = 3 + x$ Commutativity + inverses

None of these tricks require new knowledge. They require seeing the properties as moves you're allowed to make, the same way a chess player sees legal moves on the board.

8. Common pitfalls

Assuming everything commutes

Subtraction and division aren't commutative: $10 - 4 \neq 4 - 10$, and $12 \div 3 \neq 3 \div 12$. The moment you leave numbers, the trap deepens — matrix multiplication, function composition, and 3-D rotations all fail to commute, and silently swapping factors quietly corrupts the answer.

Confusing identity with inverse

The identity leaves things unchanged ($a + 0 = a$). An inverse undoes ($a + (-a) = 0$). $0$ is the additive identity; $-7$ is the additive inverse of $7$. These are different objects playing different roles — don't say "the identity of $7$" when you mean "the inverse of $7$."

Distributivity is one-way

Multiplication distributes over addition: $a(b + c) = ab + ac$. Addition does not distribute over multiplication: $a + (b \times c) \neq (a + b)(a + c)$ in general. And squaring doesn't distribute over a sum either — $(a + b)^2 = a^2 + 2ab + b^2$, not $a^2 + b^2$.

Division distributes only one way

$\dfrac{a + b}{c} = \dfrac{a}{c} + \dfrac{b}{c}$ — yes. But $\dfrac{a}{b + c} \neq \dfrac{a}{b} + \dfrac{a}{c}$ — no. Try $a = 1, b = c = 1$: LHS is $\tfrac{1}{2}$, RHS is $2$.

Pitfall

A 25% discount is not reversed by a 25% uplift. The sale multiplier is $0.75$; its multiplicative inverse is $\tfrac{1}{0.75} = \tfrac{4}{3} \approx 1.333$ — a 33.3% increase. This is the most common consumer-arithmetic mistake, and it falls straight out of "the inverse of $r$ is $\tfrac{1}{r}$, not $1 - (r - 1)$."

9. Worked examples

Work through each before opening the solution. The goal isn't the answer — it's to spot which property licensed each step.

Example 1 · Identify the property in $(8 + 3) + 7 = 8 + (3 + 7)$

The operation ($+$) is the same on both sides. The three operands appear in the same order. Only the parentheses moved.

Changing grouping without changing order is the associative property of addition:

$$ (a + b) + c = a + (b + c) $$
Example 2 · Expand $7(12 + 8)$ using distributivity

Step 1. Distribute the $7$ across the sum:

$$ 7(12 + 8) = 7 \cdot 12 + 7 \cdot 8 $$

Step 2. Compute each term: $7 \cdot 12 = 84$ and $7 \cdot 8 = 56$.

Step 3. Add: $84 + 56 = 140$.

Check. Direct: $12 + 8 = 20$; $7 \times 20 = 140$ ✓.

Example 3 · Factor $45 + 30$ using distributivity in reverse

Step 1. Find the greatest common factor: $\gcd(45, 30) = 15$.

Step 2. Rewrite each term with $15$ pulled out:

$$ 45 + 30 = 15 \cdot 3 + 15 \cdot 2 $$

Step 3. Apply $ab + ac = a(b + c)$:

$$ 15 \cdot 3 + 15 \cdot 2 = 15(3 + 2) = 15 \times 5 = 75 $$
Example 4 · Show subtraction is not associative

To disprove a universal claim — "for all $a, b, c$, $(a-b)-c = a-(b-c)$" — a single counter-example suffices.

Try $a = 8, b = 3, c = 2$:

$$ \begin{aligned} (8 - 3) - 2 &= 5 - 2 = 3 \\ 8 - (3 - 2) &= 8 - 1 = 7 \end{aligned} $$

$3 \neq 7$. The claim fails for this triple, so subtraction is not associative.

Example 5 · Solve $3x + 5 = 17$ and name every property used

Step 1. Add $-5$ (additive inverse of $5$) to both sides — uses existence of additive inverses:

$$ 3x + 5 + (-5) = 17 + (-5) $$

Step 2. Simplify using $5 + (-5) = 0$ (definition of inverse) and $3x + 0 = 3x$ (additive identity):

$$ 3x = 12 $$

Step 3. Multiply both sides by $\tfrac{1}{3}$ (multiplicative inverse of $3$):

$$ \tfrac{1}{3} \cdot 3x = \tfrac{1}{3} \cdot 12 $$

Step 4. Simplify using $\tfrac{1}{3} \cdot 3 = 1$ and $1 \cdot x = x$ (multiplicative identity):

$$ x = 4 $$

Every step was a property application. None of it was "magic."

Example 6 · Reverse a 25% discount

A 25% discount multiplies the price by $0.75$. To restore the original, multiply by the multiplicative inverse of $0.75$:

$$ 0.75^{-1} = \frac{1}{0.75} = \frac{4}{3} \approx 1.333 $$

Check. $P \times 0.75 \times \tfrac{4}{3} = P \times 1 = P$ ✓.

So you need a 33.3% uplift, not a 25% one. The asymmetry comes from the fact that the inverse of a multiplier $r$ is $\tfrac{1}{r}$, which is not symmetric around $1$.

Sources & further reading

The properties above are stated identically across every reputable source — the differences are in emphasis and the depth at which they're connected to abstract algebra. Start with OpenStax for a careful first pass; reach for MathWorld or Wikipedia when you want the formal definitions stripped of pedagogy.

Test your understanding

A quiz that builds from easy to hard. Pick an answer to get instant feedback and a worked explanation. Your progress is saved in this browser — come back anytime to continue.

Question 1 of 24
0 correct