What Does It Mean to Factorize a Quadratic Polynomial?
Factorizing a quadratic polynomial means expressing $ax^2 + bx + c$ as a product of two linear factors of the form $(px + q)(rx + s)$. When the quadratic equals zero, those factors hand you the roots directly, because a product is zero only when one of its factors is zero.
If $ax^2 + bx + c = (x - h)(x - k)$, then $h$ and $k$ are the roots of the quadratic — the values of $x$ that make the whole expression zero. This is the zero product property at work: a product of factors is zero exactly when at least one factor is zero.
Not every quadratic factors neatly over the rational numbers. When it does not, the quadratic formula still finds the roots — factoring is the fast route, the formula is the route that always works.
How Do You Factorize a Quadratic Polynomial?
There are four standard methods. They give the same factors when they apply — the choice is about which is fastest for the quadratic in front of you.
Splitting the middle term — the workhorse. Find two numbers that multiply to $ac$ and add to $b$, split $bx$ into those two terms, and group.
Algebraic identities — when the quadratic is a perfect square trinomial or a difference of squares, an identity factors it on sight.
Grouping — the mechanism behind splitting the middle term, useful directly when a common factor appears in pairs.
The quadratic formula — when no clean factors exist, the formula finds the roots, and the roots rebuild the factors.
Splitting the middle term, step by step
For $ax^2 + bx + c$, find two numbers whose product is $a \times c$ and whose sum is $b$. Take $x^2 + 7x + 10$, where $a = 1$, $b = 7$, $c = 10$:
Compute $ac = 1 \times 10 = 10$.
Find two numbers multiplying to 10 and adding to 7: that is 2 and 5.
Split the middle term: $x^2 + 2x + 5x + 10$.
Group and factor each pair: $x(x + 2) + 5(x + 2)$.
Factor out the common bracket: $(x + 2)(x + 5)$.
The common bracket appearing in step 4 is the signal you did it right — if the two brackets don't match, recheck the two numbers.
Examples of Factorization of Quadratic Polynomials
Example 1
Factorize $x^2 + 8x + 15$.
Here $ac = 1 \times 15 = 15$ and $b = 8$. Two numbers multiplying to 15 and adding to 8 are 3 and 5.
Split the middle term:
$$x^2 + 3x + 5x + 15$$
Group:
$$x(x + 3) + 5(x + 3)$$
Factor the common bracket:
$$(x + 3)(x + 5)$$
Final answer: $(x + 3)(x + 5)$.
Example 2
Factorize $x^2 - 2x - 15$.
The negative constant is where the most common error hides, so watch it go wrong first.
Wrong attempt. A student looks for two numbers multiplying to $-15$ and adding to $-2$, but reaches for 3 and 5 (because $3 \times 5 = 15$ and "they add near 2"), then guesses the signs as $-3$ and $+5$. Check the sum: $-3 + 5 = +2$, not $-2$. The signs are backwards.
Correct. The product must be $-15$ and the sum must be $-2$. The numbers are $-5$ and $+3$: their product is $-15$, their sum is $-2$.
$$x^2 - 5x + 3x - 15$$
$$x(x - 5) + 3(x - 5)$$
$$(x - 5)(x + 3)$$
Final answer: $(x - 5)(x + 3)$.
Example 3
Factorize $6x^2 - 5x - 6$ (leading coefficient not 1).
Now $ac = 6 \times (-6) = -36$ and $b = -5$. Two numbers multiplying to $-36$ and adding to $-5$ are $-9$ and $+4$.
Split the middle term:
$$6x^2 - 9x + 4x - 6$$
Group:
$$3x(2x - 3) + 2(2x - 3)$$
Factor the common bracket:
$$(2x - 3)(3x + 2)$$
Final answer: $(2x - 3)(3x + 2)$.
Example 4
Factorize $x^2 - 10x + 25$ (perfect square trinomial).
This matches the identity $a^2 - 2ab + b^2 = (a - b)^2$ with $a = x$ and $b = 5$, since $2ab = 2(x)(5) = 10x$ and $b^2 = 25$.
$$x^2 - 10x + 25 = (x - 5)^2$$
Final answer: $(x - 5)^2$.
Example 5
Factorize $9x^2 - 16$ (difference of squares).
There is no middle term, so use the identity $a^2 - b^2 = (a + b)(a - b)$. Here $9x^2 = (3x)^2$ and $16 = 4^2$:
$$9x^2 - 16 = (3x + 4)(3x - 4)$$
Final answer: $(3x + 4)(3x - 4)$.
Example 6
Factorize $2x^2 + 3x - 1$ using the quadratic formula (no rational factors).
Try splitting the middle term: $ac = 2 \times (-1) = -2$, and no two integers multiply to $-2$ and add to 3. So use the formula to find the roots, with $a = 2$, $b = 3$, $c = -1$:
$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$
$$x = \frac{-3 \pm \sqrt{9 + 8}}{4} = \frac{-3 \pm \sqrt{17}}{4}$$
The roots are irrational, so the factored form over the reals is:
$$2\left(x - \frac{-3 + \sqrt{17}}{4}\right)\left(x - \frac{-3 - \sqrt{17}}{4}\right)$$
Final answer: roots $x = \dfrac{-3 \pm \sqrt{17}}{4}$; the polynomial does not factor over the rationals.
Where Factorization Earns Its Keep
Factorization is the WHY behind solving — it is how a quadratic equation becomes a pair of answers. Set $ax^2 + bx + c = 0$, factor the left side, and each factor set to zero gives a root. This is faster than the quadratic formula whenever clean factors exist, and it is the method that shows you the structure of the equation rather than just its numbers.
The roots you read off the factors are the x-intercepts of the parabola $y = ax^2 + bx + c$ — the points where the curve crosses the horizontal axis. So factoring a quadratic is the same act as finding where a parabola meets the ground. This is also the doorway to completing the square and to reading off the roots of a quadratic equation directly.
Where Students Trip Up On Factorization of Quadratic Polynomials
Mistake 1: Getting the signs of the two numbers backwards
Where it slips in: Whenever the constant $c$ or the product $ac$ is negative, students find the right magnitudes but assign the wrong signs.
Don't do this: Factoring $x^2 - 2x - 15$ as $(x + 5)(x - 3)$ — that expands to $x^2 + 2x - 15$, the wrong middle sign.
The correct way: The two numbers must satisfy both conditions at once: product equals $ac$, sum equals $b$. The first-instinct error is to fix the product and guess the signs by feel; instead, write both targets down and check the sum every time. The second-guesser who multiplies the factors back out always catches this — that back-check is worth building into the routine.
Mistake 2: Forgetting the leading coefficient when $a \neq 1$
Where it slips in: With $a \neq 1$, the rusher treats the product target as $c$ instead of $ac$.
Don't do this: For $6x^2 - 5x - 6$, looking for numbers multiplying to $-6$ instead of $-36$.
The correct way: The product to match is always $a \times c$, not just $c$. The habit that fixes this is writing $ac$ explicitly as the first step before hunting for the pair — the memorizer who skips straight to "factors of $c$" loses the leading coefficient and never finds a valid pair.
Mistake 3: Assuming every quadratic factors over the rationals
Where it slips in: A student spends ten minutes hunting integer factors for a quadratic that has none.
Don't do this: Insisting $2x^2 + 3x - 1$ "must factor" and forcing wrong integers.
The correct way: Check the discriminant $b^2 - 4ac$. If it is not a perfect square, the quadratic has no rational factors, and the quadratic formula is the honest tool. Factoring is fast when it works; the formula always works.
Practice Questions on Factorization of Quadratic Polynomials
Factor each one, choosing the method that fits — splitting the middle term, an identity, or the quadratic formula when no rational factors exist. Answers follow so you can check your signs and your two numbers.
Factorize $x^2 + 7x + 12$.
Factorize $x^2 - x - 12$.
Factorize $2x^2 + 7x + 3$ (leading coefficient not 1).
Factorize $x^2 - 14x + 49$ (perfect square trinomial).
Factorize $25x^2 - 9$ (difference of squares).
Factorize $3x^2 + 2x - 4$ (use the quadratic formula if no rational factors exist).
Answers
Answer to Question 1: $(x + 3)(x + 4)$.
Answer to Question 2: $(x - 4)(x + 3)$.
Answer to Question 3: $(2x + 1)(x + 3)$.
Answer to Question 4: $(x - 7)^2$.
Answer to Question 5: $(5x + 3)(5x - 3)$.
Answer to Question 6: no rational factors; roots are $x = \dfrac{-1 \pm \sqrt{13}}{3}$.
Key Takeaways
Factorization of quadratic polynomials rewrites $ax^2 + bx + c$ as a product of two linear factors.
Splitting the middle term is the main method: find two numbers multiplying to $ac$ and adding to $b$.
Perfect square trinomials and differences of squares factor instantly via identities.
When no rational factors exist, the quadratic formula finds the roots; check the discriminant first.
The most common mistake is assigning the wrong signs to the two numbers — always verify the sum.
A Practical Next Step
Work through these three to solidify your understanding:
Factorize $x^2 + 9x + 20$.
Factorize $3x^2 + 5x - 2$ (leading coefficient not 1).
Factorize $x^2 - 49$ using an identity.
If you get stuck on the signs, come back to Mistake 1 and check the sum of your two numbers against $b$. At Bhanzu, our trainers teach factoring through the area model first, so students see the rectangle behind the factors before they memorise the splitting steps. Want a live trainer to walk through more factorization problems? Book a free demo class.
Was this article helpful?
Your feedback helps us write better content