Skip to main content

Combining Like Terms

Simplify algebraic expressions by identifying and combining like terms β€” the essential skill for solving any equation.

Lesson 4 of 11 Algebra & Equations Beginner ⏱ 7 min read
πŸ”₯ Why This Matters

Before you can solve any equation, you have to simplify it. Combining like terms is the cleanup step that makes every equation solvable. Whether you're a carpenter adding lumber costs, a developer reducing a formula in code, or a student simplifying before solving, this skill is used in every single algebraic problem that follows. Skip it and you'll carry unnecessary complexity through every step.

🎯 What You'll Learn
  • Identify like terms by matching variables and exponents
  • Combine like terms by adding or subtracting their coefficients
  • Simplify multi-variable and multi-exponent expressions correctly
πŸ“– Key Vocabulary
Like TermsTerms with exactly the same variable(s) raised to the same power(s). Example: 3x and 7x are like terms; 3x and 3xΒ² are NOT. CoefficientThe number in front of the variable β€” what you add or subtract when combining. Simplified ExpressionAn expression where all like terms have been combined β€” no further combining is possible. Constant TermA number with no variable β€” constants can only be combined with other constants.
Key Concept

Like terms have the same variable part β€” the same letter(s) AND the same exponent. Only the coefficients differ. To combine: add or subtract the coefficients, keep the variable part unchanged.

\[ 3x + 7x = (3+7)x = 10x \qquad\qquad 5x^2 - 2x^2 = (5-2)x^2 = 3x^2 \]

You can think of it like fruit: 3 apples + 7 apples = 10 apples. But 3 apples + 7 oranges stay separate β€” you can't combine different kinds. The same rule applies: \(3x + 7y\) cannot be simplified further.

Grouping Like Terms Visually

Simplify: 4xΒ² + 3x βˆ’ 2xΒ² + 5 βˆ’ x + 9

Group by variable type:
4xΒ² βˆ’ 2xΒ² 3x βˆ’ x 5 + 9
\[ = 2x^2 + 2x + 14 \]
Worked Example 1 β€” Basic: One Variable

Simplify: \(8n - 3n + n\)

All terms have the variable \(n\) (exponent 1). Add/subtract the coefficients:

\[ 8n - 3n + n = (8-3+1)n = 6n \]

Note: \(n\) has an implicit coefficient of 1, so \(n = 1n\).

Worked Example 2 β€” Intermediate: Mixed Terms

Simplify: \(5x^2 + 3x - 2x^2 - 7x + 4\)

  1. Group like terms: \((5x^2 - 2x^2) + (3x - 7x) + 4\)
  2. Combine each group: \(3x^2 + (-4x) + 4\)
  3. Write the simplified form: \(3x^2 - 4x + 4\)
\[ 5x^2 + 3x - 2x^2 - 7x + 4 = 3x^2 - 4x + 4 \]
Worked Example 3 β€” Real World: Job Estimate

A contractor charges: \(50h + 30m + 200 + 20h - 10m\) dollars, where \(h\) = hours of labor, \(m\) = materials units, and 200 is a flat fee. Simplify the pricing formula.

  1. Group: \((50h + 20h) + (30m - 10m) + 200\)
  2. Combine: \(70h + 20m + 200\)

The simplified pricing formula is \(70h + 20m + 200\).

✏️ Quick Check

Simplify each expression:

  1. \(9y - 4y + 2y\)
  2. \(6a^2 + 3a - 2a^2 + a - 8\)
  3. \(4x + 7y - x + 3y\)
β–Ά Show Answers
  1. \(7y\)
  2. \(4a^2 + 4a - 8\)
  3. \(3x + 10y\) β€” x and y are different variables; they can't combine with each other.
⚠️ Common Mistakes
  • Combining unlike terms: \(3x + 5y \neq 8xy\). Different variables mean different terms β€” leave them separate.
  • Combining different powers: \(x^2 + x \neq x^3\) and \(x^2 + x \neq 2x^2\). The exponents must match.
  • Forgetting the sign: In \(5x - 3x^2\), the subtraction sign belongs to the \(3x^2\) term. When rearranging, keep signs with their terms.
βœ… Key Takeaways
  • Like terms must have the same variable AND the same exponent to be combined.
  • Combine by operating on coefficients only β€” the variable part stays the same.
  • Constants combine with constants β€” they're like terms with no variable.
  • Simplifying first makes every equation and word problem dramatically easier to solve.
πŸ’Ό Career Connection β€” Software Development

When developers optimize code, they simplify algebraic complexity expressions β€” combining redundant operations into fewer steps. A function that calls \(n + 2n + n\) operations can be simplified to \(4n\) (linear), dramatically affecting performance at scale. Combining like terms is the algebraic equivalent of code refactoring.

Calculator Connection

The Expression Simplifier can expand and simplify polynomial expressions, showing each step of the combining process.

Try it with the Calculator

Apply what you've learned with this tool.

Expanding Expressions
Apply the distributive property to expand expressions like a(bx + c).
Use calculator β†’
← Previous Lesson
Back to
Order of Operations (PEMDAS) with Variables
Continue Learning
Up Next: Solving One-Step Equations
Next Lesson →
Test Your Knowledge

Combining Like Terms - Quiz

5 questions per attempt  Β·  Beginner  Β·  Pass at 70%

Start Quiz β†’

More in Algebra & Equations

Understanding Order of Operations Variables and Expressions Order of Operations (PEMDAS) with Variables
← All Algebra & Equations lessons