Fiveable

📈College Algebra Unit 1 Review

QR code for College Algebra practice questions

1.5 Factoring Polynomials

1.5 Factoring Polynomials

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📈College Algebra
Unit & Topic Study Guides

Factoring Polynomials

Factoring is the process of breaking a polynomial into simpler expressions that multiply together to give the original. It's one of the most important skills in algebra because it's how you'll solve equations, simplify rational expressions, and work with higher-level math throughout this course.

This section covers several factoring techniques, from pulling out a greatest common factor to recognizing special patterns like difference of squares and sum/difference of cubes.

Introduction to Polynomials

A polynomial is an expression made up of variables and coefficients, combined using addition, subtraction, and multiplication. Polynomials are classified by their number of terms:

  • Monomial: one term (e.g., 7x37x^3)
  • Binomial: two terms (e.g., x29x^2 - 9)
  • Trinomial: three terms (e.g., 2x2+5x+32x^2 + 5x + 3)

Factoring means writing a polynomial as a product of simpler expressions. Think of it as reversing the multiplication (distribution) you already know how to do.

Greatest Common Factor in Polynomials

Always start here. Before trying any other technique, check whether all the terms share a common factor.

Steps to factor out the GCF:

  1. List the factors of each term (both the numerical coefficients and the variables with their exponents).
  2. Identify the largest number that divides every coefficient and the lowest power of each variable that appears in every term.
  3. Divide each term by the GCF.
  4. Write the result as the GCF times the remaining expression in parentheses.

Example: Factor 12x318x2+6x12x^3 - 18x^2 + 6x.

  • The coefficients are 12, 18, and 6. The GCF of those is 6.
  • The variable parts are x3x^3, x2x^2, and xx. The lowest power is xx.
  • GCF = 6x6x
  • Divide each term: 12x3÷6x=2x212x^3 \div 6x = 2x^2, 18x2÷6x=3x-18x^2 \div 6x = -3x, 6x÷6x=16x \div 6x = 1
  • Result: 6x(2x23x+1)6x(2x^2 - 3x + 1)
Introduction to Polynomials, Algebraic Operations on Polynomials | College Algebra: Co-requisite Course

Methods for Quadratic Trinomials

A quadratic trinomial has the form ax2+bx+cax^2 + bx + c, where a0a \neq 0. The goal is to write it as a product of two binomials.

When a=1a = 1 (simple case):

Find two numbers that multiply to cc and add to bb. Those numbers go directly into the binomial factors.

Example: Factor x2+5x+6x^2 + 5x + 6.

You need two numbers that multiply to 6 and add to 5. That's 2 and 3.

x2+5x+6=(x+2)(x+3)x^2 + 5x + 6 = (x + 2)(x + 3)

When a1a \neq 1 (AC method):

  1. Multiply aca \cdot c to get the product acac.
  2. Find two numbers that multiply to acac and add to bb.
  3. Rewrite the middle term bxbx as two terms using those numbers.
  4. Factor by grouping (split into two pairs, factor each pair, then factor out the common binomial).

Example: Factor 6x2+7x36x^2 + 7x - 3.

  1. ac=6×(3)=18a \cdot c = 6 \times (-3) = -18

  2. Find two numbers that multiply to 18-18 and add to 77. That's 99 and 2-2.

  3. Rewrite: 6x2+9x2x36x^2 + 9x - 2x - 3

  4. Group: (6x2+9x)+(2x3)=3x(2x+3)1(2x+3)=(3x1)(2x+3)(6x^2 + 9x) + (-2x - 3) = 3x(2x + 3) - 1(2x + 3) = (3x - 1)(2x + 3)

Using the quadratic formula as a backup:

If you can't spot the factors, the quadratic formula x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} gives you the roots r1r_1 and r2r_2. Then the factored form is a(xr1)(xr2)a(x - r_1)(x - r_2).

Grouping Method for Longer Polynomials

For polynomials with four or more terms, factoring by grouping is your main tool.

  1. Group the terms into pairs that share a common factor.
  2. Factor the GCF out of each pair.
  3. If both groups produce the same binomial factor, factor that binomial out.

Example: Factor x3+2x23x6x^3 + 2x^2 - 3x - 6.

  1. Group: (x3+2x2)+(3x6)(x^3 + 2x^2) + (-3x - 6)

  2. Factor each group: x2(x+2)3(x+2)x^2(x + 2) - 3(x + 2)

  3. Factor out (x+2)(x + 2): (x23)(x+2)(x^2 - 3)(x + 2)

If the grouping doesn't produce a common binomial, try rearranging the terms before grouping again.

Introduction to Polynomials, 8.1 Add and Subtract Polynomials – Introductory Algebra

Perfect Square Trinomials

These follow a specific pattern worth memorizing:

  • a2+2ab+b2=(a+b)2a^2 + 2ab + b^2 = (a + b)^2
  • a22ab+b2=(ab)2a^2 - 2ab + b^2 = (a - b)^2

How to recognize one: The first and last terms must be perfect squares, and the middle term must equal 2ab2ab (twice the product of their square roots).

Example: Is x2+6x+9x^2 + 6x + 9 a perfect square trinomial?

  • x2=x\sqrt{x^2} = x and 9=3\sqrt{9} = 3
  • Check the middle term: 2(x)(3)=6x2(x)(3) = 6x. Yes, it matches.
  • Factored form: (x+3)2(x + 3)^2

Example: y214y+49=(y7)2y^2 - 14y + 49 = (y - 7)^2 because 2(y)(7)=14y2(y)(7) = 14y and the middle term is negative.

Difference of Squares

This pattern applies to binomials where two perfect squares are subtracted:

a2b2=(a+b)(ab)a^2 - b^2 = (a + b)(a - b)

Example: x225=(x+5)(x5)x^2 - 25 = (x + 5)(x - 5)

Example: 9y216=(3y+4)(3y4)9y^2 - 16 = (3y + 4)(3y - 4)

A common mistake: there is no "sum of squares" factoring pattern. a2+b2a^2 + b^2 does not factor over the real numbers.

Sum and Difference of Cubes

Two formulas to know here:

  • Sum of cubes: a3+b3=(a+b)(a2ab+b2)a^3 + b^3 = (a + b)(a^2 - ab + b^2)
  • Difference of cubes: a3b3=(ab)(a2+ab+b2)a^3 - b^3 = (a - b)(a^2 + ab + b^2)

A helpful memory trick: the sign in the binomial factor matches the original sign, and the first sign in the trinomial factor is the opposite.

Example: Factor x3+8x^3 + 8.

  • Rewrite as x3+23x^3 + 2^3, so a=xa = x and b=2b = 2.
  • (x+2)(x22x+4)(x + 2)(x^2 - 2x + 4)

Example: Factor 27y312527y^3 - 125.

  • Rewrite as (3y)353(3y)^3 - 5^3, so a=3ya = 3y and b=5b = 5.
  • (3y5)(9y2+15y+25)(3y - 5)(9y^2 + 15y + 25)

Factoring with Non-Integer Exponents

Sometimes you'll encounter expressions with fractional or negative exponents. The same factoring patterns apply; you just need to rewrite the expression first.

Fractional exponents: Rewrite terms so you can recognize a familiar pattern.

Example: Factor x3/28x^{3/2} - 8.

  • Rewrite as (x1/2)323(x^{1/2})^3 - 2^3. This is a difference of cubes with a=x1/2a = x^{1/2} and b=2b = 2.
  • (x1/22)(x+2x1/2+4)(x^{1/2} - 2)(x + 2x^{1/2} + 4)

Negative exponents: You can use substitution to make the expression look like a standard polynomial. Let u=x1u = x^{-1}, factor in terms of uu, then substitute back.

Example: Factor x29x1+8x^{-2} - 9x^{-1} + 8.

  • Let u=x1u = x^{-1}: the expression becomes u29u+8u^2 - 9u + 8.
  • Factor: (u1)(u8)(u - 1)(u - 8)
  • Substitute back: (x11)(x18)=(1x)(18x)x2(x^{-1} - 1)(x^{-1} - 8) = \frac{(1 - x)(1 - 8x)}{x^2}