Factoring Equations- Techniques and Examples

What Factoring Equations Actually Is

Factoring is breaking down a complex expression into simpler parts that multiply together to give you the original. That's it. No magic, no mystery. You learned this in elementary school when you figured out that 12 = 3 × 4, then went further: 12 = 2 × 2 × 3.

In algebra, you're doing the same thing but with variables and coefficients. Instead of just numbers, you're factoring expressions like x² - 9 into (x + 3)(x - 3).

Why does this matter? Because factoring transforms impossible-looking equations into solvable ones. It's the difference between staring at x² = 9 and actually solving it in two seconds flat.

The Techniques That Actually Work

1. Factoring Out the Greatest Common Factor (GCF)

This is always your first move. Always. Before you try anything fancier, check if every term shares a common factor you can pull out front.

Example:

3x³ + 6x² - 9x

What's common to all three terms? 3x. Pull it out:

3x(x² + 2x - 3)

Done. Now you can factor the trinomial inside if needed. See how that works?

2. Difference of Squares

When you see something minus something, and both are perfect squares, this pattern applies:

a² - b² = (a + b)(a - b)

Example:

x² - 16 = (x + 4)(x - 4)

x² - 49 = (x + 7)(x - 7)

4x² - 9 = (2x + 3)(2x - 3)

You spot the squares first. Then you apply the formula. Simple.

3. Factoring Trinomials

These look like ax² + bx + c. When a = 1, it's straightforward. When a ≠ 1, you need to be more careful.

For x² + bx + c: Find two numbers that multiply to c and add to b.

Example: x² + 5x + 6

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

Answer: (x + 2)(x + 3)

For ax² + bx + c (when a ≠ 1): Use the AC method or guess-and-check.

Example: 2x² + 7x + 3

Multiply a × c = 2 × 3 = 6. Find two numbers that multiply to 6 and add to 7. That's 6 and 1.

Rewrite: 2x² + 6x + x + 3

Factor by grouping: 2x(x + 3) + 1(x + 3)

Answer: (2x + 1)(x + 3)

4. Perfect Square Trinomials

These are special cases of trinomials:

Example: x² + 6x + 9

Check: √x² = x, √9 = 3. Is 2(x)(3) = 6x? Yes.

Answer: (x + 3)²

5. Sum and Difference of Cubes

Less common but you'll hit these eventually:

Example: x³ - 8

8 is 2³, so: x³ - 2³ = (x - 2)(x² + 2x + 4)

Quick Reference: Factoring Methods Comparison

Type Form Method Example
GCF Common factor in all terms Divide each term by the common factor 4x² + 8x = 4x(x + 2)
Difference of Squares a² - b² (a + b)(a - b) x² - 25 = (x + 5)(x - 5)
Perfect Square Trinomial a² ± 2ab + b² (a ± b)² x² + 4x + 4 = (x + 2)²
General Trinomial ax² + bx + c Find factors of ac that sum to b x² + 4x + 3 = (x + 3)(x + 1)
Sum of Cubes a³ + b³ (a + b)(a² - ab + b²) x³ + 27 = (x + 3)(x² - 3x + 9)
Difference of Cubes a³ - b³ (a - b)(a² + ab + b²) x³ - 8 = (x - 2)(x² + 2x + 4)

Getting Started: How to Factor Any Expression

Follow this decision tree. Every time. Without skipping steps.

Step 1: Look for a GCF

Always check this first. Pull out anything common to all terms. Variables, coefficients, both. This simplifies everything that follows.

Step 2: Count the terms

Step 3: Check your work

Multiply the factors back out. Does it match the original? If yes, you're done. If no, go back and find your mistake.

Practice problem: Factor 6x² - 24

GCF first: 6(x² - 4)

Inside: difference of squares → (x + 2)(x - 2)

Final answer: 6(x + 2)(x - 2)

Solving Quadratic Equations by Factoring

This is where factoring becomes actually useful. When you have a quadratic equation set equal to zero, factoring lets you find the solutions.

Example: x² + 5x + 6 = 0

Factor: (x + 2)(x + 3) = 0

Set each factor to zero:

Solutions: x = -2, x = -3

The Zero Product Property is doing the heavy lifting here. If A × B = 0, then either A = 0 or B = 0. That's the whole principle.

Where Students Actually Mess Up

When Factoring Won't Work

Some quadratics don't factor nicely. That's fine. x² + x + 1 has no real factors. The discriminant (b² - 4ac) is negative. In these cases, you use the quadratic formula or complete the square instead.

Not every expression factors into neat integers. Know when to stop trying and switch methods.