Study Guide

Polynomials Class 10: Zeroes, Division Algorithm & Relationship Between Zeroes

Your complete guide to zeroes, sum-product relationships, division algorithm, and forming polynomials from zeroes!

CBSEClass 10
The SparkEd Authors (IITian & Googler)15 March 202645 min read
Polynomial graph showing zeroes and parabola for Class 10 CBSE Polynomials chapter.

Why Polynomials Matters More Than You Think

Polynomials (NCERT Chapter 2) might seem like a short chapter, but it's foundational for your entire algebra preparation. It typically carries 3-5 marks in the CBSE board exam, and more importantly, the concepts here directly connect to Quadratic Equations (Chapter 4), which carries even more marks.

The chapter focuses on three big ideas:
1. Zeroes of a polynomial — the values of xx where the polynomial equals zero.
2. Relationship between zeroes and coefficients — elegant formulas connecting the sum and product of zeroes to the coefficients.
3. Division algorithm — dividing one polynomial by another, just like long division with numbers.

Master these three, and you'll breeze through both this chapter and Quadratic Equations. Let's dive in!

Types of Polynomials: Quick Recap

A polynomial in xx is an expression of the form anxn+an1xn1++a1x+a0a_nx^n + a_{n-1}x^{n-1} + \cdots + a_1x + a_0, where a0,a1,,ana_0, a_1, \ldots, a_n are real numbers and nn is a non-negative integer.

The degree of a polynomial is the highest power of xx with a non-zero coefficient.

DegreeNameGeneral FormMax Zeroes
0Constanta0a_0 (where a00a_0 \neq 0)0
1Linearax+bax + b1
2Quadraticax2+bx+cax^2 + bx + c2
3Cubicax3+bx2+cx+dax^3 + bx^2 + cx + d3

Important: A polynomial of degree nn has at most nn zeroes. It could have fewer (some might be complex numbers, which you'll learn in higher classes), but never more than nn.

Geometrical Meaning of Zeroes

The zeroes of a polynomial p(x)p(x) are the xx-coordinates of the points where the graph of y=p(x)y = p(x) intersects the xx-axis.

Linear polynomial ax+bax + b: The graph is a straight line. It intersects the xx-axis at exactly one point x=bax = -\frac{b}{a}, which is the only zero.

Quadratic polynomial ax2+bx+cax^2 + bx + c: The graph is a parabola. It can intersect the xx-axis at:
- Two points — two distinct real zeroes (discriminant >0> 0)
- One point — two equal real zeroes (discriminant =0= 0, parabola just touches the axis)
- No points — no real zeroes (discriminant <0< 0, parabola doesn't reach the axis)

The parabola opens upward if a>0a > 0 and downward if a<0a < 0.

Relationship Between Zeroes and Coefficients

This is the most important section of the chapter and the most frequently tested concept in board exams.

For a Quadratic Polynomial

For p(x)=ax2+bx+cp(x) = ax^2 + bx + c with zeroes α\alpha and β\beta:

Sum of zeroes: α+β=ba\text{Sum of zeroes: } \alpha + \beta = -\frac{b}{a}

Product of zeroes: αβ=ca\text{Product of zeroes: } \alpha \beta = \frac{c}{a}

How to remember: Think of it as "b/a-b/a" for sum and "c/ac/a" for product. The sum has a negative sign; the product doesn't.

Derivation: Since α\alpha and β\beta are zeroes:

p(x)=a(xα)(xβ)=a[x2(α+β)x+αβ]p(x) = a(x - \alpha)(x - \beta) = a[x^2 - (\alpha + \beta)x + \alpha\beta]

=ax2a(α+β)x+aαβ= ax^2 - a(\alpha + \beta)x + a\alpha\beta

Comparing with ax2+bx+cax^2 + bx + c:

b=a(α+β)    α+β=bab = -a(\alpha + \beta) \implies \alpha + \beta = -\frac{b}{a}

c=aαβ    αβ=cac = a\alpha\beta \implies \alpha\beta = \frac{c}{a}

For a Cubic Polynomial

For p(x)=ax3+bx2+cx+dp(x) = ax^3 + bx^2 + cx + d with zeroes α\alpha, β\beta, and γ\gamma:

α+β+γ=ba\alpha + \beta + \gamma = -\frac{b}{a}

αβ+βγ+γα=ca\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}

αβγ=da\alpha\beta\gamma = -\frac{d}{a}

Pattern to remember: The signs alternate: b/a-b/a, +c/a+c/a, d/a-d/a. The numerator cycles through the coefficients (after the leading one), and the sign alternates starting with negative.

Solved Example 1: Finding Sum and Product

Problem: Find the sum and product of zeroes of p(x)=3x25x+2p(x) = 3x^2 - 5x + 2.

Solution:
Here a=3a = 3, b=5b = -5, c=2c = 2.

α+β=ba=53=53\alpha + \beta = -\frac{b}{a} = -\frac{-5}{3} = \frac{5}{3}

αβ=ca=23\alpha\beta = \frac{c}{a} = \frac{2}{3}

Verification: The zeroes of 3x25x+2=03x^2 - 5x + 2 = 0 are x=1x = 1 and x=23x = \frac{2}{3}.
- Sum: 1+23=531 + \frac{2}{3} = \frac{5}{3} \checkmark
- Product: 1×23=231 \times \frac{2}{3} = \frac{2}{3} \checkmark

Solved Example 2: Cubic Polynomial

Problem: Verify the relationship between zeroes and coefficients for p(x)=2x3+3x211x6p(x) = 2x^3 + 3x^2 - 11x - 6, given that its zeroes are 2,3,122, -3, -\frac{1}{2}.

Solution:
Here a=2a = 2, b=3b = 3, c=11c = -11, d=6d = -6.

Sum of zeroes:

α+β+γ=2+(3)+(12)=32\alpha + \beta + \gamma = 2 + (-3) + \left(-\frac{1}{2}\right) = -\frac{3}{2}

ba=32-\frac{b}{a} = -\frac{3}{2} \quad \checkmark

Sum of products taken two at a time:

αβ+βγ+γα=(2)(3)+(3)(12)+(12)(2)\alpha\beta + \beta\gamma + \gamma\alpha = (2)(-3) + (-3)\left(-\frac{1}{2}\right) + \left(-\frac{1}{2}\right)(2)

=6+321=112= -6 + \frac{3}{2} - 1 = -\frac{11}{2}

ca=112\frac{c}{a} = \frac{-11}{2} \quad \checkmark

Product of zeroes:

αβγ=(2)(3)(12)=3\alpha\beta\gamma = (2)(-3)\left(-\frac{1}{2}\right) = 3

da=62=3-\frac{d}{a} = -\frac{-6}{2} = 3 \quad \checkmark

Practice this topic on SparkEd — free visual solutions and AI coaching

Try Free

Forming a Quadratic Polynomial from Its Zeroes

If you know the zeroes α\alpha and β\beta of a quadratic polynomial, you can construct the polynomial using:

p(x)=k[x2(α+β)x+αβ]p(x) = k\left[x^2 - (\alpha + \beta)x + \alpha\beta\right]

where kk is any non-zero real number (usually taken as 1 for simplicity).

In other words:

p(x)=k[x2(sum of zeroes)x+(product of zeroes)]p(x) = k\left[x^2 - (\text{sum of zeroes})x + (\text{product of zeroes})\right]

Solved Example 3: Forming a Polynomial

Problem: Find a quadratic polynomial whose zeroes are 3+23 + \sqrt{2} and 323 - \sqrt{2}.

Solution:
Sum of zeroes =(3+2)+(32)=6= (3 + \sqrt{2}) + (3 - \sqrt{2}) = 6

Product of zeroes =(3+2)(32)=92=7= (3 + \sqrt{2})(3 - \sqrt{2}) = 9 - 2 = 7

The polynomial is:

p(x)=x26x+7p(x) = x^2 - 6x + 7

Answer: p(x)=x26x+7p(x) = x^2 - 6x + 7 (or any non-zero scalar multiple of it).

Solved Example 4: Zeroes with Given Conditions

Problem: If one zero of 2x25x+k2x^2 - 5x + k is the reciprocal of the other, find the value of kk.

Solution:
Let the zeroes be α\alpha and 1α\frac{1}{\alpha}.

Product of zeroes:

α×1α=k2\alpha \times \frac{1}{\alpha} = \frac{k}{2}

1=k21 = \frac{k}{2}

k=2k = 2

Answer: k=2k = 2.

Solved Example 5: Finding a Polynomial from Related Zeroes

Problem: If α\alpha and β\beta are zeroes of x24x+3x^2 - 4x + 3, find a quadratic polynomial whose zeroes are 2α+β2\alpha + \beta and α+2β\alpha + 2\beta.

Solution:
From x24x+3x^2 - 4x + 3: α+β=4\alpha + \beta = 4 and αβ=3\alpha\beta = 3.

New zeroes are 2α+β2\alpha + \beta and α+2β\alpha + 2\beta.

Sum of new zeroes:

(2α+β)+(α+2β)=3(α+β)=3×4=12(2\alpha + \beta) + (\alpha + 2\beta) = 3(\alpha + \beta) = 3 \times 4 = 12

Product of new zeroes:

(2α+β)(α+2β)=2α2+4αβ+αβ+2β2(2\alpha + \beta)(\alpha + 2\beta) = 2\alpha^2 + 4\alpha\beta + \alpha\beta + 2\beta^2

=2(α2+β2)+5αβ= 2(\alpha^2 + \beta^2) + 5\alpha\beta

=2[(α+β)22αβ]+5αβ= 2[(\alpha + \beta)^2 - 2\alpha\beta] + 5\alpha\beta

=2[166]+15=20+15=35= 2[16 - 6] + 15 = 20 + 15 = 35

The required polynomial:

p(x)=x212x+35p(x) = x^2 - 12x + 35

Answer: p(x)=x212x+35p(x) = x^2 - 12x + 35.

Division Algorithm for Polynomials

The Division Algorithm states that for any two polynomials p(x)p(x) and g(x)g(x) where g(x)0g(x) \neq 0:

p(x)=g(x)×q(x)+r(x)p(x) = g(x) \times q(x) + r(x)

where q(x)q(x) is the quotient, r(x)r(x) is the remainder, and either r(x)=0r(x) = 0 or the degree of r(x)r(x) is less than the degree of g(x)g(x).

This is exactly like the division algorithm for integers:

Dividend=Divisor×Quotient+Remainder\text{Dividend} = \text{Divisor} \times \text{Quotient} + \text{Remainder}

Steps for polynomial long division:
1. Arrange both polynomials in descending order of degree.
2. Divide the leading term of the dividend by the leading term of the divisor. This is the first term of the quotient.
3. Multiply the divisor by this term and subtract from the dividend.
4. The result is the new dividend. Repeat from step 2.
5. Continue until the degree of the remainder is less than the degree of the divisor.

Solved Example 6: Basic Polynomial Division

Problem: Divide p(x)=3x3+x2+2x+5p(x) = 3x^3 + x^2 + 2x + 5 by g(x)=x2+2x+1g(x) = x^2 + 2x + 1.

Solution:

Step 1: 3x3x2=3x\frac{3x^3}{x^2} = 3x. First term of quotient: 3x3x.

3x×(x2+2x+1)=3x3+6x2+3x3x \times (x^2 + 2x + 1) = 3x^3 + 6x^2 + 3x

Subtract: (3x3+x2+2x+5)(3x3+6x2+3x)=5x2x+5(3x^3 + x^2 + 2x + 5) - (3x^3 + 6x^2 + 3x) = -5x^2 - x + 5

Step 2: 5x2x2=5\frac{-5x^2}{x^2} = -5. Next term of quotient: 5-5.

5×(x2+2x+1)=5x210x5-5 \times (x^2 + 2x + 1) = -5x^2 - 10x - 5

Subtract: (5x2x+5)(5x210x5)=9x+10(-5x^2 - x + 5) - (-5x^2 - 10x - 5) = 9x + 10

Since degree of 9x+109x + 10 (which is 1) << degree of x2+2x+1x^2 + 2x + 1 (which is 2), we stop.

q(x)=3x5,r(x)=9x+10q(x) = 3x - 5, \quad r(x) = 9x + 10

Verification: g(x)×q(x)+r(x)=(x2+2x+1)(3x5)+9x+10=3x3+x2+2x+5=p(x)g(x) \times q(x) + r(x) = (x^2 + 2x + 1)(3x - 5) + 9x + 10 = 3x^3 + x^2 + 2x + 5 = p(x) \checkmark

Solved Example 7: Finding Remaining Zeroes

Problem: Find all zeroes of 2x43x33x2+6x22x^4 - 3x^3 - 3x^2 + 6x - 2, given that two of its zeroes are 2\sqrt{2} and 2-\sqrt{2}.

Solution:
Since 2\sqrt{2} and 2-\sqrt{2} are zeroes, (x2)(x+2)=x22(x - \sqrt{2})(x + \sqrt{2}) = x^2 - 2 is a factor.

Divide 2x43x33x2+6x22x^4 - 3x^3 - 3x^2 + 6x - 2 by x22x^2 - 2:

Performing polynomial long division:

2x43x33x2+6x2x22=2x23x+1\frac{2x^4 - 3x^3 - 3x^2 + 6x - 2}{x^2 - 2} = 2x^2 - 3x + 1

Now find the zeroes of 2x23x+12x^2 - 3x + 1:

2x23x+1=(2x1)(x1)2x^2 - 3x + 1 = (2x - 1)(x - 1)

x=12 or x=1x = \frac{1}{2} \text{ or } x = 1

Answer: All four zeroes are 2,2,12,1\sqrt{2}, -\sqrt{2}, \frac{1}{2}, 1.

More Solved Examples (Board Exam Level)

Here are additional problems targeting the exact style of CBSE board questions.

Solved Example 8: Finding k from Zeroes Condition

Problem: If the sum of zeroes of p(x)=kx2+2x+3kp(x) = kx^2 + 2x + 3k is equal to their product, find the value of kk.

Solution:
Sum of zeroes =2k= -\frac{2}{k}

Product of zeroes =3kk=3= \frac{3k}{k} = 3

Given: Sum == Product:

2k=3-\frac{2}{k} = 3

k=23k = -\frac{2}{3}

Answer: k=23k = -\frac{2}{3}.

Solved Example 9: Quadratic with Fraction Zeroes

Problem: Find a quadratic polynomial whose zeroes are 35\frac{3}{5} and 12-\frac{1}{2}.

Solution:
Sum =35+(12)=6510=110= \frac{3}{5} + \left(-\frac{1}{2}\right) = \frac{6 - 5}{10} = \frac{1}{10}

Product =35×(12)=310= \frac{3}{5} \times \left(-\frac{1}{2}\right) = -\frac{3}{10}

Polynomial =x2110x310= x^2 - \frac{1}{10}x - \frac{3}{10}

Multiplying by 10 to clear fractions:

p(x)=10x2x3p(x) = 10x^2 - x - 3

Answer: p(x)=10x2x3p(x) = 10x^2 - x - 3.

Solved Example 10: Checking the Division Algorithm

Problem: Check whether g(x)=x23g(x) = x^2 - 3 is a factor of p(x)=2x4+3x32x29x12p(x) = 2x^4 + 3x^3 - 2x^2 - 9x - 12.

Solution:
Divide p(x)p(x) by g(x)g(x):

2x4+3x32x29x12x23=2x2+3x+4\frac{2x^4 + 3x^3 - 2x^2 - 9x - 12}{x^2 - 3} = 2x^2 + 3x + 4

Remainder =0= 0.

Since the remainder is 00, g(x)g(x) is indeed a factor of p(x)p(x). \checkmark

Answer: Yes, x23x^2 - 3 is a factor.

Common Mistakes Students Make

Here are the pitfalls that cost marks in board exams:

1. Sign Error in Sum of Zeroes:
* Mistake: Writing α+β=ba\alpha + \beta = \frac{b}{a} instead of ba-\frac{b}{a}.
* Fix: The sum formula always has a negative sign: α+β=ba\alpha + \beta = -\frac{b}{a}. Remember: "sum is negative b over a."

2. Confusing Zeroes with Coefficients:
* Mistake: Thinking the zeroes are the coefficients aa, bb, cc.
* Fix: Zeroes are the values of xx that make p(x)=0p(x) = 0. Coefficients are the numbers multiplying each power of xx.

3. Errors in Long Division:
* Mistake: Subtracting incorrectly during polynomial long division, especially with negative signs.
* Fix: Write each step clearly. When subtracting, change all signs and then add. Double-check each subtraction.

4. **Forgetting the Constant kk:**
* Mistake: Claiming the polynomial is unique when only given the zeroes.
* Fix: There are infinitely many polynomials with the same zeroes — they differ by a constant multiple kk. Write p(x)=k[x2(sum)x+(product)]p(x) = k[x^2 - (\text{sum})x + (\text{product})].

5. Degree vs. Number of Zeroes:
* Mistake: Assuming a degree-nn polynomial always has nn real zeroes.
* Fix: A degree-nn polynomial has at most nn zeroes. Some zeroes might not be real numbers.

6. Not Verifying the Answer:
* Mistake: Not plugging zeroes back into the polynomial to check.
* Fix: Especially in long division problems, verify: p(x)=g(x)×q(x)+r(x)p(x) = g(x) \times q(x) + r(x).

Board Exam Strategy for Polynomials

Weightage: Polynomials typically carries 3-5 marks in the board exam.

Typical Question Patterns:

* 1 Mark (MCQ/VSA): Finding sum or product of zeroes directly from coefficients; number of zeroes from a graph.

* 2-3 Marks (SA): Finding a polynomial given its zeroes; finding the value of kk if a condition on zeroes is given; verifying the relationship between zeroes and coefficients.

* 4-5 Marks (LA): Finding all zeroes of a degree-4 polynomial given two of them (using division algorithm); polynomial long division problems.

Must-Know Question Types:
1. "Find the zeroes of p(x)p(x) and verify the relationship" — the classic CBSE question
2. "If one zero of kx2+...kx^2 + ... is ..., find kk"
3. "Find a quadratic polynomial with zeroes α\alpha and β\beta"
4. "Find all zeroes of p(x)p(x) given that two zeroes are ±k\pm\sqrt{k}"

Pro Tips:
- Always simplify fractions in your final answer.
- When forming a polynomial, multiply through to clear denominators.
- In division problems, arrange terms in descending order of degree and fill in missing powers with 0xn0x^n.
- Use the SparkEd Polynomials page to drill each question type until it becomes automatic.

Key Formulas: Quick Revision

**Quadratic ax2+bx+cax^2 + bx + c with zeroes α,β\alpha, \beta:**

α+β=baαβ=ca\alpha + \beta = -\frac{b}{a} \qquad \alpha\beta = \frac{c}{a}

**Cubic ax3+bx2+cx+dax^3 + bx^2 + cx + d with zeroes α,β,γ\alpha, \beta, \gamma:**

α+β+γ=ba\alpha + \beta + \gamma = -\frac{b}{a}

αβ+βγ+γα=ca\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}

αβγ=da\alpha\beta\gamma = -\frac{d}{a}

Forming a quadratic polynomial from zeroes:

p(x)=k[x2(sum)x+(product)]p(x) = k[x^2 - (\text{sum})x + (\text{product})]

Division algorithm:

p(x)=g(x)×q(x)+r(x)p(x) = g(x) \times q(x) + r(x)

where deg(r)<deg(g)\deg(r) < \deg(g) or r=0r = 0.

Useful identity: α2+β2=(α+β)22αβ\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta

Number of zeroes from graph: Count the number of times the curve y=p(x)y = p(x) crosses the xx-axis.

Master Polynomials with SparkEd

Polynomials is a chapter where understanding leads to speed, and speed leads to marks. Once you internalize the relationships between zeroes and coefficients, most problems become almost mechanical.

Here's how SparkEd helps:

* Focused Practice: The Polynomials page has questions from every type — finding zeroes, verifying relationships, forming polynomials, and long division.

* AI Math Solver: Struggling with polynomial long division? Type the problem into the AI Solver and see each step of the division laid out clearly.

* AI Coach: Get insights on whether your errors are in sign handling, division, or concept application. Targeted practice recommendations save you time.

* Connected Chapters: Polynomials directly feeds into Quadratic Equations and Pair of Linear Equations. Practice all three for a complete algebra preparation.

Head to sparkedmaths.com and turn these formulas into full marks!

Frequently Asked Questions

Try SparkEd Free

Visual step-by-step solutions, three difficulty levels of practice, and an AI-powered Spark coach to guide you when you are stuck. Pick your class and board to start.

Start Practicing Now