Polynomial Operations- Addition, Subtraction, Multiplication, Division

What Polynomials Actually Are

A polynomial is an expression with multiple terms made up of constants, variables, and exponents. The exponents must be whole numbers—0, 1, 2, 3, and so on. No negative exponents, no fractions as exponents.

For example, 3x² + 2x - 5 is a polynomial. 4x⁻² + 3x is not.

Each piece separated by a plus or minus sign is called a term. The number in front of the variable is the coefficient. The highest exponent tells you the degree of the polynomial.

You need to understand this before touching any polynomial operation. If the definition feels fuzzy, go back and relearn it first.

Polynomial Addition

Adding polynomials means combining like terms. That's it. No tricks, no special formulas.

Like terms are terms with the same variable raised to the same power. 3x² and 5x² are like terms. 3x² and 3x³ are not.

Horizontal Method

Write the polynomials next to each other and combine like terms.

Example:

(2x² + 4x + 3) + (3x² - 2x + 5)

Combine: 2x² + 3x² = 5x²

4x - 2x = 2x

3 + 5 = 8

Answer: 5x² + 2x + 8

Vertical Method

Stack terms in columns by degree, then add down.

    2x² + 4x + 3
  + 3x² - 2x + 5
  ─────────────────
    5x² + 2x + 8

The horizontal method works for most problems. The vertical method shines when you're adding many polynomials or need to avoid mistakes on complex expressions.

Polynomial Subtraction

Subtraction trips students up because of the distribute-the-negative step. Many people forget to change the signs of all terms in the second polynomial.

Example:

(5x³ + 2x² - 4x + 7) - (3x³ - 4x² + x - 2)

Step 1: Distribute the negative sign to the second polynomial.

5x³ + 2x² - 4x + 7 - 3x³ + 4x² - x + 2

Step 2: Combine like terms.

5x³ - 3x³ = 2x³

2x² + 4x² = 6x²

-4x - x = -5x

7 + 2 = 9

Answer: 2x³ + 6x² - 5x + 9

Write it out fully if you keep making sign errors. The extra line of writing saves you from losing points.

Polynomial Multiplication

Multiplication gets more involved. You have two main approaches depending on the polynomials involved.

Multiplying a Monomial by a Polynomial

Distribute the monomial to every term. That's all.

Example:

3x²(2x³ + 4x² - 5x + 7)

3x² × 2x³ = 6x⁵

3x² × 4x² = 12x⁴

3x² × (-5x) = -15x³

3x² × 7 = 21x²

Answer: 6x⁵ + 12x⁴ - 15x³ + 21x²

Multiplying Two Polynomials (FOIL for Binomials)

For two binomials, use FOIL: First, Outer, Inner, Last.

Example:

(x + 3)(x + 5)

First: x × x = x²

Outer: x × 5 = 5x

Inner: 3 × x = 3x

Last: 3 × 5 = 15

Combine: x² + 5x + 3x + 15 = x² + 8x + 15

FOIL only works for binomials. For larger polynomials, use the distributive property or the box method.

Box Method (Works for Everything)

Draw a grid. Put one polynomial across the top, one down the side. Multiply each cell, then add.

          2x²    +    4x    +    3
      ┌─────────┬─────────┬─────────┐
  x   │  2x³    │  4x²    │  3x     │
      ├─────────┼─────────┼─────────┤
  +5  │  10x²   │  20x    │  15     │
      └─────────┴─────────┴─────────┘

  Result: 2x³ + (4x² + 10x²) + (3x + 20x) + 15
  Answer: 2x³ + 14x² + 23x + 15

The box method eliminates mental tracking. You can see every multiplication before adding. Use it whenever FOIL won't cut it.

Special Products

Some patterns show up constantly. Memorize them.

Example using sum and difference:

(x + 4)(x - 4) = x² - 16

No middle term appears. This is called a difference of squares.

Polynomial Division

Division has two practical methods: long division and synthetic division. Synthetic is faster but only works in specific cases.

Polynomial Long Division

It works like regular long division, but with variables.

Example: Divide x² + 5x + 6 by x + 2

Step 1: Divide the first term of the dividend by the first term of the divisor.

x² ÷ x = x

Step 2: Multiply the entire divisor by that result.

x(x + 2) = x² + 2x

Step 3: Subtract.

(x² + 5x + 6) - (x² + 2x) = 3x + 6

Step 4: Bring down the next term and repeat.

3x ÷ x = 3

3(x + 2) = 3x + 6

(3x + 6) - (3x + 6) = 0

Answer: x + 3

Check your work: (x + 3)(x + 2) should equal x² + 5x + 6. It does.

Synthetic Division

Synthetic division is a shortcut. Use it only when dividing by a linear binomial in the form x - c.

Take the divisor x + 2. Change it to -2 (flip the sign). That's your synthetic divisor.

Example: Divide 2x³ + 5x² - x - 6 by x + 2

Step 1: Write coefficients: 2, 5, -1, -6

Step 2: Write the synthetic divisor: -2

Step 3: Bring down the 2. Multiply -2 × 2 = -4. Write below the 5.

Step 4: Add 5 + (-4) = 1. Multiply -2 × 1 = -2. Write below the -1.

Step 5: Add -1 + (-2) = -3. Multiply -2 × -3 = 6. Write below the -6.

Step 6: Add -6 + 6 = 0. This is the remainder.

  -2 │  2    5    -1    -6
      │       -4    -2     6
      └────────────────────────
        2    1    -3     0

The bottom row gives you the answer: 2x² + x - 3

Synthetic division takes 30 seconds once you understand the process. Long division takes two minutes. Learn both.

How to Approach Any Polynomial Problem

  1. Identify the operation. Are you adding, subtracting, multiplying, or dividing?
  2. Check for special cases. Difference of squares? Perfect square trinomial? Use the shortcut if it applies.
  3. Set up your work clearly. Messy work produces wrong answers.
  4. Combine only like terms. x² and x³ never touch.
  5. Check your answer. Plug in a simple value like x = 1 or x = 2. Does it work?

Quick Reference Table

Operation Key Rule When to Use
Addition Combine like terms only Always
Subtraction Distribute the negative sign first Always
Multiplication Every term touches every term FOIL for binomials, box for larger
Division Long division or synthetic Synthetic only for x - c divisors

Common Mistakes That Cost You Points

These errors are preventable. The fix is simple: slow down on the setup, write every step, and verify before moving on.