Commutative Property

The Commutative Property is defined as a fundamental axiom of a Field, meaning that in mathematics where this property is applied, we can expect an identical result regardless of the sequence in which elements are combined. The “order-independence” of a binary operation.

In the real number system, composed of the set of Real Numbers (\mathbb{R}), commutativity applies to two primary operations: Addition and Multiplication.

Mathematics Full Course Collection Title Image I

The Commutative Property of Addition

For any two real numbers a and b, the sum is the same regardless of the order of the terms:

/[ a+b = b+a /]

If three people each have a unique number of objects in their pockets, imagine that they all make a decision to take out their entire inventory and set it out on a table between them. In the end the total number of objects is the same regardless of the order they are taken out in. No matter how you add it up.

In Geometry, you can visualize this on a number line. If you start at 0, moving a units to the right and then b units to the right, lands you at the exact same point as moving b units first and then a units. Or if you walk three legs of 1km, 5km, and 3km. It doesn’t matter what order you do them in, by the end you will have walked 9km.

The Commutative Property of Multiplication

For any two real numbers a and b, the product is the same regardless of the order of the factors:

\[ a \cdot b = b \cdot a \]

Think of an array or a rectangle in geometry. The area of a rectangle with a width of a and height of b ($a \times b$) is identical to the area of a rectangle with a width of b and height of a ($b \times a$). The shape is simply rotated $90^{\circ}$.

Operations that are NOT Commutative

A key part of university-level Algebra is recognizing where this property fails. Subtraction and division are generally not commutative:

  • Subtraction — 5 – 3 \neq 3 – 5 (Results in 2 vs -2).
  • Division — 8 \div 2 \neq 2 \div 8 (Results in 4 vs 0.25).

In higher-level STEM tracks, you will encounter Matrix Multiplication. If A and B are matrices, usually AB \neq BA. This “non-commutativity” is a major study area in Linear Algebra and Quantum Mechanics.

STEM Integration

In Trigonometry, the Commutative Property allows you to rearrange terms in complex identities, such as $\sin(x) \cos(y) + \cos(x) \sin(y)$. Since multiplication is commutative, $\sin(x) \cos(y)$ is the same as $\cos(y) \sin(x)$.

In programming, commutativity is relevant when optimizing code. For example, if you are concatenating strings in some languages, stringA + stringB is not commutative because “Hello” + “World” is not the same as “World” + “Hello”.

However, logical AND (A \&\& B) and OR (A || B) operations are commutative in their truth values (ignoring side effects/short-circuiting).

Atlas Appendix