Evaluating Expressions

Evaluating an Expression

To evaluate an expression means to find its numerical value once you know the values of its variables. This is simply a substitution-and-compute process: replace every occurrence of each variable with the given number, then carry out the arithmetic.

Order of Operations

Once the numbers are substituted in, you must simplify using the standard order of operations, often remembered by the acronym PEMDAS:

  1. Parentheses (and other grouping symbols) first
  2. Exponents next
  3. Multiplication and Division, left to right
  4. Addition and Subtraction, left to right

This order matters enormously. For instance, 2 + 3 \times 4 = 14, not 20, because multiplication happens before addition.

Substituting Carefully

When you substitute a value for a variable, it is a good habit to wrap the substituted number in parentheses. This keeps negative numbers and exponents from causing sign errors. For example, if x = -2, then x^2 becomes (-2)^2 = 4, not -4.

Example

Evaluate 2x^2 - 3xy + 4 when x = -2 and y = 3.

  1. Substitute the values, using parentheses: 2(-2)^2 - 3(-2)(3) + 4.
  2. Handle the exponent first: (-2)^2 = 4, giving 2(4) - 3(-2)(3) + 4.
  3. Do the multiplications left to right: 2(4) = 8 and -3(-2)(3) = 18, giving 8 + 18 + 4.
  4. Add: 8 + 18 + 4 = 30.

So the expression equals 30

Expressions with Fractions and Grouping Symbols

When an expression has a fraction bar or parentheses, treat the fraction bar like an invisible set of parentheses around the whole numerator and around the whole denominator. For example, in \dfrac{x+5}{2y}, you must fully simplify the top and the bottom separately before dividing.

A Second Example with Multiple Variables

Evaluate \dfrac{a + b^2}{c - 1} when a = 3, b = -4, and c = 6.

  1. Substitute with parentheses: \dfrac{3 + (-4)^2}{6 - 1}.
  2. Simplify the numerator first: (-4)^2 = 16, so the numerator becomes 3 + 16 = 19.
  3. Simplify the denominator: 6 - 1 = 5.
  4. Divide: \frac{19}{5}

Notice that the numerator and denominator were each treated as their own self-contained expression before any division took place — this is exactly why the fraction bar behaves like a grouping symbol.

Common Mistakes to Avoid

Students often lose points on evaluation problems not because they don't understand the concept, but because of small arithmetic slips. Watch out for these:

  • Forgetting to square a negative correctly — always compute (-n)^2 as a single grouped quantity.
  • Applying an exponent to a coefficient that isn't actually inside it, such as confusing -3^2 (which equals -9) with (-3)^2 (which equals 9).
  • Doing addition or subtraction before finishing all the multiplication and division in an expression.

Key Takeaways

  • Evaluating means substituting given values for variables, then simplifying.
  • Always follow PEMDAS: parentheses, exponents, multiplication/division, addition/subtraction.
  • Wrap substituted values in parentheses to avoid sign mistakes.
  • A fraction bar acts as a grouping symbol for the entire numerator and denominator.

Practice problems