Solving by Factoring
Many quadratics can be solved without the big formula.
The idea is to rewrite \(x^2 + bx + c = 0\) as a product of two
brackets:
\[ x^2 + bx + c = (x + p)(x + q) = 0 \]
Then, because a product is zero only when one of its factors is
zero, the solutions are \(x = -p\) or \(x = -q\).
⚠️ Limitations
Factoring is fast and neat, but it doesn't work for
every quadratic:
- It only works easily when \(c\) splits into two whole numbers
that also add to \(b\). If no such pair exists, you can't
factor with simple integers.
- The roots must be rational. Equations like
\(x^2 - 2 = 0\) (roots \(\pm\sqrt{2}\)) cannot be factored
with whole numbers.
- If the discriminant \(b^2 - 4ac\) is negative
there are no real solutions, so there is nothing to factor.
- When the leading coefficient is not 1 (\(a \neq 1\)), factoring
takes extra steps. The factoring practice keeps \(a = 1\) so the
method always works.
When factoring fails, fall back on the quadratic formula — it
always works.
Worked Example
Solve \(x^2 + 5x + 6 = 0\)
1. We need two numbers that multiply to \(6\) and add to
\(5\).
2. Those numbers are \(2\) and \(3\) (since \(2 \times 3 = 6\)
and \(2 + 3 = 5\)).
3. Factor: \((x + 2)(x + 3) = 0\)
4. Set each factor to zero: \(x + 2 = 0\) or
\(x + 3 = 0\)
5. Solutions: \(x = -2\) and \(x = -3\)
Try it yourself on the
🎯 Practice Problems tab — pick the
✏️ Factoring method.