Method guideAlgebra IFoundational8 min read

Factor the greatest common factor before anything fancy

The GCF is the largest expression dividing every term. Removing it first exposes the smaller polynomial that actually needs attention.

ab+ac=a(b+c)ab+ac=a(b+c)
Method guide

How to recognize the method, run it, and know when it is the wrong choice.

Updated July 13, 2026
First moveStart here

Before looking for trinomial or special patterns, ask what every term shares.

01

Find the numerical and variable parts separately

The numerical GCF is the greatest common divisor of the coefficients. For each variable, use the smallest exponent appearing in every term.

A term missing a variable has exponent zero, so that variable cannot be part of the common factor.

gcd(18x3y,24x2y4)=6x2y\gcd(18x^3y,24x^2y^4)=6x^2y
02

Divide each term to build the inside

After pulling out the GCF, divide every original term by it. The quotients form the polynomial inside parentheses.

Expanding the result should reproduce the original expression exactly. That one-line check catches most omissions.

15x225x=5x(3x5)15x^2-25x=5x(3x-5)
03

A negative GCF can improve the form

When the leading term is negative, factoring out a negative common factor leaves a positive leading coefficient inside.

This is optional but often makes later factoring and interpretation cleaner.

4x2+12x=4x(x3)-4x^2+12x=-4x(x-3)
Worked exampleExtract what every term shares

Factor 18x³y − 24x²y² + 30x²y.

1gcd(18,24,30)=6\gcd(18,24,30)=6

Find the common numerical factor.

2xmin(3,2,2)ymin(1,2,1)=x2yx^{\min(3,2,2)}y^{\min(1,2,1)}=x^2y

Use the smallest shared exponents.

318x3y24x2y2+30x2y=6x2y(3x4y+5)18x^3y-24x^2y^2+30x^2y=6x^2y(3x-4y+5)

Divide each term by the GCF.

Result6x2y(3x4y+5)\boxed{6x^2y(3x-4y+5)}
Watch for

Common mistakes

  1. Using the largest exponent instead of the smallest shared exponent.
  2. Leaving one term undivided inside the parentheses.
  3. Skipping the GCF before another factoring pattern.
Keep

Three takeaways

  1. Factor numbers and variables separately.
  2. Use minimum shared exponents.
  3. Expand once to verify.