Method guideAlgebra IIntermediate11 min read

Factoring trinomials: use product and sum, not random guessing

For x² + bx + c, find two numbers with product c and sum b. For ax² + bx + c, split the middle term using product ac.

x2+bx+c=(x+m)(x+n),mn=c, m+n=bx^2+bx+c=(x+m)(x+n),\quad mn=c,\ m+n=b
Method guide

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

Updated July 13, 2026
RecognitionStart here

Factoring reverses polynomial multiplication. The middle coefficient comes from a sum; the constant comes from a product.

01

The monic case has two clean conditions

When the leading coefficient is one, list factor pairs of c and choose the pair whose sum is b. Signs follow from the product and sum.

A positive c means the pair has matching signs; a negative c means opposite signs.

x27x+12=(x3)(x4)x^2-7x+12=(x-3)(x-4)
02

Use ac to handle a leading coefficient

For ax² + bx + c, find numbers whose product is ac and whose sum is b. Split bx into those two terms, then factor by grouping.

This method is systematic and makes every coefficient visible, which is safer than guessing binomial fronts and backs.

6x2+11x+3=6x2+9x+2x+36x^2+11x+3=6x^2+9x+2x+3
03

Not every trinomial factors over the integers

If no integer pair works, the trinomial may be prime over the integers even though it factors over the reals or complex numbers.

The discriminant b² − 4ac predicts the root structure and can explain why integer factoring fails.

b24acb^2-4ac
Worked exampleSplit the middle term

Factor 6x² + 11x + 3.

1ac=63=18ac=6\cdot3=18

Multiply the leading and constant coefficients.

292=18,9+2=119\cdot2=18,\quad9+2=11

Choose the product-sum pair.

36x2+9x+2x+36x^2+9x+2x+3

Split the middle term.

43x(2x+3)+1(2x+3)3x(2x+3)+1(2x+3)

Factor each group.

5(3x+1)(2x+3)(3x+1)(2x+3)

Factor the shared binomial.

Result(3x+1)(2x+3)\boxed{(3x+1)(2x+3)}
Watch for

Common mistakes

  1. Looking for a product of c instead of ac when a ≠ 1.
  2. Choosing a pair with the right product but wrong sum.
  3. Declaring failure after one factor pair.
Keep

Three takeaways

  1. Factoring reverses multiplication.
  2. Use product ac and sum b.
  3. Some trinomials are prime over the integers.