Get AI summaries of any video or article — Sign up free
The Order of Operations is Wrong thumbnail

The Order of Operations is Wrong

minutephysics·
4 min read

Based on minutephysics's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.

TL;DR

Ambiguity in expressions like 8−2+1 comes from missing parentheses and implicit grouping choices, not from arithmetic itself.

Briefing

“Order of operations” isn’t a single truth so much as a convention—one that can hide the real math and even create ambiguity when parentheses are missing. A classic example is 8−2+1: under the usual school rule set, it’s treated as (8−2)+1 = 5. But a mathematician rewrites subtraction as addition of a negative number—8+(-2)+1—which evaluates unambiguously to 7. The discrepancy isn’t a mystery of arithmetic; it’s a sign that the expression’s structure is underspecified unless parentheses make the grouping explicit.

The ambiguity arises because each basic operation can be viewed as a procedure that takes two numbers and combines them into one. If every pair of numbers in an expression were explicitly wrapped in parentheses, evaluation would be completely unambiguous: compute the innermost parentheses first, then collapse outward like a tournament bracket. Yet there’s more than one valid way to rearrange parentheses. When the underlying algebraic rules are known, operations can be reordered without changing the final result.

For instance, adding (3+4) and then multiplying by 5 gives (3+4)·5 = 7·5 = 35. The same answer appears if multiplication is performed first, because multiplication distributes over addition: 5·3 + 5·4 = 15 + 20 = 35. Similar rearrangements work for exponentiation and multiplication: (3·2)^2 equals 3^2·2^2, so (3·2)^2 = 36. Even addition and subtraction can be regrouped using consistent algebraic transformations, such as 5−(1+2) = (5−1)−2.

From these examples, the “true” operational principle becomes clear: use parentheses to state the intended grouping, then apply the algebraic meaning of exponentiation, multiplication, addition, subtraction, and division. A conventional order of operations still has value—by evaluating multiplication before addition, it reduces the need for redundant parentheses and keeps expressions compact. But those parentheses are still implicitly there; for example, 3−4 is really 3+(-4), and 3/4 is really 3·(1/4). When an expression could be interpreted in multiple ways, parentheses aren’t optional—they’re what prevent the expression from being read differently.

The core critique is moral rather than mathematical. The school rule set is not “wrong” in the sense that it often yields the expected answer, but it locks learners into a single mechanical path through algebra. That path helps computers and quick calculations, yet it offers little insight into what algebraic operations actually mean. The result is a tradeoff: fewer parentheses and faster grading, at the cost of turning humans into rule-following robots instead of thinkers who understand the structure beneath the symbols.

Cornell Notes

Missing parentheses make expressions like 8−2+1 ambiguous: school conventions give 5, while rewriting subtraction as adding a negative number gives 7. The ambiguity comes from the fact that operations are two-input procedures whose grouping determines meaning. If parentheses fully specified every grouping, evaluation would be unambiguous by working inward like a bracket tournament. But algebra also allows rearranging parentheses when the underlying laws are known—distribution, exponent rules, and regrouping for addition/subtraction can preserve the final value. The practical takeaway: use parentheses to state structure, then choose any evaluation order consistent with the algebraic rules.

Why can 8−2+1 evaluate to different answers (5 vs 7)?

Without parentheses, the expression’s grouping isn’t fully specified. The usual school convention treats it as (8−2)+1 = 5. A mathematician instead rewrites subtraction as addition of a negative: 8−2+1 = 8+(-2)+1, which evaluates to 7. The difference reflects different implicit groupings; parentheses would force a single interpretation.

What does it mean to say every operation takes two numbers as input?

Each basic arithmetic operation combines two values into one result. That perspective makes grouping central: the same symbols can represent different “pairing” structures depending on where parentheses would be placed. If every pair were explicitly parenthesized, the evaluation order would be determined by the nested structure, leaving no ambiguity.

How can you multiply first and still get the same result as adding first?

Because multiplication distributes over addition. For example, adding first gives (3+4)·5 = 7·5 = 35. Multiplying first works as 5·(3+4) = 5·3 + 5·4 = 15 + 20 = 35. Distribution is the algebraic rule that justifies rearranging parentheses and evaluation order.

How does exponentiation interact with multiplication in these rearrangements?

Exponentiation can distribute over multiplication when the exponent is applied to a product. The transcript’s example is (3·2)^2 = 3^2·2^2 = 36. This is a specific exponent rule that allows parentheses to be rearranged without changing the final value.

Why does the conventional order of operations still matter if parentheses are the real solution?

The conventional rule (like doing multiplication before addition) reduces the number of parentheses needed in typical expressions and makes evaluation fast and consistent. But it’s still a convention: the “missing” parentheses are implicitly assumed. When ambiguity is possible, explicit parentheses are required to lock in the intended structure.

What’s the “moral” critique of the school order of operations?

It’s framed as a tradeoff: the convention is mechanically efficient for getting answers, but it can prevent learners from understanding what algebraic operations really mean. By forcing a single evaluation path, it risks turning students into robots who follow rules rather than people who see the underlying mathematical structure.

Review Questions

  1. Give two different ways to interpret 8−2+1 and explain what role parentheses would play in removing ambiguity.
  2. Using distribution, show why 5·(3+4) equals (3+4)·5, and identify the algebraic principle that makes the rearrangement valid.
  3. Explain how the conventional order of operations reduces parentheses while still relying on implicit grouping assumptions.

Key Points

  1. 1

    Ambiguity in expressions like 8−2+1 comes from missing parentheses and implicit grouping choices, not from arithmetic itself.

  2. 2

    Subtraction can be rewritten as addition of a negative number, which can change the evaluated result when grouping is unclear.

  3. 3

    If every grouping were explicitly parenthesized, evaluation would be unambiguous by computing innermost parentheses first.

  4. 4

    Algebra permits reordering evaluation when justified by rules like distribution, exponent rules, and valid regrouping for addition/subtraction.

  5. 5

    The conventional order of operations is a useful convention that minimizes parentheses, but it hides the underlying structure of algebra.

  6. 6

    When an expression could be read multiple ways, explicit parentheses are necessary to state the intended meaning.

  7. 7

    The critique is that rule-based evaluation can limit insight, turning learners into mechanical rule-followers rather than understanding algebraic meaning.

Highlights

8−2+1 can be 5 or 7 depending on implicit grouping; rewriting subtraction as adding a negative number exposes the ambiguity.
Multiplication can be done before addition when distribution is used: 5·(3+4)=5·3+5·4=35.
Exponentiation can be rearranged with multiplication: (3·2)^2 = 3^2·2^2 = 36.
The “real” safeguard is parentheses: they state structure, while conventional order-of-operations only supplies a default assumption.

Topics

  • Order of Operations
  • Parentheses
  • Distribution
  • Exponent Rules
  • Algebraic Ambiguity