EN FR

ALG-1: Order of Operations and Algebraic Structure

Module 2 · Algebraic Manipulation

Section 1: Introduction

Quick question. No calculator, no tricks — just tell me: what does equal?

If you said 9, you’re in good company. Most students do. But the correct answer is .

That’s not a trick. It’s not a typo. It’s how algebra is read — and if you misread it, your calculus work will silently go wrong every single time this pattern appears. And it appears constantly.

Here’s why: means the negative of . The exponent grabs only the , not the negative sign. So . The expression is a different thing: now the negative is inside the base, giving .

This isn’t an isolated quirk. It’s a symptom of something deeper: algebraic notation is a structured language with precise grammar rules, and when students skip or misremember those rules, errors compound. The fraction bar hides invisible parentheses. The minus sign has reach — but only sometimes. Exponents bind tightly. Operations don’t simply flow left to right.

This lesson builds the habit of reading algebraic structure correctly. Once internalized, these rules will feel automatic — and a whole class of calculus errors simply won’t happen to you.

After this lesson, you will be able to:

  • Apply BEDMAS/PEMDAS correctly, including left-to-right resolution of same-precedence operations
  • Recognize the fraction bar as a grouping symbol that brackets both numerator and denominator
  • Work from the innermost grouping outward in nested expressions
  • Distinguish from , and from
  • Distribute a negative sign across a grouped expression:
  • Read complex rational expressions like without ambiguity

Section 2: Prerequisites

This lesson follows COM-1. The notation habits you established there — vertical work, exact values, and clear equals signs — are expected throughout.

  • From COM-1: Vertical Work. Each algebraic step belongs on its own line. This is essential for untangling BEDMAS chains without getting lost.
  • From COM-1: Exact Values. Leave answers as fractions, not decimals (e.g., not ).
  • Integer Arithmetic: You must be comfortable with signed numbers, especially multiplication (negative times negative is positive).
  • Basic Exponents: You should know that and — the mechanics of repeated multiplication.

Retrieval Checkpoint

What is the correct value of ?

Success Factor: If negative arithmetic feels shaky, pause and review that first. It is the foundation for the “Exponent Binding” and “Minus Sign Distribution” rules we cover in Section 3.

Section 3: Core Concepts

C1 — BEDMAS / PEMDAS: The Precedence Hierarchy

Mathematical notation is ambiguous without a fixed set of rules for which operations happen first. The solution is a precedence hierarchy: a ranked list of operations from “always first” to “always last.”

BEDMAS / PEMDAS — Order of Operations

Evaluate operations in this order, from highest to lowest priority:

  1. Brackets / Parentheses — all grouping symbols:
  2. Exponents / Orders — powers and roots
  3. Division and Multiplication — evaluated left to right at equal priority
  4. Addition and Subtraction — evaluated left to right at equal priority

Operations at the same level (e.g., division and multiplication) are done in the order they appear, left to right.

BRACKETS / PARENTHESES( ), [ ], { }EXPONENTSx², x³, √xMULTIPLICATION & DIVISION×, ÷  (left → right)ADDITION & SUBTRACTION+, −  (left → right)evaluatedfirst ↑evaluatedlast ↓

Higher tiers are resolved before lower tiers. Within the same tier, go left to right.

Example: Evaluate :

“Left to right” only applies within the same tier. Many students think “left to right” is the main rule and evaluate everything in the order they encounter it. The tower above is the real rule. is not — it’s , because multiplication outranks addition.


C2 — The Fraction Bar as a Grouping Symbol

The fraction bar is invisible parentheses. It groups everything in the numerator into one quantity and everything in the denominator into another. This means you must evaluate the full numerator and the full denominator before dividing.

The Fraction Bar

means . Whatever is written above the bar is one grouped expression; whatever is below is another. The division happens after both are evaluated.

In particular: . The first expression divides the whole quantity by . The second is three separate terms.

This becomes critical when you read expressions typed in a single line. The expression:

(x + 1) / (x - 2)

is the correct typed version of the fraction. Without the parentheses, x + 1 / x - 2 means something completely different — only the is divided by .

Typed fractions need explicit parentheses. When using a calculator or typing code, must be entered as (3x+5)/(x-1). Writing 3x+5/x-1 gives — a completely different expression.


C3 — Nested Grouping: Work from the Inside Out

When grouping symbols are nested — parentheses inside brackets, brackets inside braces — you always start with the innermost grouping and work outward.

Nested Grouping

In an expression like , the innermost group is . Evaluate it first, then the bracket, then the outer multiplication.

Typographically, mathematicians use different grouping symbols — , , — purely to help the eye distinguish levels of nesting. They all mean the same thing: evaluate the contents before using the result.

Don’t start with the outer grouping. — some students expand the bracket first: . Coincidentally, this gives the same answer here (because multiplication is associative), but in more complex expressions the approach fails. Always start inside and work out.


C4 — Exponent Binding: What Does the Exponent Grab?

An exponent applies to the single token immediately to its left — nothing more. That token is called the base. If you want multiple things to form the base, you must group them with parentheses first.

Exponent Binding Rule

The base of an exponent is the single number, variable, or parenthesized group directly to the left of the exponent symbol.

  • : the base is , not . So .
  • : the base is — the parentheses make the negative part of the base.
  • : the base is . So , not .
  • : the base is . So .

Let’s make this concrete. At :

Four expressions, four different values:
at :
at :
at :
at :

The expression that opened this lesson follows this rule: the base of the exponent is (not ), so . Every time you see a bare negative sign in front of an exponent — with no parentheses — the negative is outside the exponentiation.


C5 — Distributing vs. Not: The Reach of the Minus Sign

The minus sign is a versatile character in algebra. When it stands in front of a grouped expression, it distributes to every term inside. When it stands in front of a single term, it applies only to that term.

Distributing a Negative Sign

For any expression or :

This follows from multiplying by : .

A very common mistake in calculus: when subtracting two expressions, students forget to flip all the signs in the subtracted expression.

Wrong: (forgot to flip the sign on )

Correct: (the minus distributes: )

In calculus, you will compute the difference quotient constantly. When has multiple terms — say — the subtraction must distribute over every term of : the result is . Missing a sign flip here invalidates the entire derivative calculation.


C6 — Reading Complex Rational Expressions Without Ambiguity

As expressions become more involved, it becomes easy to mis-parse them — especially when multiple fraction bars or layered operations appear. The key is to identify what each fraction bar groups before doing any arithmetic.

Each Fraction Bar Has Its Own Scope

A fraction bar only covers what is directly written above and below it. It does not extend to absorb a term that is written to its right with a or sign.

is a difference of two fractions. The two fraction bars are separate; neither absorbs the other.

is a compound fraction: a single fraction with a complex denominator. Completely different expression.

The first expression — the difference of two fractions — appears at the heart of the difference quotient in calculus, which you’ll compute in BTC-2. Misreading it as the second expression produces nonsensical results.

Always ask: what does each fraction bar span? Identify the numerator and denominator of each fraction separately before reading the overall expression.

Danger in typed expressions: When algebra is typed linearly (as in a calculator or code), the expression becomes 1/(x+h) - 1/x. The subtraction sign is between two fractions — it does not extend the denominator of the first fraction. Reading it as 1/(x+h-1/x) is a fundamental misparse.

Section 4: Worked Examples

Example 1 — A Full BEDMAS Chain (Fully Worked)

Evaluate .

Step-by-step using the precedence tower:

Step 1 — Innermost bracket:

Step 2 — Exponent:

Step 3 — Remaining bracket:

Step 4 — Multiplication and division, left to right:
, then :

Step 5 — Subtraction:

The key decision at Step 4: Why multiply before dividing? Because they’re at the same level — and at the same level, you go left to right. appears before , so multiplication happens first.


Example 2 — The Fraction Bar as Grouping (Partially Scaffolded)

Evaluate at , and explain why gives a different result.

Step 1 — Identify the structure: The fraction bar groups as the entire numerator and as the entire denominator. Think of it as .

Before continuing: what do you substitute in the numerator? What about the denominator?

Show Solution

Now the wrong reading: at :

. The fraction bar changes everything.


Example 3 — Exponent Binding and Sign Distribution (Minimally Scaffolded)

Simplify for . Then compare it to at .

Hint: Identify the base of each exponent, then handle the negative sign only after squaring.

Show Solution

For :

: the base of the exponent is . The leading minus is outside the exponent.

: the entire expression is the base. Squaring a negative gives positive.

Result: . One minus sign, placed differently, changes the result by a factor of .

Also: Note that , so . Squaring eliminates the negative. But never squares the negative — it negates the result of squaring the positive quantity.


Example 4 — Reading a Complex Rational Expression (Application Twist)

This is the kind of expression you’ll meet in calculus. Read it carefully before touching any numbers.

Problem: What is the correct reading of ? Compute its value for .

Challenge yourself first: a student claims this equals . Is the student right? Why or why not?

Show Solution

The expression is a difference of two separate fractions. The minus sign is between them — it does not merge them under one bar.

The student is wrong. Extending the denominator of the first fraction to absorb is a misparse. The two fraction bars are independent.

Correct computation at :

Finding a common denominator:

What the student’s expression gives:

. The two expressions are completely different.

Section 5: Guided Practice

Choose the best answer from each problem. Incorrect choices will explain exactly why they’re wrong — read those explanations; they target the most common traps.

Problem 1 — BEDMAS Order (C1)

A student evaluates by computing , then . What is the error?

A student evaluates by computing . What went wrong?

A student evaluates by computing , then . What is the error?

A student evaluates by first computing , then . What is the error?

A student evaluates by first computing , then . What went wrong?


Problem 2 — The Fraction Bar as Grouping (C2)

Evaluate at .

Which expression correctly encodes “the sum of and , divided by 3”?

Evaluate .

Evaluate at .

Which expression correctly encodes “the difference of and , divided by 2”?


Problem 3 — Exponent Binding (C4)

Which of the following statements is true?


Problem 4 — Distributing the Minus Sign (C5)

A student simplifies as . What went wrong?

Section 6: Independent Practice

These problems are unscaffolded. Work through each one, then reveal the solution to check your reasoning — not just your answer.

Problem 1 — Evaluate with BEDMAS (C1, C3) — regenerable


Problem 2 — Fraction Bar Grouping (C2) — regenerable


Problem 3 — Exponent Binding: Identify the Error (C4)

A student evaluates by computing . Which statement correctly explains the error?

Which of the following equals when ?

A student claims “because a negative times a negative is positive.” What is wrong with this reasoning?

A student evaluates by computing . Which statement correctly explains the error?

A student says and are both equal to 16 because “squaring always makes the result positive.” What is wrong?


Problem 4 — Verbal Description to Expression (C2, C5)

Which expression correctly encodes “5 times the sum of and 2, minus 3”?

Which expression correctly encodes ” plus 4, all divided by the difference of and 3”?

Which expression correctly encodes “the square of the sum of and , plus ”?

Which expression correctly encodes “3 less than twice ”?

Which expression correctly encodes “the cube of the difference of and 1”?


Problem 5 — Complex Rational Structure (C6)

Consider the expression . A student “simplifies” it by writing , claiming to have “combined the terms into one fraction.” What is the fundamental error?

Section 7: Mastery Check

No hints. No scaffolding. These questions test whether the concepts have actually landed.

Question 1 — Feynman Test

A classmate just got this wrong on a quiz: they evaluated as instead of . Explain, in your own words, what the fraction bar rule is and why it changes the answer. Mention at least one example.

0 / 500
See a model explanation

The fraction bar acts like invisible parentheses around the entire numerator and the entire denominator. So means — every term in the numerator is divided by 2, not just the last one. Factoring: . The classmate’s error was dividing only the 6 by 2 (getting ) instead of dividing the whole numerator. Another example: , not .


Question 2 — Multi-Layer BEDMAS (C1, C4)

In the expression , which step must be performed first?

Show Full Solution


Question 3 — Find the Error (C1, C4)

A student evaluates with the following work:

Line 1:
Line 2:
Line 3:
Line 4:

The correct answer is . Identify the error and state which rule it violates.

Show Explanation

Error in Line 2: The student moved the subtraction inside the exponent by grouping . This violates the exponent binding rule (C4): exponents bind to the single token immediately to their left.

In , the exponent applies only to . The correct first step is to compute (exponents before subtraction), giving .

There are no parentheses around in the original expression. The student invented a grouping that does not exist.


Self-Assessment

How confident are you with the four core concepts from this lesson?

Still confusedReady for the Boss Fight

Section 8: Boss Fight

You’ve practiced individual concepts. Now it’s time to use all four at once — under pressure. Choose your path:

🔍 Path A: The Debugger

You receive a student’s flawed solution. Your job: find every error, name the rule it breaks, and rewrite the solution correctly. Think like a professor with a red pen.

🏗️ Path B: The Encoder

You receive verbal descriptions of calculations. Your job: translate each one into a precise algebraic expression and evaluate it. One misplaced parenthesis changes everything.

Path A: The Debugger

Mélodie is evaluating . She shows her work step by step. Two errors are embedded — one violates C4 (exponent binding) and one violates C1 (order of operations).

Mélodie’s Work:

Step 1:
Step 2:
Step 3:
Step 4:
Step 5:

The correct answer is , not .

Task A1 — Identify the errors.

Identify Error 1 (which step, which concept code C1–C6, and what Mélodie did wrong) and Error 2 (which step, which concept, and what Mélodie did wrong).


Task A2 — Correct the solution.

Rewrite the full solution correctly, with vertical work, following the correct order of operations.


0 / 1000
Show Solution

Error 1 — Step 2 (C4: Exponent Binding):

Mélodie rewrote as , claiming they are “the same thing.” They are not. In , the exponent binds to only — the negative is outside the exponent. So . In , the negative is part of the base, giving . These are different expressions with different values.

Error 2 — Step 4 (C1: Order of Operations):

Mélodie added before resolving the multiplication . Multiplication has higher precedence than addition. The must multiply the bracket result before the (or rather , after fixing Error 1) is added.

Correct Solution:

Reflection: Error 1 is the sneaky one — Mélodie’s notation looked plausible. When a negative sign appears before an exponent with no parentheses, always read it as “negate the result of the exponent,” not as “include the negative in the base.”

Path B: The Encoder

Three verbal descriptions of calculations are given below. For each one, your job is to: (1) write the correct algebraic expression — with all necessary parentheses — and (2) evaluate it at .

Be precise: a missing parenthesis changes the meaning and the value.

Description 1: “5 minus x squared”

Description 2: “The sum of and 2, all divided by minus 1”

Description 3: “The opposite of 2 times the sum of and 4”

Task B1 — Description 1. Translate and evaluate “5 minus x squared”.


Task B2 — Description 2. Translate and evaluate “The sum of and 2, all divided by minus 1”.


Task B3 — Description 3. Translate and evaluate “The opposite of 2 times the sum of and 4”.


0 / 1200
Show Solutions

Description 1: “5 minus x squared”

Expression:
At :

Common error: Writing instead. “5 minus x squared” squares only ; the subtraction comes after. If the intent were to square the difference, the description would say “the square of the quantity 5 minus x.”


Description 2: “The sum of and 2, all divided by minus 1”

Expression:   or equivalently   in typed form
At :

Common error: Writing , which means . The phrase “all divided by” signals that the entire sum is the numerator.


Description 3: “The opposite of 2 times the sum of and 4”

Expression:
At :

Common error 1: Writing . This reads as “multiply by then add 4” — not “multiply the sum by .” At : .

Common error 2: Writing (distributing the negative but also negating the constant). Check: , not .


Reflection: Verbal descriptions can be ambiguous — that’s why mathematical notation was invented. The goal is to translate precisely enough that the algebraic expression has exactly one interpretation.

Section 9: Challenge Problems

Optional stretch. These go beyond the lesson objectives. Attempt them when you feel confident with the core material.

Challenge 1 — Nested Compound Fraction (C2, C3, C6)

Evaluate at . Then simplify the expression algebraically for general , writing the result as a single fraction.

Show Solution

Numerical evaluation at :
Inner fraction:
Denominator:
Full expression:

Algebraic simplification:
— the denominator is
So the expression equals

Check at :

This is a compound fraction — a fraction whose denominator itself contains a fraction. The key move is to simplify the inner denominator first (C3: innermost group first), then divide.


Challenge 2 — Exponent Binding Extension (C4)

Without a calculator, determine which is larger: or . Explain why in one sentence. Then determine which is larger: or .

Show Solution

. The negative is outside the exponent.

. The negative is inside, and squaring (or any even power) eliminates it.

. Reason: is negative; is positive because an even power of a negative number is positive.


.

. An odd power of a negative number is negative.

So . They are equal.

This is a preview of what you’ll see in ALG-2: the rules for exponents interact with negative signs in non-obvious ways, and keeping track of what the base actually is matters enormously.


Challenge 3 — Preview: Setting Up for Exponent Laws (C2, C4)

Rewrite by splitting it into separate fractions, then simplify each one. What rule about exponents are you implicitly using?

Show Solution

Split using the fraction bar’s scope:

Simplify each fraction:
  (subtracting exponents when dividing)
  (negative exponent means reciprocal)

Result:

The implicit rule: when dividing powers of the same base, you subtract exponents — . This is one of the fundamental exponent laws you’ll develop formally in ALG-2. The fraction bar made the structure visible enough to apply it.

Section 10: Solutions Reference

Complete, step-by-step solutions for all problems in Sections 5–9 are available on the solutions page. Solutions include worked arithmetic, common mistakes to watch for, and interpretation guidance.

View Full Solutions →

If you’re stuck: Re-read the relevant Core Concept in Section 3, then find the Worked Example that maps to that concept (e.g., Example 1 maps to Concept 1). The solutions page shows the reasoning behind every step, not just the final answer.

Quick-Reference Formulas

BEDMAS / PEMDAS Order:

  1. Brackets / Parentheses (Inside out)
  2. Exponents
  3. Division & Multiplication (Left to right)
  4. Addition & Subtraction (Left to right)

Exponent Binding Rule: An exponent applies only to the base immediately to its left. Example: , but .

Distributing the Minus Sign:

Fraction Bar Grouping: