Polynomials for UPSC CDS — Remainder Theorem, Factor Theorem, and Zeroes

intermediate 18 min read

Concept

A polynomial is an expression of the form aₙxⁿ + aₙ₋₁xⁿ⁻¹ + ... + a₁x + a₀, where the exponents are non-negative integers and the coefficients are real numbers. That is it — no x⁻², no √x, no 1/x lurking in there.

The degree of a polynomial is the highest power with a non-zero coefficient. A degree-1 polynomial is linear, degree-2 is quadratic, degree-3 is cubic, and degree-4 is biquadratic. The degree matters because it tells you the maximum number of zeroes a polynomial can have.

A zero (or root) of a polynomial p(x) is a value c such that p(c) = 0. Think of it as the x-coordinate where the polynomial's graph touches or crosses the x-axis. A degree-n polynomial has exactly n zeroes, counting multiplicity, in the complex number system — though for CDS, you only deal with real zeroes.

Here is a useful analogy. Think of a polynomial as a number written in base x instead of base 10. Just as the number 3452 breaks into 3×10³ + 4×10² + 5×10 + 2, a cubic polynomial 3x³ + 4x² + 5x + 2 is structurally the same — a sum of powers with coefficients. Operations on polynomials (addition, subtraction, multiplication, division) follow the same logic as arithmetic on whole numbers. This is why the Remainder Theorem and Factor Theorem are really just the polynomial versions of long division with a remainder.

For CDS, polynomials appear in two flavours of question. First, straightforward application of Remainder/Factor theorems where you substitute a value and solve for an unknown coefficient. Second, abstract questions about the relationship between zeroes and coefficients (Vieta's formulas). Both are very doable once you know what each theorem actually says.


Deep Dive

The Remainder Theorem

When you divide a polynomial p(x) by a linear factor (x − c), the remainder is exactly p(c).

Why does this work? Polynomial long division gives you: p(x) = (x − c) · q(x) + R, where R is a constant (the remainder, since the divisor is degree 1). Substituting x = c: p(c) = (c − c) · q(c) + R = R. So the remainder equals p(c). No division needed — just substitute.

Practical use: If a question asks "what is the remainder when p(x) is divided by (x − 3)?", compute p(3) in five seconds. Done.

The Factor Theorem

The Factor Theorem is the Remainder Theorem with one extra condition: (x − c) is a factor of p(x) if and only if p(c) = 0. This is just the observation that remainder zero means exact divisibility.

Use case: to verify that a given value is a zero of a polynomial, substitute it. To find the remaining factors after confirming one zero, perform synthetic division or polynomial long division.

Vieta's Formulas (Relationship Between Zeroes and Coefficients)

For a monic polynomial (leading coefficient = 1) of degree n with zeroes α₁, α₂, ..., αₙ:

For a cubic x³ + px² + qx + r with zeroes α, β, γ:

For a biquadratic x⁴ + ax³ + bx² + cx + d with zeroes α, β, γ, δ:

These formulas let you find relationships between zeroes without factoring the polynomial completely.

Polynomial Division and Factoring Strategy

When one zero c is known, divide p(x) by (x − c) using synthetic division to get a degree (n−1) polynomial. Repeat until you reach a quadratic — then apply the sum-product method or the quadratic formula.

Synthetic division (for dividing by x − c): write only the coefficients, bring down the first, multiply by c, add down the column. This is faster than long division for CDS purposes.

Divisibility of Polynomial Expressions

Some CDS questions exploit special factoring identities:

When a polynomial in x has a geometric-series structure (consecutive even or odd powers), factor out the common term first, then recognise the sum-of-geometric-series pattern.


Memory Tricks and Shortcuts

substitutionRemainder in 5 Seconds

When asked for the remainder of p(x) ÷ (x − c), skip division entirely. Just compute p(c).

Example: remainder of x³ − 4x² + 6x − 2 divided by (x − 2). Standard long division: ~45 seconds. Substitution: p(2) = 8 − 16 + 12 − 2 = 2. Done in 8 seconds.

The step count drops from roughly 12 steps (long division) to 4 steps (substitute, arithmetic, answer).

patternVieta's Sum-of-Squares Hack

Questions ask for α² + β² + γ² for a cubic. Don't find each zero individually.

Use the identity: α² + β² + γ² = (α + β + γ)² − 2(αβ + βγ + γα).

For the cubic x³ + px² + qx + r: this equals p² − 2q. This saves you from solving a cubic. The substitution approach for this pattern takes 3 steps; factoring the cubic from scratch can take 8-10 steps.

patternGeometric-Series Factoring for Divisibility

When a polynomial looks like xᵃ + xᵃ⁺² + xᵃ⁺⁴ + xᵃ⁺⁶, factor out xᵃ:

xᵃ(1 + x² + x⁴ + x⁶)

Then factor the bracket as a geometric series sum: (1 + x²)(1 + x⁴).

This immediately tells you the polynomial is divisible by both (x² + 1) and (x⁴ + 1) — no trial division needed. Standard divisibility-check by substitution would require testing ±i for statement 1 and checking the four fourth roots of −1 for statement 2. The factoring route cuts this to a single algebraic manipulation (~10 seconds vs ~90 seconds).

substitutionKnown-Zero-to-Other-Zeroes Pipeline

When one zero c is given and you need properties of the other zeroes:

Step 1 — Find the unknown coefficient using p(c) = 0 (Remainder Theorem). Step 2 — Divide p(x) by (x − c) using synthetic division to get the depressed polynomial. Step 3 — Apply Vieta's or factorise the depressed polynomial.

This pipeline appeared directly in CDS 2024. Executing it cold in the exam takes about 90 seconds. Without the pipeline (guessing-and-checking zeroes) can take 3-4 minutes.

patternSign Pattern for Vieta's Product

Students constantly get the sign of αβγ wrong for a cubic x³ + px² + qx + r. The pattern:

Sum of zeroes: −p (minus the coefficient of ) Product of zeroes: −r (minus the constant term, since n=3 is odd)

Mnemonic: for odd-degree polynomials, the product of all zeroes carries a negative sign on the constant. For even-degree (biquadratic), the product carries a positive sign. One check: for x² − 5x + 6 = (x−2)(x−3), product = 6 = positive constant. Degree is even. This sign check takes 2 seconds and prevents a full sign-error in Vieta's.


Fast-Solving Framework

When a polynomial question appears, classify it in the first 10 seconds:

Type A — "Find the remainder" → Use the Remainder Theorem. Substitute x = c directly. No division.

Type B — "Is (x − c) a factor?" or "Find the unknown coefficient given a zero" → Use the Factor Theorem. Set p(c) = 0, solve for the unknown.

Type C — "Sum/product/sum-of-squares of zeroes" → Use Vieta's formulas. Do not find individual zeroes unless the polynomial is already depressed to a quadratic.

Type D — "One zero given, find properties of others" → Pipeline: Factor Theorem to find unknown coefficient → synthetic division → Vieta's or factoring on the depressed polynomial.

Type E — "Is this polynomial divisible by that one?" → Check if the zeroes of the divisor are also zeroes of the dividend, or look for a geometric-series / algebraic factoring.

Decision rule: never apply the quadratic formula to a depressed quadratic if sum-product factoring takes under 10 seconds. Save the formula for irrationals.


Solved PYQs

Why this question: This is the canonical Type D question from CDS 2024 — given one zero, find a coefficient, then get properties of remaining zeroes. The pipeline is almost automatic once you have practised it.

Previous Year Questionपिछले वर्ष का प्रश्न2024
If 2 is a zero of the polynomial p(x) = x³ + 3x² − 6x − a, then what is the sum of the squares of the other zeros of the polynomial ?
  1. 10
  2. 17
  3. 21
  4. 37
Solutionसमाधान
Since 2 is a zero, p(2) = 8 + 12 − 12 − a = 0, so a = 8. Dividing x³ + 3x² − 6x − 8 by (x − 2) gives x² + 5x + 4 = (x+1)(x+4). So other zeros are −1 and −4. Sum of squares = 1 + 16 = 17. The answer is 17 (option b).

Solving path:

  1. Apply Factor Theorem: p(2) = 0 gives 8 + 12 − 12 − a = 0, so a = 8.
  2. Now p(x) = x³ + 3x² − 6x − 8. Divide by (x − 2) via synthetic division: coefficients 1, 3, −6, −8 divided by root 2 give 1, 5, 4, 0. Depressed polynomial: x² + 5x + 4.
  3. Factorise: (x + 1)(x + 4). Other zeroes are −1 and −4.
  4. Sum of squares: (−1)² + (−4)² = 1 + 16 = 17. Answer: option (b).

Note: the answer key correctly identifies option (b) as 17, not option (c) as 21. Check your option letters carefully in the exam.


Why this question: This abstract question tests whether you understand that a monic degree-4 polynomial is completely determined by its four zeroes. The algebra here is purely about factored form — no numerical substitution.

Previous Year Questionपिछले वर्ष का प्रश्न2024
Suppose p(x) = x⁴ + a₃x³ + a₂x² + a₁x + a₀ and q(x) = x⁴ + b₃x³ + b₂x² + b₁x + b₀ are the polynomials. If α, β, γ, δ are zeros of p(x) and α, β, γ, λ are zeros of q(x), then what is (p(x) − q(x))/((x − α)(x − β)(x − γ)) equal to ?
  1. −λ + δ
  2. λ − δ
  3. λ + δ
  4. −λ − δ
Solutionसमाधान
p(x) = (x − α)(x − β)(x − γ)(x − δ) and q(x) = (x − α)(x − β)(x − γ)(x − λ). So p(x) − q(x) = (x − α)(x − β)(x − γ)[(x − δ) − (x − λ)] = (x − α)(x − β)(x − γ)(λ − δ). Dividing by (x − α)(x − β)(x − γ) gives λ − δ. Wait, that's option (b). Re-checking: (x − δ) − (x − λ) = −δ + λ = λ − δ. So the answer is λ − δ, which is option (b).

Solving path:

  1. Write factored forms: p(x) = (x − α)(x − β)(x − γ)(x − δ) and q(x) = (x − α)(x − β)(x − γ)(x − λ).
  2. Subtract: p(x) − q(x) = (x − α)(x − β)(x − γ) [(x − δ) − (x − λ)].
  3. Simplify the bracket: (x − δ) − (x − λ) = −δ + λ = λ − δ.
  4. Divide both sides by (x − α)(x − β)(x − γ): result is λ − δ.

The answer is λ − δ, which corresponds to option (b). The key move is writing both polynomials in factored form — do not expand and compare coefficients, that wastes two minutes.


Why this question: This tests geometric-series factoring and divisibility. The polynomial structure x^(4k) + x^(4k+2) + x^(4k+4) + x^(4k+6) looks intimidating, but factoring reveals everything in one line.

Previous Year Questionपिछले वर्ष का प्रश्न2024
Consider the following in respect of the polynomial x^4k + x^(4k+2) + x^(4k+4) + x^(4k+6): 1. The remainder is zero when the polynomial is divided by x² + 1. 2. The remainder is zero when the polynomial is divided by x⁴ + 1. Which of the statements given above is/are correct?
  1. 1 only
  2. 2 only
  3. Both 1 and 2
  4. Neither 1 nor 2
Solutionसमाधान
Factor out x^4k: x^4k(1 + x² + x⁴ + x⁶) = x^4k(1 + x²)(1 + x⁴). So the polynomial is divisible by (x² + 1) and also by (x⁴ + 1). Both statements should be correct. Per the official answer key the answer is (c) Both 1 and 2.

Solving path:

  1. Factor out x^(4k): the expression becomes x^(4k)(1 + x² + x⁴ + x⁶).
  2. Recognise the bracket as a geometric series with first term 1, ratio , four terms. Factor it: (1 + x²)(1 + x⁴).
  3. So the full polynomial equals x^(4k)(1 + x²)(1 + x⁴).
  4. Statement 1: divisible by x² + 1? Yes — (1 + x²) is a factor. Remainder = 0. Correct.
  5. Statement 2: divisible by x⁴ + 1? Yes — (1 + x⁴) is a factor. Remainder = 0. Correct.
  6. Answer: Both 1 and 2, option (c).

The official answer key confirms option (c). The shortcut is the factoring of 1 + x² + x⁴ + x⁶ — once you see it is (1 + x²)(1 + x⁴), both statements resolve simultaneously.


Common Mistakes


Related Topics


Practice on SarkariRise

Sign up + get 3 free mocks →