3.1 Polynomial Structure and Factoring Techniques

Key Takeaways

  • Polynomial factoring begins with extracting the greatest common factor (GCF), which simplifies the expression before applying higher-degree factoring methods.
  • The difference of two squares $a^2 - b^2 = (a - b)(a + b)$ can occur repeatedly in expressions such as $x^4 - 81 = (x - 3)(x + 3)(x^2 + 9)$, where the sum of squares $x^2 + 9$ is prime over the real numbers.
  • Trinomials of the form $ax^2 + bx + c$ are factored using the $ac$ method by finding factors of the product $ac$ that sum to $b$, then splitting the linear term and factoring by grouping.
  • Four-term polynomials are factored by grouping pairs of terms, requiring strict attention to signs when factoring a negative GCF from the second pair.
  • Expressions in quadratic form $au^2 + bu + c$, such as quartics $ax^4 + bx^2 + c$ or composed binomials $a(x - h)^2 + b(x - h) + c$, are solved via $u$-substitution and back-substitution.
Last updated: September 2026

3.1 Polynomial Structure and Factoring Techniques

[!NOTE] Regents Standard Alignment: New York State Next Generation Learning Standards AII-A.SSE.2 (Use the structure of an expression to identify ways to rewrite it) and AII-A.SSE.3a (Factor a quadratic expression to reveal the zeros of the function it defines) form the foundation of Regents polynomial algebra. NYSED notes that for Algebra II, A-SSE.2 factoring specifically includes quadratic expressions with leading coefficients other than 1, factoring by grouping, and factoring the sum and difference of cubes, and that seeing structure and using it to rewrite expressions is a fluency expectation for the course. The command phrase "Factor completely" appears frequently across Part I multiple-choice and Parts II–IV constructed-response questions, requiring students to decompose polynomials until all factors are irreducible over the specified number set.

Polynomial expressions are the fundamental building blocks of higher algebra. Rather than viewing an algebraic expression as a random collection of numbers, variables, and operational symbols, fluent mathematicians look for underlying structure—groupings, symmetry, recurring sub-expressions, and degree relationships. Recognizing structural patterns allows you to transform complex, multi-degree polynomials into products of simpler linear and quadratic factors.


The Systematic Factoring Hierarchy

When confronted with any polynomial expression on the Regents examination, working haphazardly leads to missed factors and algebraic errors. You must follow a disciplined, five-step factoring hierarchy:

Step 1: Greatest Common Factor (GCF)  ───> Always factor out first!
   │
Step 2: Difference of Two Squares     ───> Look for a² - b² = (a - b)(a + b) (check for repeats)
   │
Step 3: Quadratic Trinomials (ac)     ───> For ax² + bx + c, use the ac grouping method
   │
Step 4: Factoring by Grouping         ───> For 4-term expressions, group 2-by-2 or 3-by-1
   │
Step 5: Quadratic Form Substitution   ───> For quartics ax⁴ + bx² + c, let u = x²

Step 1: Greatest Common Factor (GCF)

Factoring out the greatest common factor is always the mandatory first step. The GCF consists of the greatest common numerical divisor of all coefficients multiplied by each variable raised to its lowest exponent appearing in any term.

Expression: 12x536x3+24x2\text{Expression: } 12x^5 - 36x^3 + 24x^2

  1. Find the numerical GCF: $\gcd(12, 36, 24) = 12$.
  2. Find the variable GCF: The powers of $x$ are 5, 3, and 2. The lowest power is $x^2$.
  3. Factor out $12x^2$: 12x536x3+24x2=12x2(x33x+2)12x^5 - 36x^3 + 24x^2 = 12x^2(x^3 - 3x + 2)

[!TIP] Always verify your GCF factorization by mentally distributing the monomial back into the parentheses. If any common factors remain inside the parentheses, you did not extract the greatest common factor.


Step 2: Difference of Two Squares and Repeated Factoring

A binomial consisting of two perfect square terms separated by a subtraction sign factors according to the difference of squares identity:

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

On the Regents exam, test writers frequently test repeated difference of squares, where the resulting quadratic factor can itself be factored a second time.

Worked Example: Repeated Difference of Squares

Factor completely over the set of integers: $x^4 - 81$.

  • Step 1: Recognize $x^4 = (x^2)^2$ and $81 = 9^2$. Apply the difference of squares: x481=(x29)(x2+9)x^4 - 81 = (x^2 - 9)(x^2 + 9)
  • Step 2: Inspect both factors. The first factor, $x^2 - 9$, is itself a difference of two squares ($x^2 - 3^2$): x29=(x3)(x+3)x^2 - 9 = (x - 3)(x + 3)
  • Step 3: Inspect the second factor, $x^2 + 9$. This is a sum of squares. Over the real numbers, a sum of squares $a^2 + b^2$ is prime (irreducible) because it has no real zeros ($x^2 = -9 \implies x = \pm 3i$).
  • Final Result: x481=(x3)(x+3)(x2+9)x^4 - 81 = (x - 3)(x + 3)(x^2 + 9)

[!WARNING] Common Regents Trap: Never factor a sum of squares as $(a + b)(a + b)$ or $(a - b)(a - b)$. Notice that $(x + 3)(x + 3) = x^2 + 6x + 9 \neq x^2 + 9$. Over the real numbers, $a^2 + b^2$ cannot be factored.


Step 3: Trinomials ($ax^2 + bx + c$) via the $ac$ Method

When factoring a quadratic trinomial where the leading coefficient $a \neq 1$, guessing and checking can consume valuable time. The $ac$ method (factoring by grouping) guarantees the correct factorization in four systematic steps:

  1. Multiply the leading coefficient $a$ by the constant term $c$ to compute the target product $ac$.
  2. Identify two integers, $m$ and $p$, whose product is $ac$ ($m \cdot p = ac$) and whose sum is $b$ ($m + p = b$).
  3. Rewrite the middle linear term $bx$ as the sum of two terms: $mx + px$.
  4. Factor the resulting four-term polynomial by grouping.

Worked Example: Factoring $6x^2 - 11x - 10$

  1. Identify coefficients: $a = 6$, $b = -11$, $c = -10$.
  2. Calculate the product: $ac = 6 \cdot (-10) = -60$.
  3. Find two integers multiplying to $-60$ and adding to $-11$:
    • Factor pairs of $-60$: $(-20, 3) \to -17$; $(-15, 4) \to -11$. The correct integers are $-15$ and $4$.
  4. Split the middle term: 6x211x10=6x215x+4x106x^2 - 11x - 10 = 6x^2 - 15x + 4x - 10
  5. Group the first two terms and the last two terms: (6x215x)+(4x10)(6x^2 - 15x) + (4x - 10)
  6. Extract the GCF from each binomial group: 3x(2x5)+2(2x5)3x(2x - 5) + 2(2x - 5)
  7. Factor out the shared binomial $(2x - 5)$: (3x+2)(2x5)(3x + 2)(2x - 5)

Step 4: Factoring by Grouping (Four-Term Polynomials)

Four-term cubic polynomials frequently appear on Regents exams, especially in Part II (2-credit) and Part III (4-credit) constructed-response tasks. The standard technique is 2-by-2 grouping.

Worked Example: Factoring $x^3 + 2x^2 - 4x - 8$

Factor completely over the set of integers: $x^3 + 2x^2 - 4x - 8$.

  • Step 1: Pair the first two terms and the last two terms: (x3+2x2)+(4x8)(x^3 + 2x^2) + (-4x - 8)
  • Step 2: Factor out the GCF from each pair. From $x^3 + 2x^2$, extract $x^2$. From $-4x - 8$, extract the negative GCF, $-4$: x2(x+2)4(x+2)x^2(x + 2) - 4(x + 2) Notice that factoring out $-4$ changes the sign inside the binomial to $(x + 2)$, matching the first group.
  • Step 3: Factor out the common binomial factor $(x + 2)$: (x24)(x+2)(x^2 - 4)(x + 2)
  • Step 4: Check if any factor can be factored further. The quadratic factor $x^2 - 4$ is a difference of two squares: x24=(x2)(x+2)x^2 - 4 = (x - 2)(x + 2)
  • Step 5: Write the complete factorization by combining like factors: (x2)(x+2)(x+2)=(x2)(x+2)2(x - 2)(x + 2)(x + 2) = (x - 2)(x + 2)^2

Step 5: Quadratic Form Substitution ($u$-Substitution)

A polynomial is said to be in quadratic form if it can be written as $a[f(x)]^2 + b[f(x)] + c = 0$. By substituting a dummy variable $u = f(x)$, the expression transforms into a standard quadratic trinomial $au^2 + bu + c$.

Case A: Quartic Polynomials ($ax^4 + bx^2 + c$)

Consider the expression $x^4 - 5x^2 - 36$:

  1. Let $u = x^2$. Then $u^2 = (x^2)^2 = x^4$.
  2. Rewrite the expression in terms of $u$: u25u36u^2 - 5u - 36
  3. Factor the simple quadratic trinomial: (u9)(u+4)(u - 9)(u + 4)
  4. Back-substitute $u = x^2$: (x29)(x2+4)(x^2 - 9)(x^2 + 4)
  5. Factor completely over integers: (x3)(x+3)(x2+4)(x - 3)(x + 3)(x^2 + 4)

Case B: Composed Binomial Expressions

Consider the expression $2(x - 3)^2 + 5(x - 3) - 12$:

  1. Let $u = (x - 3)$. The expression becomes $2u^2 + 5u - 12$.
  2. Apply the $ac$ method: $ac = 2(-12) = -24$. Factors of $-24$ adding to $5$ are $8$ and $-3$.
  3. Split and factor: 2u2+8u3u12=2u(u+4)3(u+4)=(2u3)(u+4)2u^2 + 8u - 3u - 12 = 2u(u + 4) - 3(u + 4) = (2u - 3)(u + 4)
  4. Back-substitute $u = (x - 3)$: [2(x3)3][(x3)+4][2(x - 3) - 3][(x - 3) + 4]
  5. Simplify inside each bracket: (2x63)(x+1)=(2x9)(x+1)(2x - 6 - 3)(x + 1) = (2x - 9)(x + 1)

Factoring Completely: Integers vs. Real Numbers

The instruction "Factor completely" has precise mathematical boundaries depending on the specified number domain. Pay strict attention to the wording in Regents prompts:

Number DomainTreatment of $x^2 - 5$Treatment of $x^2 + 4$Treatment of $x^4 - 4$
Over the Integers ($\mathbb{Z}$)Prime (cannot factor $\sqrt{5}$)Prime (no integer zeros)$(x^2 - 2)(x^2 + 2)$
Over the Real Numbers ($\mathbb{R}$)$(x - \sqrt{5})(x + \sqrt{5})$Prime (zeros are $\pm 2i$)$(x - \sqrt{2})(x + \sqrt{2})(x^2 + 2)$
Over the Complex Numbers ($\mathbb{C}$)$(x - \sqrt{5})(x + \sqrt{5})$$(x - 2i)(x + 2i)$$(x - \sqrt{2})(x + \sqrt{2})(x - i\sqrt{2})(x + i\sqrt{2})$

[!IMPORTANT] Unless a Regents problem explicitly states "over the set of real numbers" or "over the set of complex numbers", all factoring questions default to factoring completely over the set of integers.


Factoring Strategy Decision Matrix

Use this reference table to instantly diagnose the required factoring technique based on the number of terms and algebraic structure:

Number of TermsVisual Clue / StructurePrimary Factoring TechniqueModel Example
Any numberCommon factor in all termsGreatest Common Factor (GCF)$4x^3 - 16x = 4x(x^2 - 4)$
2 terms$a^2 - b^2$ (both terms squares)Difference of Two Squares$25x^2 - 49 = (5x - 7)(5x + 7)$
2 terms$a^4 - b^4$ (fourth powers)Repeated Difference of Squares$x^4 - 16 = (x - 2)(x + 2)(x^2 + 4)$
3 terms$x^2 + bx + c$ ($a = 1$)Product/Sum Factoring$x^2 - 7x + 12 = (x - 3)(x - 4)$
3 terms$ax^2 + bx + c$ ($a \neq 1$)The $ac$ Grouping Method$4x^2 + 7x - 2 = (4x - 1)(x + 2)$
3 terms$ax^4 + bx^2 + c$ (even powers)Quadratic Form ($u = x^2$)$x^4 - 10x^2 + 9 = (x - 1)(x + 1)(x - 3)(x + 3)$
4 terms$ax^3 + bx^2 + cx + d$2-by-2 Factoring by Grouping$x^3 + 3x^2 - 9x - 27 = (x + 3)^2(x - 3)$
Test Your Knowledge

Which expression represents the completely factored form of 2x^3 - 3x^2 - 18x + 27 over the set of integers?

A
B
C
D
Test Your Knowledge

Which expression represents the completely factored form of x^4 - 13x^2 + 36 over the set of integers?

A
B
C
D
Test Your Knowledge

What is the complete factorization of 3x^5 - 48x over the set of real numbers?

A
B
C
D