What Is Factorization of Algebraic Expressions?
Factorization of an algebraic expression is the process of writing the expression as a product of two or more factors, where multiplying those factors back together returns the original expression. A factor is a quantity that divides another exactly, with no remainder — just as $3$ and $4$ are factors of $12$, the brackets $(x+2)$ and $(x+3)$ are factors of $x^2 + 5x + 6$.
An algebraic expression is a combination of variables, constants, and operations — like $6x^2 + 9x$ or $a^2 - b^2$. Factorizing it means finding what was multiplied to produce it. The check is always the same: multiply your factors back out and confirm you land on the expression you started with.
How Do You Factorize an Algebraic Expression?
There is no single button. Which method you reach for depends on the shape of the expression — how many terms it has and whether it matches a known pattern. The four methods that cover almost everything at this level:
Common factor method — pull out the greatest common factor shared by every term.
Grouping — for four-term expressions with no factor common to all four.
Algebraic identities — when the expression matches a standard pattern like $a^2 - b^2$.
Splitting the middle term — the workhorse for quadratics $ax^2 + bx + c$.
These four are the toolkit. There are a handful more you will meet later, but most school-level factorization fits one of these.
Method 1: The common factor
Find the largest factor every term shares — numbers and variables both — and pull it outside a bracket.
For $6x^2 + 9x$, every term shares $3$ and one $x$, so the common factor is $3x$:
$$6x^2 + 9x = 3x(2x + 3)$$
Check by expanding: $3x \times 2x = 6x^2$ and $3x \times 3 = 9x$. Correct.
Method 2: Grouping
When an expression has four terms and no factor is common to all four, group them in pairs, factor each pair, then factor out the bracket they now share.
$$x^3 + 3x^2 + 2x + 6$$ $$= x^2(x + 3) + 2(x + 3)$$ $$= (x + 3)(x^2 + 2)$$
The pair $(x+3)$ appearing in both groups is the signal that grouping worked.
Method 3: Algebraic identities
Some expressions match a standard algebraic identity — an equation true for all values. Recognise the shape and the factors come for free. The identities you will use most:
Identity | Factored form |
|---|---|
$a^2 + 2ab + b^2$ | $(a + b)^2$ |
$a^2 - 2ab + b^2$ | $(a - b)^2$ |
$a^2 - b^2$ | $(a + b)(a - b)$ |
$a^3 + b^3$ | $(a + b)(a^2 - ab + b^2)$ |
$a^3 - b^3$ | $(a - b)(a^2 + ab + b^2)$ |
For $x^2 - 16$, recognise the difference of squares $a^2 - b^2$ with $a = x$ and $b = 4$:
$$x^2 - 16 = (x + 4)(x - 4)$$
Method 4: Splitting the middle term
For a quadratic $ax^2 + bx + c$, find two numbers that multiply to $a \times c$ and add to $b$, then split the middle term and group.
For $x^2 + 5x + 6$: here $a \times c = 6$ and $b = 5$. The numbers $2$ and $3$ multiply to $6$ and add to $5$.
$$x^2 + 5x + 6 = x^2 + 2x + 3x + 6$$ $$= x(x + 2) + 3(x + 2)$$ $$= (x + 2)(x + 3)$$
This is the same engine behind factoring trinomials and factorization of quadratic polynomials.
Examples of Factorization of Algebraic Expressions
Example 1
Factorize $5z^3 - 10z^2$.
Both terms share $5$ and $z^2$, so the common factor is $5z^2$:
$$5z^3 - 10z^2 = 5z^2(z - 2)$$
Check: $5z^2 \times z = 5z^3$ and $5z^2 \times (-2) = -10z^2$.
Final answer: $5z^2(z - 2)$.
Example 2
Factorize $x^2 - 10x + 25$.
A tempting first move is to split the middle term blindly: look for two numbers that multiply to $25$ and add to $-10$, get $-5$ and $-5$, write $(x-5)(x-5)$, and stop there thinking it is "two different factors." That is the right answer reached by the long road — and a student who only knows splitting can miss the faster, surer read.
The expression matches the perfect-square identity $a^2 - 2ab + b^2 = (a-b)^2$ with $a = x$ and $b = 5$, since $2ab = 2 \cdot x \cdot 5 = 10x$ and $b^2 = 25$:
$$x^2 - 10x + 25 = (x - 5)^2$$
Recognising the identity tells you instantly the factor is repeated — a perfect square trinomial — which the blind split would have left you unsure about.
Final answer: $(x - 5)^2$.
Example 3
Factorize $x^2 - 4$.
Two terms, both perfect squares, separated by a minus — the difference of squares with $a = x$, $b = 2$:
$$x^2 - 4 = (x + 2)(x - 2)$$
Final answer: $(x + 2)(x - 2)$.
Example 4
Factorize $x^3 + 3x^2 + 2x + 6$ by grouping.
Group the four terms in pairs and factor each:
$$x^3 + 3x^2 + 2x + 6 = (x^3 + 3x^2) + (2x + 6)$$ $$= x^2(x + 3) + 2(x + 3)$$ $$= (x + 3)(x^2 + 2)$$
Final answer: $(x + 3)(x^2 + 2)$.
Example 5
Factorize the quadratic $2x^2 + 7x + 3$ by splitting the middle term.
Here $a \times c = 2 \times 3 = 6$ and $b = 7$. Two numbers multiplying to $6$ and adding to $7$ are $6$ and $1$.
$$2x^2 + 7x + 3 = 2x^2 + 6x + x + 3$$ $$= 2x(x + 3) + 1(x + 3)$$ $$= (x + 3)(2x + 1)$$
Final answer: $(x + 3)(2x + 1)$.
Example 6
Factorize $a^3 - 8$.
This is a difference of cubes, $a^3 - b^3$, with the second term $8 = 2^3$, so $b = 2$. Apply $a^3 - b^3 = (a - b)(a^2 + ab + b^2)$:
$$a^3 - 8 = (a - 2)(a^2 + 2a + 4)$$
Final answer: $(a - 2)(a^2 + 2a + 4)$.
Where Factorization Earns Its Keep
Factorization exists because a product tells you things a sum hides. The standout: once an expression is factored and set to zero, the zero product property says at least one factor must be zero — which hands you the solutions directly. Solving $x^2 + 5x + 6 = 0$ means factoring to $(x+2)(x+3) = 0$, then reading off $x = -2$ and $x = -3$. No formula needed.
Where it shows up:
Solving equations. Every quadratic equation you factor becomes a pair of one-step problems.
Simplifying fractions. A rational expression like $\dfrac{x^2 - 4}{x + 2}$ simplifies to $x - 2$ only once you factor the top.
Revealing structure. In physics and engineering, factoring an equation exposes the values where a system hits zero — a resonance, a break-even, a root.
The destination is equation-solving: factorization is the step that converts a quadratic into solutions you can see, which is why it sits underneath so much of the algebra that follows.
Where Solutions Go Off the Rails
Mistake 1: Not pulling out the full common factor
Where it slips in: In the common-factor method, when a term shares more than the obvious number.
Don't do this: Writing $6x^2 + 9x = 3(2x^2 + 3x)$ and stopping — you took out $3$ but left the shared $x$ inside.
The correct way: Pull out the greatest common factor, $3x$, giving $3x(2x + 3)$. The habit that fixes this is to scan variables as well as numbers before closing the bracket — the most common reason a "factored" answer is still factorable is a variable left behind.
Mistake 2: Forgetting to factor completely
Where it slips in: After the first round of factoring, when one of the factors can itself be factored further.
Don't do this: Writing $x^4 - 16 = (x^2 + 4)(x^2 - 4)$ and stopping — the second bracket is still a difference of squares.
The correct way: Keep going until nothing factors: $(x^2 + 4)(x^2 - 4) = (x^2 + 4)(x + 2)(x - 2)$. Always re-check each factor against the patterns before declaring the answer final.
Mistake 3: Sign errors when splitting the middle term
Where it slips in: When the constant term is positive but the middle term is negative.
Don't do this: For $x^2 - 5x + 6$, choosing $2$ and $3$ (which give $+5x$) instead of $-2$ and $-3$.
The correct way: Match both the product and the sum, signs included. For $x^2 - 5x + 6$ you need numbers multiplying to $+6$ and adding to $-5$, that forces both negative, $-2$ and $-3$, giving $(x-2)(x-3)$. The reader who reaches for the magnitudes and ignores the sign of the sum is exactly who this product-and-sum check protects.
Make the Multiply-Back Check a Habit
Teaching factorization with the multiply-back check baked into every step means students catch a half-factored or sign-flipped answer themselves before it reaches a graded sheet. The reverse-gear idea — that factoring undoes expansion — comes first, so the check feels natural rather than tacked on; it is how a Bhanzu trainer frames the whole topic.
Conclusion
Factorization of algebraic expressions rewrites an expression as a product of its factors — the reverse of expansion.
The four core methods are the common factor, grouping, algebraic identities, and splitting the middle term.
Choose the method by counting terms and spotting patterns; always start by checking for a greatest common factor.
The most common mistakes are leaving a shared variable inside, not factoring completely, and mismatching signs when splitting the middle term.
Factoring is the gateway to solving equations, since a product set to zero reveals its roots directly.
Practice These to Solidify Your Understanding
Try these in order and verify each by multiplying back:
Factorize $12a^2b - 8ab^2$ using the common factor method.
Factorize $x^2 - 49$ using an identity.
Factorize $3x^2 + 10x + 8$ by splitting the middle term.
Factorize $x^4 - 81$ completely.
If question $4$ gives you a difference of squares that still factors, revisit the "factor completely" mistake above. To work through factorization with a live trainer, explore Bhanzu's algebra classes or help with algebra, or browse math tutoring options. Want a trainer to walk through more factorization problems? Book a free demo class.
Read More
Factored Form — what a fully factored expression looks like and why it matters.
Trinomial — the three-term expressions you most often split.
Like and Unlike Algebraic Terms — recognising which terms can combine before you factor.
Cube of a Binomial — the $(a\pm b)^3$ expansion behind the cube identities.
Expression, Term, Factor, and Coefficient — the vocabulary of every algebraic expression.
Was this article helpful?
Your feedback helps us write better content