An algebraic expression is only half the story. Writing tells you the structure of a relationship — multiply something by , then add — but it doesn't give you a number until you know what is. Evaluating an expression is the act of completing that story: you plug in a specific value for the variable and compute the result. This is not just a classroom exercise. Every formula you will ever use — for area, speed, interest, temperature conversion, population growth — works by exactly this process. A doctor calculating a medication dose based on a patient's weight is evaluating an expression. A game engine computing a character's position on screen is evaluating an expression thousands of times per second. The mechanic is always the same: replace the variable with a known number, then follow the arithmetic rules to get a result. One misconception to address immediately: many students think evaluating is about 'solving for .' It isn't. When you evaluate, is already given to you — your job is not to find it but to use it. The distinction matters because it means evaluation is always possible and always produces a single definite number, as long as you follow the order of operations carefully. That's the skill this lesson builds.
Substitution is the mechanical heart of evaluation: you locate every occurrence of the variable in an expression and replace it with the given number. That's it. But the details of how you write that replacement matter more than students expect.
The most important habit is to write the substituted number in parentheses, every time, without exception. Here's why: suppose you have and you're told . If you simply write , that looks like the two-digit number forty-three, not a multiplication. Writing makes the multiplication unambiguous. The parentheses are not decorative — they preserve the meaning of the original expression.
Now consider an expression that uses the same variable twice: when . Both occurrences of must be replaced: . A common mistake is substituting into only the first occurrence and leaving the second as a letter, which produces a nonsensical mix of numbers and variables. Scan the entire expression before you begin and circle every instance of the variable. Then replace all of them in one pass.
Finally, understand why substitution comes before any arithmetic. The expression is a compressed instruction: 'multiply by , then subtract .' You cannot follow those instructions until you know what is. Substitution is the moment you provide the missing ingredient; arithmetic is what you do after the recipe is complete.
Mental model: a variable is a labeled slot on an assembly line. Substitution is the step where you place the actual part into the slot. Only once every slot is filled can the machine run.
Write every substituted number in parentheses — it preserves the expression's structure and prevents silent errors.
17
Once substitution is done, you have a purely numerical expression — no variables, just numbers and operations. At that point the problem is arithmetic, and arithmetic has a strict rulebook: the Order of Operations (PEMDAS). The rules exist because the same string of symbols can produce different numbers depending on which operation you perform first. The Order of Operations is the agreement that makes every mathematician on earth read the same expression the same way.
The sequence is: Parentheses, then Exponents, then Multiplication and Division (left to right as a tied pair), then Addition and Subtraction (left to right as a tied pair). The key insight that students miss is that multiplication and division share a priority level — you don't do all multiplications before all divisions; you work through them left to right as you encounter them. Same for addition and subtraction.
Here's the concrete failure mode: take with . After substituting: . The wrong approach adds first: , then . The right approach multiplies first: , then . The error produces an answer that is units off — not a rounding issue, but a structurally wrong calculation. The coefficient belongs to , not to ; treating as a unit breaks that relationship.
A useful check: after substituting, underline the operation you intend to perform next before doing any arithmetic. This forces you to make an explicit decision about order rather than defaulting to left-to-right reading habit.
Mental model: PEMDAS is a ranked priority list, like a to-do list where items with higher priority must be completed before lower-priority ones can begin. You don't start on the addition until all the multiplication is resolved — regardless of where the addition appears in the expression.
Multiplication and division outrank addition and subtraction — the coefficient and its variable are a unit that cannot be broken by a neighboring sum.
Negative numbers require extra care during substitution because of how they interact with exponents and neighboring operations. The rule — always wrap a negative substitution in parentheses — is simple to state, but understanding why it matters makes it much easier to remember.
The critical case is exponents. Consider when . Your job is to square the value that represents, which is the entire quantity . If you write without parentheses, a strict reading of that notation applies the exponent only to (exponents bind tightly to the number immediately below them), giving . But clearly applies the exponent to the whole quantity , giving . These are not the same: . The parentheses are doing real mathematical work, not just providing visual clarity.
The same issue arises with subtraction. In the expression when : without parentheses you might write and misread the double negative. With parentheses: . The parentheses make the sign operation explicit and force you to handle the double negative deliberately.
Compare these three cases to see the pattern: (squaring a negative gives positive), (squaring just the then negating), (same result as above, explicit). Only the first version correctly captures 'the square of negative two.'
Mental model: a negative number's sign is part of the number, not decoration attached to the outside. Parentheses are the container that keeps the sign attached when you apply an operation to the whole thing.
Parentheses keep the negative sign attached to its number — without them, exponents and operations can silently strip the sign away.
25
A formula is just an algebraic expression that has been given a name because it's useful enough to reuse. The area formula , the distance formula , the Fahrenheit-to-Celsius conversion — all of these are expressions with variables, and evaluating them works by exactly the same substitution-and-simplify process you've been practicing.
What makes formulas powerful is precisely their generality. Before algebra, to find how far a car traveled, you'd have to reason through the logic from scratch every time: 'well, if it goes miles each hour and travels for hours, then...' The formula encodes that logic once, permanently. After that, evaluation is just arithmetic: substitute and to get miles. The thinking has already been done; you're just running the calculation.
A common mistake when evaluating multi-variable formulas is substituting one variable but forgetting another. In with and , both and must be replaced. If you substitute only and leave as a letter, you still have an expression, not a number — evaluation is incomplete.
Also watch for formulas where the same variable appears multiple times. In the perimeter formula , the constants and are always there — they're part of the formula's structure, not variables to substitute. Only and get replaced. Distinguishing coefficients (permanent parts of the formula) from variables (the slots you fill in) is the interpretive skill that separates students who use formulas fluently from students who find them mysterious.
Mental model: a formula is a reusable machine. You feed it inputs (the variable values), and it produces an output (the evaluated result). Understanding evaluation means you can operate any such machine, not just the ones you've seen before.
A formula is a reusable expression — evaluating it means feeding in your specific values and letting the structure do the work.
Evaluate the expression when .
The numerical value of the expression
Find the value of when and .
Substitution means replacing every occurrence of a variable with its given number — every occurrence, not just the first one. Always write the substituted value in parentheses to preserve the expression's structure.
A coefficient written next to a variable (like ) always means multiplication. That product is a single term and must be computed before it combines with any addition or subtraction in the expression.
After substituting, PEMDAS governs everything: parentheses and grouping symbols first, then exponents, then multiplication and division left to right, then addition and subtraction left to right. Position in the expression does not override this order.
When substituting a negative number, parentheses are mathematically necessary, not optional. Without them, exponents apply only to the digit and not the sign: but . These are different values.
The fraction bar is a grouping symbol equivalent to parentheses. The entire numerator must be fully simplified before you divide by the denominator — you cannot split the division across individual terms in the numerator unless the expression explicitly allows it.
Every formula — area, distance, temperature conversion, anything — is evaluated by this exact substitution-and-simplify process. Mastering evaluation here means you can use any formula you'll encounter in science, economics, or engineering.
Evaluating expressions is the computational engine that powers all of applied mathematics. When you move to solving equations, you'll evaluate expressions on both sides to check whether a proposed solution is correct. When you study functions, you'll evaluate the function rule at specific inputs to build tables and graphs. When you reach calculus, you'll evaluate limits and derivatives at particular values to understand how things change. In every case, the mechanic is exactly what you practiced here: substitute, then follow the order of operations to a single number. Getting this process automatic — fast, accurate, and habitual — means the mechanics will never slow you down when the concepts get harder.
Before doing any arithmetic, rewrite the entire expression with variables replaced and parentheses in place. Only after that complete rewrite should you touch a calculator or pencil for arithmetic. Students who combine substitution and calculation in one step introduce errors that are almost impossible to find afterward.
Practice specifically with expressions where the wrong PEMDAS order gives a tempting-looking answer — for example, with small values of where adding first produces a round number. The goal is to build the habit of multiplying first even when adding first feels natural.
Create a negative-number drill set: take five expressions with exponents (, , ), substitute in each, and check that you correctly write rather than . Repeat until the parentheses reflex is automatic.
Evaluate when .
Evaluate when .
Find the value of when and .
Why is it helpful to use parentheses when substituting a negative number into an expression like ?
This is an exploration question. Write your thoughts and discuss with others!
Evaluate the expression when .
How do you value this lesson?
The value of the fraction
After evaluating any formula, do a quick reasonableness check: does your answer have the right sign? Is it in a plausible range for what the formula represents? A negative area or a distance of miles for a three-hour car trip should immediately signal a calculation error, even if every step looked right.