By Contributor
Updated Aug 30, 2022
In algebra, a prime polynomial (also called an irreducible polynomial) cannot be factored further over the integers. Recognizing these polynomials is essential before declaring a problem unsolvable.
Begin by factoring out any common monomial factor from every term. If none exists, move to the next step.
Test the standard identities:
a² – b² = (a – b)(a + b)(a ± b)² = a² ± 2ab + b²For a monic quadratic x² + Bx + C, look for two integers whose product is C and sum is B. If no such pair exists, the polynomial is likely prime.
For Ax² + Bx + C, compute the discriminant D = B² – 4AC. If D is not a perfect square, the quadratic has no rational roots and is irreducible over the integers.
Only after checking GCF, special formulas, and the discriminant should you conclude that the polynomial is prime.
x² + 2x + 8Assume a factorization of the form (x + a)(x + b). Then ab = 8 and a + b = 2. The integer pairs for 8 are (1,8) and (2,4), but neither sums to 2. The discriminant is 4 – 32 = –28, not a perfect square, confirming irreducibility.
After verifying that no common factor exists and that all standard factorization methods fail, you can confidently state that the polynomial is prime.