Math Lab
Home/Class X/Ch 2/Finding zeroes and constructing polynomials

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:

  1. Forward problem. Given a polynomial, find its zeroes.
  2. Inverse problem. Given the zeroes (or some symmetric data about them), construct the polynomial.

Strategies for finding zeroes

Quadratic ax2+bx+cax^2 + bx + c. Three reliable methods.

  • Factorisation. If you can split the middle term , find two numbers whose product is acac and whose sum is bb , you have the zeroes immediately.
  • Completing the square. Rewrite as a(x+b/2a)2+(cb2/4a)=0a(x + b/2a)^2 + (c - b^2/4a) = 0.
  • Quadratic formula. x=b±b24ac2ax = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}, which we cover thoroughly in Chapter 4. For now, treat it as a backup tool.

Cubic ax3+bx2+cx+dax^3 + bx^2 + cx + d. The plan is to find one zero by inspection, divide it out, and then solve the leftover quadratic.

  • Try small integer values: x=±1,±2,±3,x = \pm 1, \pm 2, \pm 3, \ldots. If d/ad/a is an integer, the rational root candidates are factors of d/ad/a.
  • Once a zero α\alpha is found, perform polynomial division: p(x)=(xα)q(x)p(x) = (x - \alpha) \cdot q(x), where q(x)q(x) is a quadratic.
  • Solve q(x)=0q(x) = 0 for the remaining two zeroes.

Strategies for constructing polynomials

Quadratic from zeroes α,β\alpha, \beta. The simplest answer is p(x)=x2(α+β)x+αβ.p(x) = x^2 - (\alpha + \beta) x + \alpha \beta. Any non-zero scalar multiple is also a valid answer.

Cubic from zeroes α,β,γ\alpha, \beta, \gamma. p(x)=x3(α+β+γ)x2+(αβ+βγ+γα)xαβγ.p(x) = x^3 - (\alpha + \beta + \gamma) x^2 + (\alpha\beta + \beta\gamma + \gamma\alpha) x - \alpha\beta\gamma.

Quadratic from sum ss and product pp. Just write x2sx+px^2 - s x + p.

Theorem: division algorithm (informal)

If p(x)p(x) is divided by a non-zero polynomial g(x)g(x), then we can find polynomials q(x)q(x) (quotient) and r(x)r(x) (remainder) such that p(x)=g(x)q(x)+r(x),p(x) = g(x) \cdot q(x) + r(x), where r(x)=0r(x) = 0 or degr(x)<degg(x)\deg r(x) < \deg g(x). In particular, (xα)(x - \alpha) divides p(x)p(x) exactly when α\alpha is a zero of p(x)p(x) , this is the factor theorem, the workhorse for splitting cubics.

A practical recipe for the cubic problem:

  1. Find one rational zero α\alpha by trying factors of d/ad/a.
  2. Divide p(x)p(x) by (xα)(x - \alpha) , long division or synthetic division , to obtain a quadratic q(x)q(x).
  3. Solve q(x)=0q(x) = 0 to obtain the other two zeroes.

Worked examples

Example 1. Find the zeroes of p(x)=x2+7x+10p(x) = x^2 + 7 x + 10 by factorisation.

Split the middle term: we need two numbers whose product is 1010 and sum is 77. They are 22 and 55. So p(x)=x2+2x+5x+10=x(x+2)+5(x+2)=(x+2)(x+5)p(x) = x^2 + 2x + 5x + 10 = x(x + 2) + 5(x + 2) = (x + 2)(x + 5). Zeroes: 2-2 and 5-5.

Example 2. Find a quadratic whose zeroes are 14\dfrac{1}{4} and 1-1.

Sum =1/41=3/4= 1/4 - 1 = -3/4. Product =1/4= -1/4. Quadratic: x2+(3/4)x1/4x^2 + (3/4) x - 1/4 or, clearing denominators, 4x2+3x14 x^2 + 3 x - 1.

Example 3. Find all zeroes of p(x)=x34x2+x+6p(x) = x^3 - 4 x^2 + x + 6.

Try x=1x = -1: 141+6=0-1 - 4 - 1 + 6 = 0. ✓ So (x+1)(x + 1) is a factor. Divide: x34x2+x+6x+1=x25x+6.\frac{x^3 - 4 x^2 + x + 6}{x + 1} = x^2 - 5 x + 6. Factor: x25x+6=(x2)(x3)x^2 - 5x + 6 = (x - 2)(x - 3). Zeroes: 1,2,3-1, 2, 3.

Example 4. If the zeroes of x3+px2+qx+rx^3 + p x^2 + q x + r are reciprocals of the zeroes of x3+ax2+bx+cx^3 + a x^2 + b x + c, find p,q,rp, q, r in terms of a,b,ca, b, c.

Let α,β,γ\alpha, \beta, \gamma be zeroes of the second cubic. So α+β+γ=a\alpha + \beta + \gamma = -a, αβ+βγ+γα=b\alpha\beta + \beta\gamma + \gamma\alpha = b, αβγ=c\alpha\beta\gamma = -c.

Reciprocals 1/α,1/β,1/γ1/\alpha, 1/\beta, 1/\gamma have:

  • sum =(βγ+γα+αβ)/(αβγ)=b/(c)=b/c= (\beta\gamma + \gamma\alpha + \alpha\beta)/(\alpha\beta\gamma) = b/(-c) = -b/c,
  • sum of products in pairs =(α+β+γ)/(αβγ)=(a)/(c)=a/c= (\alpha + \beta + \gamma)/(\alpha\beta\gamma) = (-a)/(-c) = a/c,
  • product =1/(αβγ)=1/(c)=1/c= 1/(\alpha\beta\gamma) = 1/(-c) = -1/c.

So p=(b/c)=b/cp = -(-b/c) = b/c, q=a/cq = a/c, r=(1/c)=1/cr = -(-1/c) = 1/c. The cubic is x3+(b/c)x2+(a/c)x+1/cx^3 + (b/c) x^2 + (a/c) x + 1/c, or clearing denominators, cx3+bx2+ax+1c x^3 + b x^2 + a x + 1.

Example 5. Construct a cubic whose zeroes are 2,2,5-2, -2, 5.

Sum =1= 1. Sum of products =41010=16= 4 - 10 - 10 = -16. Product =20= 20.

Cubic: x3x216x20x^3 - x^2 - 16 x - 20.

Try it yourself

  1. Find the zeroes of 6x2x26 x^2 - x - 2 by factorisation.
  2. Find a quadratic whose zeroes are 23\dfrac{2}{3} and 12-\dfrac{1}{2}.
  3. Construct a cubic with zeroes 1,2,41, -2, 4.
  4. Find all zeroes of x3x24x+4x^3 - x^2 - 4 x + 4. (Try x=1x = 1 first.)
  5. The sum and product of zeroes of a quadratic are 1-1 and 6-6 respectively. Write the quadratic.
  6. Find all zeroes of 2x3+5x24x122 x^3 + 5 x^2 - 4 x - 12. (Hint: try x=3/2x = 3/2 or factors of 66.)
  7. If α,β\alpha, \beta are zeroes of x26x+ax^2 - 6 x + a, find the quadratic with zeroes α+2,β+2\alpha + 2, \beta + 2.
  8. Find a quadratic whose zeroes are 2+32 + \sqrt{3} and 232 - \sqrt{3}.
  9. Find the value of kk for which the polynomial x33x2+(k+5)x6x^3 - 3 x^2 + (k+5) x - 6 has x=1x = 1 as a zero.
  10. Find a cubic whose zeroes are 1,1,21, 1, -2.

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 (xα)(xβ)(x - \alpha)(x - \beta)\cdots 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.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Finding and constructing
6 questions · pick the best answer
Q1

Zeroes of 6x2x26x^2 - x - 2 are:

Q2

A quadratic with zeroes 2+32 + \sqrt{3} and 232 - \sqrt{3} is:

Q3

If x=1x = 1 is a zero of x3x24x+4x^3 - x^2 - 4x + 4, the quotient on dividing by (x1)(x-1) is:

Q4

Cubic with zeroes 1,1,21, 1, -2 (monic) is:

Q5

Quadratic with sum of zeroes 3-3 and product 10-10:

Q6

Possible rational zeroes of 2x3+5x24x122x^3 + 5x^2 - 4x - 12 include: