4.1 Algebraic Expressions & Variable Evaluation

Key Takeaways

  • An algebraic expression is a mathematical phrase composed of constants, variables, and operation symbols; unlike an equation, it lacks an equal sign and cannot be 'solved,' only simplified or evaluated.
  • Like terms share the exact same variable base and exponent (e.g., 5x²y and -2x²y); only like terms can be combined by adding or subtracting their numerical coefficients.
  • When evaluating algebraic expressions, substitute negative values inside parentheses (e.g., if x = -3, then -x² = -(-3)² = -9, whereas (-x)² = 9) to respect strict order of operations.
  • Distributing a negative sign across parentheses changes the sign of every term inside: -(3a - 4b + 2) = -3a + 4b - 2.
Last updated: July 2026

4.1 Algebraic Expressions & Variable Evaluation

Algebra represents one of the most pivotal transitions in elementary and middle school mathematics. While arithmetic focuses on calculations with known, fixed numbers, algebra introduces variables—symbols (typically letters such as $x$, $y$, or $n$) that represent unknown values, changing quantities, or general mathematical relationships. On the Praxis 5003 exam, elementary educators are tested not only on their ability to perform algebraic manipulations accurately but also on their understanding of the underlying structures that govern expressions and equations.


Anatomy of an Algebraic Expression

An algebraic expression is a mathematical phrase built from numbers, variables, and operation signs ($+$, $-$, $\times$, $\div$, exponents). It does not contain an equal sign ($=$). Understanding the precise vocabulary used to describe the components of an algebraic expression is essential for clear mathematical communication.

TerminologyDefinitionExample in $3x^2 - 7x + 5$
VariableA symbol (letter) representing an unknown or varying number.$x$
ConstantA fixed numerical value that does not change.$+5$
CoefficientThe numerical factor multiplying a variable.$3$ (for $x^2$) and $-7$ (for $x$)
TermA single number, variable, or product of numbers and variables separated by $+$ or $-$ signs.$3x^2$, $-7x$, and $5$
Degree of a TermThe sum of the exponents of the variables in that term.$3x^2$ has degree $2$; $-7x$ has degree $1$

Important Distinction: In the expression $3x^2 - 7x + 5$, the minus sign belongs to the coefficient. The term is $-7x$, not positive $7x$. Always treat subtraction as adding a negative number: $3x^2 + (-7x) + 5$.

Loading diagram...
Anatomy of an Algebraic Expression

Algebraic Expressions vs. Algebraic Equations

A common point of confusion for elementary students—and a frequent trap on Praxis test items—is confusing an expression with an equation.

  • Algebraic Expression: A mathematical phrase (e.g., $4x + 9$). It cannot be "solved" for a specific numerical value unless values are assigned to the variables. It can only be simplified or evaluated.
  • Algebraic Equation: A mathematical statement declaring that two expressions are equal, joined by an equal sign (e.g., $4x + 9 = 21$). An equation can be solved to determine the specific value(s) of the variable that make the statement true.
FeatureExpressionEquation
Contains Equal Sign?NoYes
Primary GoalSimplify or EvaluateSolve for Variable
Example$2a - 5b + 8$$2a - 5b = 8$
Result FormatSimplified expression or single valueSolution set (e.g., $x = 3$)

Evaluating Algebraic Expressions

To evaluate an algebraic expression, substitute specified numerical values in place of the variables and simplify the resulting arithmetic expression using the standard Order of Operations (PEMDAS / GEMS):

  1. P / G: Parentheses / Grouping Symbols (innermost first)
  2. E: Exponents & Radicals
  3. MD: Multiplication & Division (left to right)
  4. AS: Addition & Subtraction (left to right)

The Negative Substitution Trap

When substituting negative numbers into expressions, always enclose the negative value in parentheses. Failing to do so often leads to errors involving exponents and signs.

Consider evaluating $-x^2$ versus $(-x)^2$ when $x = 3$ and when $x = -3$:

  • If $x = 3$: $-x^2 = -(3^2) = -9$, whereas $(-x)^2 = (-3)^2 = 9$.
  • If $x = -3$: $-x^2 = -(-3)^2 = -(9) = -9$, whereas $(-x)^2 = (-(-3))^2 = (3)^2 = 9$.

[!WARNING] Exponents and Signs: $-x^2$ means "the negative of $x$ squared." The exponent applies only to $x$, not to the leading negative sign. However, $(-x)^2$ squares the entire term inside, yielding a positive result.

Step-by-Step Worked Example 1: Variable Evaluation

Problem: Evaluate the expression $\frac{3x^2 - 4xy + y^3}{2x - y}$ when $x = -2$ and $y = 3$.

Solution:

  1. Substitute given values with parentheses: 3(2)24(2)(3)+(3)32(2)(3)\frac{3(-2)^2 - 4(-2)(3) + (3)^3}{2(-2) - (3)}

  2. Evaluate exponents first (Numerator):

    • $(-2)^2 = 4 \implies 3(4) = 12$
    • $(3)^3 = 27$
  3. Perform multiplication in the numerator:

    • $-4(-2)(3) = -4(-6) = +24$
    • Numerator becomes: $12 + 24 + 27 = 63$
  4. Evaluate the denominator:

    • $2(-2) - (3) = -4 - 3 = -7$
  5. Perform final division: 637=9\frac{63}{-7} = -9

Final Answer: $-9$

Combining Like Terms

Simplifying an expression often requires combining like terms.

  • Like Terms: Terms that have the exact same variable base raised to the exact same exponent. Their numerical coefficients may differ, but their variable structure must be identical.
  • Unlike Terms: Terms with different variables (e.g., $3x$ and $3y$) or different exponents on the same variable (e.g., $4x^2$ and $4x^3$). Unlike terms cannot be combined through addition or subtraction.
Pair of TermsAre They Like Terms?Explanation
$5x$ and $-9x$YesSame variable $x$ to power $1$.
$4x^2y$ and $-2yx^2$YesSame variables ($x^2$ and $y^1$); multiplication is commutative.
$3x^2$ and $3x$NoDifferent exponents ($2$ vs $1$).
$7ab^2$ and $7a^2b$NoExponents belong to different variables.

To combine like terms, add or subtract their numerical coefficients while keeping the variable base and exponents completely unchanged.

axn+bxn=(a+b)xn\mathbf{a}x^n + \mathbf{b}x^n = (\mathbf{a} + \mathbf{b})x^n

Step-by-Step Worked Example 2: Combining Like Terms

Problem: Simplify the expression $8x^2 - 5xy + 3x - 2x^2 + 9xy - 7x + 4$.

Solution:

  1. Group like terms together:

    • $x^2$ terms: $8x^2 - 2x^2$
    • $xy$ terms: $-5xy + 9xy$
    • $x$ terms: $3x - 7x$
    • Constant terms: $+4$
  2. Combine coefficients for each group:

    • $(8 - 2)x^2 = 6x^2$
    • $(-5 + 9)xy = +4xy$
    • $(3 - 7)x = -4x$
    • Constant: $+4$
  3. Write the final simplified expression: 6x2+4xy4x+46x^2 + 4xy - 4x + 4


Expanding Expressions Using the Distributive Property

The Distributive Property of Multiplication over Addition/Subtraction states that multiplying a sum by a number gives the same result as multiplying each addend individually:

a(b+c)=ab+acanda(bc)=abaca(b + c) = ab + ac \quad \text{and} \quad a(b - c) = ab - ac

Distributing Negative Coefficients

When a negative number or minus sign precedes parentheses, it acts as multiplying every term inside by $-1$. A common error is distributing to the first term but forgetting to change the sign of subsequent terms.

(2x5y+3)=1(2x)1(5y)1(3)=2x+5y3-(2x - 5y + 3) = -1(2x) - 1(-5y) - 1(3) = -2x + 5y - 3

Step-by-Step Worked Example 3: Distributing and Simplifying

Problem: Simplify $4(3a - 2b) - 3(a - 4b + 2)$.

Solution:

  1. Distribute $4$ across the first set of parentheses: 4(3a)+4(2b)=12a8b4(3a) + 4(-2b) = 12a - 8b

  2. Distribute $-3$ across the second set of parentheses: 3(a)3(4b)3(2)=3a+12b6-3(a) - 3(-4b) - 3(2) = -3a + 12b - 6

  3. Combine the expanded expressions: 12a8b3a+12b612a - 8b - 3a + 12b - 6

  4. Group and combine like terms:

    • $a$ terms: $12a - 3a = 9a$
    • $b$ terms: $-8b + 12b = +4b$
    • Constants: $-6$

Final Answer: $9a + 4b - 6$


Elementary Pedagogical Connections & Praxis Traps

  1. The "Concatenation Error": Young learners often combine unlike terms by sticking them together (e.g., writing $3x + 4 = 7x$). On Praxis questions analyzing student work, recognize this as a failure to understand that $3x$ represents multiplication and cannot be added to a constant.
  2. Visual Area Models: Use rectangular area models to introduce distribution visually (e.g., representing $3(x + 4)$ as a rectangle with width $3$ and length split into $x$ and $4$, yielding regions of area $3x$ and $12$).
Test Your Knowledge

Evaluate the algebraic expression 2x² - 5xy + 3y² when x = -3 and y = 2.

A
B
C
D
Test Your Knowledge

Which of the following represents the fully simplified form of the expression 5(2x - 3y) - 3(4x - 2y) + 7x?

A
B
C
D
Test Your Knowledge

Which of the following pairs of algebraic terms constitutes a set of 'like terms'?

A
B
C
D