Factoring Quadratics: Finding the Numbers That Multiply and Add
Factoring quadratics becomes systematic once you see the pattern: find two numbers that multiply to the constant term and add to the linear coefficient. That insight turns guesswork into reliable technique.
Factoring is multiplication in reverse.
When you multiply (x + 2)(x + 3), you get x² + 5x + 6. Factoring asks the opposite question: given x² + 5x + 6, can you find the numbers that multiply to 6 and add to 5?
Here's the unlock: factoring a quadratic x² + bx + c means finding two numbers that multiply to c and add to b. That's the whole puzzle. If you can find those two numbers, you can factor. If you can't, the quadratic doesn't factor nicely.
Factoring isn't a new operation. It's pattern recognition: spotting the multiplication that was hiding.
The Core Pattern
For x² + bx + c:
Find two numbers m and n where:
- m × n = c (multiply to the constant)
- m + n = b (add to the middle coefficient)
Then: x² + bx + c = (x + m)(x + n)
Example: x² + 7x + 12
Find m and n where m × n = 12 and m + n = 7.
Pairs that multiply to 12: (1,12), (2,6), (3,4) Which pair adds to 7? (3,4). ✓
So: x² + 7x + 12 = (x + 3)(x + 4)
Check by FOILing: (x + 3)(x + 4) = x² + 4x + 3x + 12 = x² + 7x + 12. ✓
Why This Works
When you multiply (x + m)(x + n):
(x + m)(x + n) = x² + nx + mx + mn = x² + (m+n)x + mn
The coefficient of x is m + n. The constant is mn.
So given x² + bx + c, you need m + n = b and mn = c. The pattern reverses automatically.
Handling Negatives
Signs matter. Pay attention to whether you need numbers that add to a negative or multiply to a negative.
Example: x² - 5x + 6
Need: m × n = 6 (positive) and m + n = -5 (negative)
Both numbers must be negative (negative × negative = positive, negative + negative = negative).
Pairs: (-1,-6), (-2,-3). Which adds to -5? (-2,-3). ✓
x² - 5x + 6 = (x - 2)(x - 3)
Example: x² + x - 12
Need: m × n = -12 (negative) and m + n = 1 (positive)
One number positive, one negative (opposite signs multiply to negative). The positive one has larger absolute value (to get positive sum).
Pairs for 12: (1,12), (2,6), (3,4). With opposite signs: (4,-3). ✓
x² + x - 12 = (x + 4)(x - 3)
When Factoring Doesn't Work
Not every quadratic factors over integers.
x² + 3x + 5
Need m × n = 5 and m + n = 3. Pairs: (1,5). Sum: 6 ≠ 3.
No integer pairs work. This quadratic doesn't factor nicely.
You'd need the quadratic formula to solve x² + 3x + 5 = 0 — the solutions are irrational or complex.
The AC Method (for ax² + bx + c where a ≠ 1)
When the leading coefficient isn't 1, the pattern adjusts.
For ax² + bx + c: find numbers that multiply to ac and add to b.
Example: 2x² + 7x + 3
a = 2, b = 7, c = 3 Need: m × n = 2 × 3 = 6 and m + n = 7 Pairs: (1,6). Sum: 7. ✓
Rewrite the middle term: 2x² + 6x + 1x + 3
Factor by grouping:
- Group 1: 2x² + 6x = 2x(x + 3)
- Group 2: 1x + 3 = 1(x + 3)
Factor out (x + 3): (x + 3)(2x + 1)
Check: (x + 3)(2x + 1) = 2x² + x + 6x + 3 = 2x² + 7x + 3. ✓
Difference of Squares
Special pattern: a² - b² = (a + b)(a - b)
Example: x² - 9 = x² - 3² = (x + 3)(x - 3)
Example: 4x² - 25 = (2x)² - 5² = (2x + 5)(2x - 5)
The sum and difference always multiply to the difference of squares. This pattern is worth memorizing.
Perfect Square Trinomials
Another special pattern:
a² + 2ab + b² = (a + b)² a² - 2ab + b² = (a - b)²
Example: x² + 6x + 9 = x² + 2(3)x + 3² = (x + 3)²
How to recognize: the constant is a perfect square, and the middle term is twice the product of the square roots.
Sum and Difference of Cubes
Less common but useful:
a³ + b³ = (a + b)(a² - ab + b²) a³ - b³ = (a - b)(a² + ab + b²)
Example: x³ - 8 = x³ - 2³ = (x - 2)(x² + 2x + 4)
The second factor doesn't factor further over reals.
Factoring to Solve Equations
Why factor? To solve equations using the zero product property:
If ab = 0, then a = 0 or b = 0.
Example: x² + 7x + 12 = 0
Factor: (x + 3)(x + 4) = 0
Apply zero product property: x + 3 = 0 → x = -3 x + 4 = 0 → x = -4
Solutions: x = -3 or x = -4
Factoring transforms one complicated equation into two simple ones.
Greatest Common Factor First
Always look for a GCF before trying other methods.
Example: 3x² + 6x = 0
Factor out 3x: 3x(x + 2) = 0
Solutions: 3x = 0 → x = 0, or x + 2 = 0 → x = -2
The GCF simplifies everything that follows.
Factoring by Grouping
For four-term expressions, group and factor:
Example: x³ + 2x² + 3x + 6
Group: (x³ + 2x²) + (3x + 6)
Factor each group: x²(x + 2) + 3(x + 2)
Factor out (x + 2): (x + 2)(x² + 3)
This is how the AC method works — you introduce four terms, then group.
When to Factor vs. Use the Formula
Factor when:
- You can spot the pattern quickly
- The solutions look like nice integers
- You're asked to factor (not solve)
Use the quadratic formula when:
- Factoring isn't obvious
- The discriminant is messy
- You need exact irrational or complex solutions
Factoring is faster when it works. The formula is reliable when it doesn't.
The Core Insight
Factoring is un-multiplying.
For x² + bx + c, you're hunting for two numbers that multiply to c and add to b. If they exist (as integers), the quadratic factors. If they don't, you need other methods.
The patterns — difference of squares, perfect squares, sum/difference of cubes — are just common products you've seen before, recognizable in reverse.
Factoring is pattern recognition: seeing the multiplication hiding inside an expression.
Part 5 of the Algebra Fundamentals series.
Previous: The Quadratic Formula: Why It Always Works Next: Systems of Equations: When Two Unknowns Need Two Equations
Comments ()