Finding zeroes and constructing polynomials
In the previous two topics we used Vieta's identities to relate zeroes and coefficients. We now turn the wheel both ways:
- Forward problem. Given a polynomial, find its zeroes.
- Inverse problem. Given the zeroes (or some symmetric data about them), construct the polynomial.
Strategies for finding zeroes
Quadratic . Three reliable methods.
- Factorisation. If you can split the middle term , find two numbers whose product is and whose sum is , you have the zeroes immediately.
- Completing the square. Rewrite as .
- Quadratic formula. , which we cover thoroughly in Chapter 4. For now, treat it as a backup tool.
Cubic . The plan is to find one zero by inspection, divide it out, and then solve the leftover quadratic.
- Try small integer values: . If is an integer, the rational root candidates are factors of .
- Once a zero is found, perform polynomial division: , where is a quadratic.
- Solve for the remaining two zeroes.
Strategies for constructing polynomials
Quadratic from zeroes . The simplest answer is Any non-zero scalar multiple is also a valid answer.
Cubic from zeroes .
Quadratic from sum and product . Just write .
Theorem: division algorithm (informal)
If is divided by a non-zero polynomial , then we can find polynomials (quotient) and (remainder) such that where or . In particular, divides exactly when is a zero of , this is the factor theorem, the workhorse for splitting cubics.
A practical recipe for the cubic problem:
- Find one rational zero by trying factors of .
- Divide by , long division or synthetic division , to obtain a quadratic .
- Solve to obtain the other two zeroes.
Worked examples
Example 1. Find the zeroes of by factorisation.
Split the middle term: we need two numbers whose product is and sum is . They are and . So . Zeroes: and .
Example 2. Find a quadratic whose zeroes are and .
Sum . Product . Quadratic: or, clearing denominators, .
Example 3. Find all zeroes of .
Try : . ✓ So is a factor. Divide: Factor: . Zeroes: .
Example 4. If the zeroes of are reciprocals of the zeroes of , find in terms of .
Let be zeroes of the second cubic. So , , .
Reciprocals have:
- sum ,
- sum of products in pairs ,
- product .
So , , . The cubic is , or clearing denominators, .
Example 5. Construct a cubic whose zeroes are .
Sum . Sum of products . Product .
Cubic: .
Try it yourself
- Find the zeroes of by factorisation.
- Find a quadratic whose zeroes are and .
- Construct a cubic with zeroes .
- Find all zeroes of . (Try first.)
- The sum and product of zeroes of a quadratic are and respectively. Write the quadratic.
- Find all zeroes of . (Hint: try or factors of .)
- If are zeroes of , find the quadratic with zeroes .
- Find a quadratic whose zeroes are and .
- Find the value of for which the polynomial has as a zero.
- Find a cubic whose zeroes are .
Pitfalls / Insight
- Rational root candidates for a polynomial with integer coefficients are limited to ratios of factors of the constant by factors of the leading coefficient.
- After finding one zero of a cubic, always divide , don't try to guess the other two unless you have a strong reason.
- "Construct a polynomial" problems are easier than they look: just remember and expand.
Insight. Forward (find zeroes) and inverse (construct polynomial) are dual problems. Mastering both turns this chapter into a small but reliable source of marks , and a launchpad for Chapter 4 on quadratic equations.