By the end of this chapter you'll be able to…

  • 1Identify the degree of a polynomial and classify it as linear, quadratic or cubic
  • 2Read off the zeros of a polynomial from its graph
  • 3Apply the relationship between coefficients and zeros for quadratic and cubic polynomials
  • 4Use the polynomial division algorithm to divide one polynomial by another
  • 5Construct a polynomial when its zeros are given
💡
Why this chapter matters
Polynomials are the language of algebra — quadratic equations, coordinate geometry, calculus and even programming algorithms are built on the idea of expressions in x. Master zeros and the division algorithm here and the next four chapters become 30% easier.

Before you start — revise these

A 5-minute refresher here will save you 30 minutes of confusion below.

Polynomials

A polynomial in is an expression of the form where the are real numbers, and is a non-negative integer. The degree is the highest power of that appears.

DegreeNameExample
1Linear
2Quadratic
3Cubic

1. Zeroes of a Polynomial

A real number is a zero of if .

Geometrically, the zeroes of are the -coordinates where the graph meets the -axis.

  • A linear polynomial has exactly one zero.
  • A quadratic has at most two zeroes.
  • A polynomial of degree has at most zeroes.

2. Relationship Between Zeroes and Coefficients

For a quadratic with zeroes :

  • Sum of zeroes: .
  • Product of zeroes: .

For a cubic with zeroes :

Worked example — build a quadratic with given zeroes

Find a quadratic whose zeroes are and .

Sum , product , so a polynomial is

3. Division Algorithm for Polynomials

For polynomials and with , there exist unique polynomials and such that where or .

This is the polynomial analogue of integer division.

Worked example

Divide by .

Long division gives:

Check: . ✓

Practice

  1. Find the zeroes of and verify the sum/product relationships.
  2. If are zeroes of , find .
  3. Divide by .

Answers

  1. Zeroes are and . Sum ✓. Product ✓.
  2. Sum , product . .
  3. Quotient , remainder .

Pre-requisites

You need Real Numbers — especially the division algorithm and the idea of unique factorisation — to follow §3 properly.

Key formulas & results

Everything you need to memorise, in one card. Screenshot this for revision.

Quadratic zeros — sum
α + β = −b/a
For ax² + bx + c with zeros α, β.
Quadratic zeros — product
αβ = c/a
Same setup.
Cubic zeros — sum
α + β + γ = −b/a
For ax³ + bx² + cx + d.
Cubic zeros — pairwise
αβ + βγ + γα = c/a
Sum of products taken two at a time.
Cubic zeros — triple
αβγ = −d/a
Product of all three zeros.
Polynomial division
p(x) = g(x)·q(x) + r(x)
deg r(x) < deg g(x) or r(x) = 0.
⚠️

Common mistakes & fixes

These are the exact errors that cost students marks in board exams. Read them once, save yourself the trouble.

WATCH OUT
Writing α + β = b/a (wrong sign) for ax² + bx + c
Sum of zeros is −b/a. The negative sign comes from expanding (x−α)(x−β) = x² − (α+β)x + αβ.
WATCH OUT
Saying a polynomial of degree 3 must have 3 real zeros
It has at most 3 real zeros. It could have 1 real + 2 complex. The 'fundamental theorem of algebra' counts complex zeros with multiplicity.
WATCH OUT
Skipping the degree check after polynomial division
Always verify deg(r) < deg(g). If not, you haven't divided enough.

Practice problems

Try each one yourself before tapping "Show solution". Active recall > rereading.

Q1EASY· Coefficient relations
Find the zeros of 4x² − 4x − 3 and verify the sum/product of zeros.
Show solution
Zeros: 3/2 and −1/2. Sum = 1 = −(−4)/4 ✓. Product = −3/4 = c/a = −3/4 ✓.
Q2MEDIUM· Construct from zeros
Find a quadratic polynomial with zeros 2 and −1/3.
Show solution
Sum = 5/3, product = −2/3. Polynomial = k·(x² − (5/3)x − 2/3). Multiply by 3: 3x² − 5x − 2.
Q3MEDIUM· Division
Divide p(x) = x³ − 3x² + 3x − 5 by g(x) = x − 1.
Show solution
Long division gives quotient x² − 2x + 1 and remainder −4. Check: (x−1)(x²−2x+1) + (−4) = x³ − 3x² + 3x − 5 ✓.
Q4HARD· HOTS
If α, β are zeros of x² − p(x+1) − c, find (α+1)(β+1).
Show solution
Expand: x² − px − (p + c) so α + β = p and αβ = −(p+c). Then (α+1)(β+1) = αβ + α + β + 1 = −(p+c) + p + 1 = 1 − c.

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • Degree = highest power of x with non-zero coefficient.
  • Zero of p(x) is a real k where p(k) = 0 — geometrically, where the graph cuts the x-axis.
  • A polynomial of degree n has at most n real zeros.
  • Quadratic ax² + bx + c with zeros α, β: α + β = −b/a, αβ = c/a.
  • Cubic ax³ + bx² + cx + d with zeros α, β, γ: sum = −b/a, pair sum = c/a, product = −d/a.
  • Division algorithm: p(x) = g(x)·q(x) + r(x) with deg(r) < deg(g) or r ≡ 0.

Questions students ask

The real ones — pulled from the Q&A community and tutor sessions.

Polynomials sits in Unit II (Algebra), worth ~20 marks across the unit. Polynomials itself contributes around 5 marks — typically 1 short-answer and 1 long-answer question, plus possibly an MCQ.

Exercise 2.4 (constructing polynomials from given zeros) is marked optional in NCERT, but board examiners frequently set questions from this exercise. Do it.

Quadratic Equations (Chapter 4) is just 'find the zeros of a quadratic polynomial' with extra techniques (factorisation, completing the square, quadratic formula). The sum/product results from this chapter recur there.

You won't be asked to plot from scratch. You will be asked to READ zeros from a given graph (Exercise 2.1 style) — make sure you can identify x-axis intersections.
Verified by the tuition.in editorial team
Last reviewed on 17 May 2026. Written and reviewed by subject-matter experts — read about our process.
Editorial process →
Header Logo