Algebra (General) for UPSC CDS — Equations, Identities, and Polynomials

intermediate 22 min read

Concept

Algebra at the CDS level is not about solving for x in a vacuum — it is about recognizing structure. The CDS paper consistently rewards candidates who can see a surd expression as a perfect square in disguise, or who know that a quadratic's roots telegraph the value of k without ever needing the quadratic formula.

Think of algebra as a grammar for numbers. Just as you do not decode a sentence word by word but read meaning in phrases, you should read algebraic expressions in chunks: recognizing a² - b² as (a+b)(a-b) in under a second, spotting that x = 7 + 4√3 almost certainly hides a squared binomial, seeing that "roots in ratio 2:3" immediately suggests substituting 2a and 3a.

Here is a useful mental model: every CDS algebra question has a locked door. The question gives you either the key (an identity, a theorem, a substitution) or a big enough hint that the key is nearby. Your job is to identify which key fits — not to brute-force the door with long calculations.

The major algebraic territories tested in CDS are:

None of these require anything beyond Class 10 theory. What CDS demands is fluency — getting from question to answer in 90 seconds, not 9 minutes.


Deep Dive

Surds and Perfect-Square Disguises

When you see x = a + b√c, your first instinct should be: can this be written as (p + q√c)²? Expanding (p + q√c)² = p² + q²c + 2pq√c. Match coefficients:

For x = 7 + 4√3: rational part 7, irrational coefficient 4. Try p = 2, q = 1: p² + q²(3) = 4 + 3 = 7. Check 2pq = 2(2)(1) = 4. So x = (2 + √3)², meaning √x = 2 + √3 and 1/√x = 2 - √3. Their sum is 4. The whole question collapses in 20 seconds once you recognize the structure.

Vieta's Formulas — Your Most Reused Tool

For a quadratic ax² + bx + c = 0 with roots α and β:

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

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

α+β+γ=p,αβ+βγ+γα=q,αβγ=r\alpha + \beta + \gamma = -p, \quad \alpha\beta + \beta\gamma + \gamma\alpha = q, \quad \alpha\beta\gamma = -r

Do not memorize these as isolated formulas — internalize the sign pattern: sum of roots = -(coefficient of second-highest term) / (leading coefficient). For x³ - 6x² + 11x - 6, the coefficient of is -6, so sum = -(-6)/1 = 6. That is the entire solution to one PYQ.

Roots in a Given Ratio

If roots are in ratio m:n, substitute α = ma and β = na. Then:

This technique bypasses the quadratic formula entirely. For ratio 2:3 and sum = 5: 5a = 5, so a = 1, roots are 2 and 3, product = 6.

The Remainder Theorem

When f(x) is divided by (x - a), the remainder is f(a). No long division needed. For f(x) = x³ - 3x² + 4x - 2 divided by (x - 1): substitute x = 1 directly: 1 - 3 + 4 - 2 = 0. Done in 8 seconds. If remainder is 0, then (x - 1) is a factor (Factor Theorem).

Discriminant Conditions

For ax² + bx + c = 0, discriminant D = b² - 4ac:

When a question gives a condition ("discriminant is zero"), set b² - 4ac = 0 and solve for the unknown parameter directly.

Chain Equalities with Indices and Logarithms

When aˣ = bʸ = cᶻ = k, take logarithms: x = log_a k, y = log_b k, z = log_c k. Equivalently, 1/x = log_k a, 1/y = log_k b, 1/z = log_k c. If c = ab, then log_k c = log_k a + log_k b, which gives 1/z = 1/x + 1/y. This is the key identity for any question of the form 2ˣ = 3ʸ = 6ᶻ.

Sum of First n Odd Numbers

The series 1 + 3 + 5 + ... + (2n-1) has sum . This is not a derivation you need to redo every time — stamp it as a fact. The 50th odd number is 2(50) - 1 = 99, and 1 + 3 + ... + 99 = 50² = 2500.

G.P. Sum Formula

For a geometric progression with first term a, common ratio r ≠ 1, and n terms:

Sn=a(rn1)r1S_n = \frac{a(r^n - 1)}{r - 1}

For a = 1, r = 2: Sₙ = 2ⁿ - 1. Set equal to 255: 2ⁿ = 256 = 2⁸, so n = 8. Powers of 2 up to 2¹⁰ = 1024 should be memorized.


Memory Tricks & Shortcuts

patternSurd-as-Square Radar

When x = a + b√c appears in a question asking for √x or 1/√x, immediately attempt to write x = (p + q√c)². Match rational and irrational parts. This works because CDS question setters almost always choose "nice" values. If it fits, you bypass all calculation. Standard method (rationalization + square-root algebra): ~90 seconds. This pattern: ~15 seconds once recognized. Micro-example: x = 7 + 4√3 → (2 + √3)² = 4 + 3 + 4√3 = 7 + 4√3. Match confirmed in 5 seconds.

substitutionRatio-Roots Substitution

Roots in ratio m:n? Substitute α = ma, β = na immediately — never set up the quadratic formula. Sum: (m+n)a = S → find a in one step. Product: mn·a² = P → find k or verify. Standard method (forming two equations from sum/product and solving simultaneously): 6 steps. This substitution: 3 steps. Micro-example: ratio 2:3, sum = 5 → 5a = 5, a = 1, roots 2 and 3, product = 6 = k.

patternVieta Sign-Pattern Lock

For any polynomial x³ + px² + qx + r, the sum of roots = −p (flip the sign of the x² coefficient). You never need to find the individual roots for a "sum of roots" question. In x³ − 6x² + 11x − 6, p = −6, sum = −(−6) = 6. Standard approach (factoring the cubic to find all three roots): ~3 minutes. Vieta directly: 8 seconds.

patternChain-Equality Reciprocal Rule

For 2ˣ = 3ʸ = 6ᶻ style questions, rewrite as 1/x = log_k 2, 1/y = log_k 3, 1/z = log_k 6. Since log_k 6 = log_k 2 + log_k 3 (because 6 = 2×3), conclude 1/z = 1/x + 1/y instantly. The key insight: when the third base is a product of the first two, the reciprocals add. Standard logarithm manipulation: 5–6 lines. This pattern: 2 lines once you see it.

estimationGP Sum Power-of-Two Shortcut

For GP with a = 1, r = 2: Sₙ = 2ⁿ − 1. Memorize powers of 2 up to 2¹⁰. Then Sₙ = 255 → 2ⁿ = 256 = 2⁸ → n = 8. No formula substitution or division needed — just recognize 256 in the list 2, 4, 8, 16, 32, 64, 128, 256. Standard formula application and solving: 4 steps. Memorized powers: 1 step.


Fast-Solving Framework

In the exam hall, classify the question in the first 5 seconds and apply the corresponding tool:

Surd / √x question → Try perfect-square factoring first. If x = a + b√c, attempt x = (p + q√c)².

Quadratic with condition on k → Discriminant = 0 (equal roots), discriminant > 0 (real roots), or roots in a ratio (use m:n substitution). Pick exactly one approach.

Polynomial divided by (x − a) → Plug x = a into f(x) directly. Do not divide.

Sum / product of roots asked → Apply Vieta's formulas. Never solve for individual roots unless the question explicitly asks for them.

Cubic root-sum question → Sum = −(coeff of x²), no factoring needed.

Chain equality aˣ = bʸ = cᶻ → Let all equal k, write reciprocals as logs, use log addition for product bases.

Series sum → Identify type: odd-number series (n²), AP (n/2 × (first + last)), GP (a(rⁿ − 1)/(r − 1)).

If none of the above fits cleanly in 10 seconds, use elimination: substitute answer choices into the original equation. CDS options are usually small integers.


Solved PYQs

Why this question: Tests whether you recognize a surd as a perfect square — the single most common surd trap in CDS.

Previous Year Questionपिछले वर्ष का प्रश्न2022
If x = 7 + 4√3, then what is the value of √x + 1/√x?
यदि x = 7 + 4√3 है, तो √x + 1/√x का मान क्या है?
  1. 2
  2. 4
  3. 1
  4. 3
  1. 2
  2. 4
  3. 1
  4. 3
Solutionसमाधान
x = (2+√3)², so √x = 2+√3 and 1/√x = 2-√3. Their sum is 4.

Solving path: Write x = 7 + 4√3. Ask: is this (p + q√3)² for small integers? Try p = 2, q = 1: (2 + √3)² = 4 + 3 + 4√3 = 7 + 4√3. Yes. So √x = 2 + √3. Then 1/√x = 1/(2 + √3) = (2 - √3)/((2+√3)(2-√3)) = (2 - √3)/(4 - 3) = 2 - √3. Sum = (2 + √3) + (2 - √3) = 4.


Why this question: Classic Vieta's application with a ratio condition — tests whether you know the substitution trick or waste time with the quadratic formula.

Previous Year Questionपिछले वर्ष का प्रश्न
If the roots of the equation x² - 5x + k = 0 are in the ratio 2:3, then the value of k is:
यदि समीकरण x² - 5x + k = 0 के मूल 2:3 के अनुपात में हैं, तो k का मान है:
  1. 6
  2. 10
  3. 15
  4. 18
  1. 6
  2. 10
  3. 15
  4. 18
Solutionसमाधान
Let the roots be 2a and 3a. Sum of roots = 2a + 3a = 5a = 5, so a = 1. Therefore, roots are 2 and 3. Product of roots = 2 × 3 = 6 = k.
मान लेते हैं कि मूल 2a और 3a हैं। मूलों का योग = 2a + 3a = 5a = 5, अतः a = 1। इसलिए मूल 2 और 3 हैं। मूलों का गुणनफल = 2 × 3 = 6 = k।

Solving path: Roots in ratio 2:3 → write them as 2a and 3a. Sum of roots = 2a + 3a = 5a. From the equation x² - 5x + k = 0, sum = 5. So 5a = 5, a = 1. Roots are 2 and 3. Product of roots = 2 × 3 = 6 = k.


Why this question: Chain-equality with indices — CDS recycles this structure. You need the logarithm-reciprocal method, not guesswork.

Previous Year Questionपिछले वर्ष का प्रश्न
If 2ˣ = 3ʸ = 6ᶻ, then which of the following relations is correct?
यदि 2ˣ = 3ʸ = 6ᶻ है, तो निम्नलिखित में से कौन-सा संबंध सही है?
  1. z = xy/(x+y)
  2. 1/z = 1/x + 1/y
  3. z = (x+y)/xy
  4. xy = z(x+y)
  1. z = xy/(x+y)
  2. 1/z = 1/x + 1/y
  3. z = (x+y)/xy
  4. xy = z(x+y)
Solutionसमाधान
Let 2ˣ = 3ʸ = 6ᶻ = k. Then x = log₂k, y = log₃k, z = log₆k. Since 6 = 2×3, we have 1/z = 1/log₆k = log_k 6 = log_k(2×3) = log_k 2 + log_k 3 = 1/x + 1/y.
मान लेते हैं 2ˣ = 3ʸ = 6ᶻ = k। तब x = log₂k, y = log₃k, z = log₆k। चूंकि 6 = 2×3, इसलिए 1/z = log_k 6 = log_k(2×3) = log_k 2 + log_k 3 = 1/x + 1/y।

Solving path: Let 2ˣ = 3ʸ = 6ᶻ = k. Then 1/x = log_k 2, 1/y = log_k 3, 1/z = log_k 6. Since 6 = 2 × 3: log_k 6 = log_k 2 + log_k 3, so 1/z = 1/x + 1/y. Check the options — option B matches exactly.


Why this question: Remainder Theorem application — if you know the theorem, this is a 10-second question. Without it, you spend 2 minutes on polynomial long division.

Previous Year Questionपिछले वर्ष का प्रश्न
The remainder when x³ - 3x² + 4x - 2 is divided by (x - 1) is:
जब x³ - 3x² + 4x - 2 को (x - 1) से भाग दिया जाता है, तो शेषफल क्या होगा?
  1. -2
  2. 0
  3. 2
  4. 4
  1. -2
  2. 0
  3. 2
  4. 4
Solutionसमाधान
By Remainder Theorem, when polynomial f(x) is divided by (x - a), remainder = f(a). Here f(x) = x³ - 3x² + 4x - 2 and a = 1. So remainder = f(1) = 1³ - 3(1)² + 4(1) - 2 = 1 - 3 + 4 - 2 = 0.
शेषफल प्रमेय से, जब f(x) को (x - a) से भाग देते हैं तो शेषफल = f(a)। यहां f(1) = 1 - 3 + 4 - 2 = 0।

Solving path: Remainder Theorem: remainder when f(x) is divided by (x − 1) equals f(1). Compute f(1) = 1³ - 3(1²) + 4(1) - 2 = 1 - 3 + 4 - 2 = 0. Remainder is 0, so (x - 1) is a factor of the polynomial.


Why this question: Discriminant condition — standard template question. Tests whether you can set up b² - 4ac = 0 and isolate the parameter.

Previous Year Questionपिछले वर्ष का प्रश्न
If the discriminant of the equation kx² + 4x + 1 = 0 is zero, then the value of k is:
यदि समीकरण kx² + 4x + 1 = 0 का विविक्तकार (Discriminant) शून्य है, तो k का मान क्या होगा?
  1. 2
  2. 4
  3. 8
  4. 16
  1. 2
  2. 4
  3. 8
  4. 16
Solutionसमाधान
For a quadratic equation ax² + bx + c = 0, discriminant = b² - 4ac. Here a = k, b = 4, c = 1. For discriminant = 0: 4² - 4(k)(1) = 0, so 16 - 4k = 0, which gives k = 4.
द्विघात समीकरण के लिए विविक्तकर = b² - 4ac। यहां a = k, b = 4, c = 1। विविक्तकर = 0 के लिए: 16 - 4k = 0, अतः k = 4।

Solving path: Equation: kx² + 4x + 1 = 0. Here a = k, b = 4, c = 1. Discriminant = b² - 4ac = 16 - 4k. Set to zero: 16 - 4k = 0k = 4.


Common Mistakes


Related Topics


Practice on SarkariRise

Sign up + get 3 free mocks →