Polynomial factorization is one of the fundamental techniques of algebra. To factor a polynomial means to rewrite it as a product of simpler polynomials, reversing the process of expanding a product.
It is not merely a collection of procedural rules, but a powerful tool for understanding the internal structure of polynomials, identifying the zeros of a polynomial function, simplifying algebraic expressions, solving equations, and studying the behavior of a graph.
Contents
- The Concept of Factorization
- Factors and Divisibility of Polynomials
- Factoring Out a Common Factor
- Factoring by Grouping
- Difference of Squares
- Perfect Square Trinomials
- Factoring Quadratic Trinomials
- Sum and Difference of Cubes
- Factorization by Ruffini's Rule
- Complete Factorization
- Irreducible Polynomials
- Algebraic and Graphical Interpretation
The Concept of Factorization
To factor a polynomial means to write it as a product of polynomial factors.
For example:
\[ x^2 + 5x + 6 = (x + 2)(x + 3) \]
Both forms represent the same polynomial, but highlight different properties. The expanded form displays the coefficients directly; the factored form makes the zeros immediately apparent.
Indeed:
\[ (x + 2)(x + 3) = 0 \]
if and only if:
\[ x = -2 \qquad \text{or} \qquad x = -3 \]
Factorization thus transforms an apparently complex sum into a product of simpler, more manageable factors.
Factors and Divisibility of Polynomials
Given a polynomial \(P(x)\), we say that \(A(x)\) is a factor of \(P(x)\) if there exists a polynomial \(B(x)\) such that:
\[ P(x) = A(x) \cdot B(x) \]
In this case, \(A(x)\) is said to divide \(P(x)\).
For example:
\[ x^2 - 9 = (x - 3)(x + 3) \]
The factorization of polynomials is closely analogous to the prime factorization of integers. Just as:
\[ 30 = 2 \cdot 3 \cdot 5 \]
a polynomial can be decomposed into simpler factors whenever this is possible over the field under consideration.
Factoring Out a Common Factor
Factoring out a common factor follows directly from the distributive property:
\[ a(b + c) = ab + ac \]
Reading this identity from right to left reveals a common factor among the terms of the polynomial.
For example:
\[ 6x^3 + 9x^2 = 3x^2(2x + 3) \]
Consider also:
\[ 12x^4y^2 - 18x^3y + 6x^2y^3 = 6x^2y(2x^2y - 3x + y^2) \]
When the coefficients are integers, the numerical common factor is obtained by taking the greatest common divisor of their absolute values; for the variable part, one takes the common variables raised to their smallest exponents.
Factoring by Grouping
When no single factor is common to all terms, a common factor can be introduced by grouping the terms appropriately.
Consider:
\[ \begin{aligned} ax + ay + bx + by &= (ax + ay) + (bx + by) \\ &= a(x + y) + b(x + y) \\ &= (a + b)(x + y) \end{aligned} \]
A less straightforward example:
\[ \begin{aligned} x^3 - x^2 + x - 1 &= (x^3 - x^2) + (x - 1) \\ &= x^2(x - 1) + 1\cdot(x - 1) \\ &= (x^2 + 1)(x - 1) \end{aligned} \]
Not every grouping leads to a useful factorization. The purpose of factoring by grouping is to create common factors that allow the polynomial to be rewritten as a product.
Difference of Squares
One of the fundamental identities of algebra is:
\[ a^2 - b^2 = (a - b)(a + b) \]
For example:
\[ x^2 - 16 = (x - 4)(x + 4) \]
\[ 9x^2 - 25y^2 = (3x - 5y)(3x + 5y) \]
A sum of two squares cannot, in general, be handled using the difference-of-squares identity. In particular, the polynomial \(x^2 + 9\) cannot be factored into linear factors with real coefficients, since it has no real roots.
Perfect Square Trinomials
The identities:
\[ (a + b)^2 = a^2 + 2ab + b^2 \]
\[ (a - b)^2 = a^2 - 2ab + b^2 \]
allow us to recognize perfect square trinomials. A trinomial is a perfect square when the first and last terms are perfect squares and the middle term equals, with the appropriate sign, twice the product of their square roots.
For example:
\[ x^2 + 6x + 9 = (x + 3)^2 \]
since \(x^2 = x^2\), \(9 = 3^2\), and \(6x = 2 \cdot x \cdot 3\).
Similarly:
\[ 4x^2 - 12x + 9 = (2x - 3)^2 \]
since \(4x^2 = (2x)^2\), \(9 = 3^2\), and \(-12x = -2 \cdot 2x \cdot 3\).
Factoring Quadratic Trinomials
For a monic trinomial \(x^2 + sx + p\), if there exist two numbers \(m\) and \(n\) such that \(m + n = s\) and \(mn = p\), then:
\[ x^2 + sx + p = (x + m)(x + n) \]
For example:
\[ x^2 + 7x + 12 = (x + 3)(x + 4) \]
since \(3 + 4 = 7\) and \(3 \cdot 4 = 12\).
When the leading coefficient is not \(1\), one seeks a factorization of the form \((ax + b)(cx + d)\). For example:
\[ 2x^2 + 7x + 3 = (2x + 1)(x + 3) \]
General method: for \(ax^2 + bx + c\) with \(a \neq 0\), compute the discriminant:
\[ \Delta = b^2 - 4ac \]
If \(\Delta \geq 0\), the real roots, which may coincide, are:
\[ x_{1,2} = \frac{-b \pm \sqrt{\Delta}}{2a} \]
If \(\Delta > 0\), the two roots are distinct; if \(\Delta = 0\), they coincide. In both cases, the trinomial factors as \(a(x - x_1)(x - x_2)\). If \(\Delta < 0\), the trinomial is irreducible over \(\mathbb{R}\).
Example: for \(3x^2 - 5x - 2\) we have \(\Delta = 25 + 24 = 49\), giving:
\[ x_1 = -\frac{1}{3}, \qquad x_2 = 2 \]
and therefore:
\[ 3x^2 - 5x - 2 = (3x + 1)(x - 2) \]
Sum and Difference of Cubes
The fundamental identities are:
\[ a^3 + b^3 = (a + b)(a^2 - ab + b^2) \]
\[ a^3 - b^3 = (a - b)(a^2 + ab + b^2) \]
For example:
\[ \begin{aligned} x^3 + 8 &= (x + 2)(x^2 - 2x + 4) \\[6pt] 27x^3 - 1 &= (3x - 1)(9x^2 + 3x + 1) \end{aligned} \]
A sum of two cubes can therefore be factored over the reals using the identity above.
Factorization by Ruffini's Rule
The method rests on the Remainder Theorem: \(P(r)\) is the remainder when \(P(x)\) is divided by \((x - r)\). Therefore, \((x - r)\) is a factor of \(P(x)\) if and only if \(P(r) = 0\).
For polynomials with integer coefficients, the Rational Root Theorem narrows the search: every rational root \(\displaystyle\frac{p}{q}\) in lowest terms has \(p\) dividing the constant term and \(q\) dividing the leading coefficient. In the monic case, any rational roots must be integers and must be sought among the positive and negative divisors of the constant term.
Ruffini's rule (synthetic division) provides a rapid way to test these candidates and reduce the degree of the polynomial.
Example:
\[ P(x) = x^3 - 6x^2 + 11x - 6 \]
Testing \(r = 1\) gives \(P(1) = 0\). Applying Ruffini's rule:
\[ \begin{array}{c|rrrr} 1 & 1 & -6 & 11 & -6 \\ & & 1 & -5 & 6 \\ \hline & 1 & -5 & 6 & 0 \end{array} \]
\[ \begin{aligned} P(x) &= (x - 1)(x^2 - 5x + 6) \\ &= (x - 1)(x - 2)(x - 3) \end{aligned} \]
Complete Factorization
To factor a polynomial completely means to carry the decomposition through until only irreducible factors remain in the field under consideration.
For example:
\[ \begin{aligned} x^4 - 1 &= (x^2 - 1)(x^2 + 1) \\ &= (x - 1)(x + 1)(x^2 + 1) \end{aligned} \]
Over \(\mathbb{R}\), the factor \(x^2 + 1\) is irreducible; over \(\mathbb{C}\) it factors further as \((x - i)(x + i)\).
Irreducible Polynomials
A nonconstant polynomial is said to be irreducible over a field if it cannot be written as a product of nonconstant polynomials of lower degree.
Irreducibility depends on the field: \(x^2 + 1\) is irreducible over \(\mathbb{R}\), since it has no real roots, but factors over \(\mathbb{C}\) as \((x - i)(x + i)\).
Algebraic and Graphical Interpretation
If a polynomial with real coefficients admits a complete factorization over \(\mathbb{R}\) of the form:
\[ P(x) = a\,(x - r_1)^{m_1}(x - r_2)^{m_2} \cdots (x - r_k)^{m_k}, \qquad a \neq 0, \]
where \(r_1, r_2, \ldots, r_k\) are distinct real zeros and \(m_1, m_2, \ldots, m_k\) are their respective multiplicities, the values \(r_j\) correspond to the points where the graph intersects the \(x\)-axis.
The multiplicity \(m_j\) governs the local behavior of the graph:
- if \(m_j\) is even, the polynomial does not change sign at \(r_j\) and the graph touches the \(x\)-axis without crossing it;
- if \(m_j\) is odd, the polynomial changes sign at \(r_j\) and the graph crosses the \(x\)-axis.
Example: \(P(x) = (x - 2)^2(x + 1)\) touches the axis at \(x = 2\) and crosses it at \(x = -1\).
In conclusion, factorization is a fundamental tool that connects algebra, the theory of equations, and analytic geometry in a deep and coherent way.