Skip to content

Solving Quadratics Using Factoring

Factoring quadratic equations is a fundamental algebraic skill that allows you to break down a quadratic expression into simpler components, making it easier to solve. In this comprehensive guide, I'll cover various methods for factoring, common types of quadratic equations, and important "gotchas" (pitfalls) to watch out for.

1. Basic Concept of Factoring Quadratics

Factoring a quadratic equation involves rewriting the quadratic expression in the form:

\[ ax^2 + bx + c = (px + q)(rx + s) = 0 \]

The idea is to express the quadratic as a product of two binomials, which allows you to find the values of \(x\) (the roots) by setting each binomial to zero and solving:

\[ px + q = 0 \quad \text{or} \quad rx + s = 0 \]

2. Common Methods for Factoring Quadratics

a) Factoring by Simple Inspection (Trial and Error)

This method works best when the quadratic equation has leading coefficients \(a = 1\), making the equation look like:

\[ x^2 + bx + c \]

You look for two numbers that multiply to give \(c\) (the constant term) and add up to give \(b\) (the coefficient of \(x\)).

Example:

\[ x^2 + 5x + 6 \]

We need two numbers that multiply to \(6\) (the constant) and add up to \(5\) (the coefficient of \(x\)). These numbers are \(2\) and \(3\), so:

\[ x^2 + 5x + 6 = (x + 2)(x + 3) \]

The solutions are \(x = -2\) and \(x = -3\).

b) Factoring Using the Grouping Method (When \(a \neq 1\))

When \(a \neq 1\) (i.e., when the quadratic equation has a leading coefficient other than 1), trial and error becomes more complex. In these cases, the grouping method is helpful.

Steps:

  1. Multiply \(a\) and \(c\) (i.e., the leading coefficient and the constant).
  2. Find two numbers that multiply to \(a \cdot c\) and add up to \(b\).
  3. Split the middle term using these two numbers and then factor by grouping.

Example:

\[ 2x^2 + 7x + 3 \]
  1. Multiply \(a\) and \(c\): \(2 \times 3 = 6\).
  2. Find two numbers that multiply to \(6\) and add up to \(7\). These numbers are \(6\) and \(1\).
  3. Split the middle term: \(2x^2 + 6x + x + 3\).
  4. Factor by grouping:
\[ 2x(x + 3) + 1(x + 3) \]
  1. Factor out the common binomial factor:
\[ (2x + 1)(x + 3) \]

The solutions are \(x = -\frac{1}{2}\) and \(x = -3\).

c) Difference of Squares

The difference of squares is a special case of factoring that applies to quadratic expressions of the form: [ a^2 - b^2 = (a - b)(a + b) ]

This pattern works because the cross-terms cancel out.

Example:

\[ x^2 - 9 = (x - 3)(x + 3) \]

The solutions are \(x = 3\) and \(x = -3\).

Another example:

\[ 4x^2 - 25 = (2x - 5)(2x + 5) \]

The solutions are \(x = \frac{5}{2}\) and \(x = -\frac{5}{2}\).

d) Perfect Square Trinomials

A perfect square trinomial has the form:

\[ a^2 + 2ab + b^2 = (a + b)^2 \]

or

\[ a^2 - 2ab + b^2 = (a - b)^2 \]

This happens when the quadratic expression is the square of a binomial.

Example:

\[ x^2 + 6x + 9 = (x + 3)^2 \]

The solution is \(x = -3\) (a double root, meaning the parabola touches the x-axis at one point).

e) Factoring Quadratic Expressions Using Substitution

Sometimes the quadratic equation involves more complex terms, such as higher powers of \(x\) or fractions. In these cases, substitution can simplify the equation.

Example:

\[ x^4 - 5x^2 + 6 = 0 \]

Let \(y = x^2\), so the equation becomes:

\[ y^2 - 5y + 6 = 0 \]

Factor this as:

\[ (y - 2)(y - 3) = 0 \]

Thus, \(y = 2\) or \(y = 3\). Now substitute back \(y = x^2\):

\[ x^2 = 2 \quad \text{or} \quad x^2 = 3 \]

Thus, \(x = \pm \sqrt{2}\) or \(x = \pm \sqrt{3}\).

3. Gotchas (Common Pitfalls)

a) Forgetting the Leading Coefficient

When factoring quadratic equations with a leading coefficient \(a \neq 1\), it’s easy to forget to multiply the constant by \(a\) when using the grouping method. Always remember to check if \(a \neq 1\) and follow the appropriate steps.

Example:

In the equation \(2x^2 + 7x + 3\), forgetting to multiply the constant \(c = 3\) by \(a = 2\) (to get \(6\)) will lead to incorrect factorization.

b) Ignoring Negative Signs

Be careful with negative signs, especially when factoring expressions like the difference of squares or trinomials with negative terms. A sign error can completely change the solutions.

Example:

In \(x^2 - 6x + 9\), the correct factorization is \( (x - 3)^2 \), not \( (x + 3)^2 \).

c) Not Checking for Special Patterns

Quadratics often follow special patterns like the difference of squares or perfect square trinomials. Missing these can lead to unnecessary complexity. Always look for these patterns before attempting more complicated factoring.

d) Non-factorable Quadratics

Not all quadratic equations are factorable using integers or rational numbers. In cases where factoring is impossible or impractical, use the quadratic formula:

\[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \]

The quadratic formula works for any quadratic equation and should be a fallback method when factoring fails.

Example:

The equation \(x^2 + 2x + 2 = 0\) cannot be factored over the real numbers, but applying the quadratic formula gives complex roots:

\[ x = \frac{-2 \pm \sqrt{2^2 - 4(1)(2)}}{2(1)} = \frac{-2 \pm \sqrt{-4}}{2} = \frac{-2 \pm 2i}{2} \]

Thus, \(x = -1 \pm i\).

e) Factoring Completely

Always check if the quadratic expression can be factored completely. After an initial factorization, look for further opportunities to simplify.

Example:

\[ 4x^2 - 9 = (2x - 3)(2x + 3) \]

This is fully factored. However, if you only factor out \(x\) initially, you might overlook the difference of squares.


By recognizing patterns, following systematic methods, and being aware of common mistakes, you can efficiently factor and solve a wide variety of quadratic equations.