Quadratic Equations for NDA — Roots, Discriminant, and Key Theorems

intermediate 22 min read

Concept

A quadratic equation is any equation of the form ax² + bx + c = 0 where a ≠ 0. That last condition matters — the moment a = 0, you've got a linear equation, and all the theory below collapses.

Here's a clean way to think about it: a quadratic is just a parabola intersecting the x-axis. The roots are the x-coordinates of those intersection points. When the parabola cuts the x-axis at two points, you get two distinct real roots. When it just touches, you get one repeated root. When it floats entirely above or below the x-axis without touching, the roots are complex (imaginary).

That visual — parabola and x-axis — is your anchor for everything that follows.

Why quadratics matter for NDA specifically: NDA Paper-I (Mathematics) tests quadratics not just as standalone questions but as the backbone of several other topics. Nature of roots connects to complex numbers. Sum-product formulas appear in progressions questions (roots in AP/GP). Completing the square is the gateway to conic sections. You are going to see this topic folded into at least 3-4 other chapters, so the investment here compounds.

The standard form ax² + bx + c = 0 gives roots:

x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

The expression b² - 4ac is called the discriminant (D). It controls everything about the nature of roots:

Think of D as the "mood indicator" of the equation. Before you even attempt to find the roots, read D — it tells you what kind of answer to expect.


Deep Dive

Vieta's Formulas (Sum and Product of Roots)

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

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

These are not just formulas to memorize — they're the primary tool for NDA questions. Most quadratic problems that look computational are actually Vieta problems in disguise. Look for phrases like "roots exceeding each other by," "arithmetic mean of roots," "product of roots equals sum" — these all translate immediately into Vieta expressions.

Forming a quadratic from known roots: If you know α + β and αβ, the equation is:

x2(α+β)x+αβ=0x^2 - (\alpha + \beta)x + \alpha\beta = 0

This is the reverse application of Vieta. NDA loves asking you to construct equations, especially when roots are given in terms of another equation's roots.

The Discriminant in Depth

For the equation ax² + bx + c = 0 where a, b, c ∈ ℝ:

| D value | Nature of roots | |---|---| | D > 0 and a perfect square | Two distinct rational roots | | D > 0 and not a perfect square | Two distinct irrational roots (conjugate surds) | | D = 0 | Equal real roots: α = β = -b/2a | | D < 0 | Complex conjugate roots: p ± qi |

When a, b, c ∈ ℚ (rational coefficients), irrational and complex roots always come in conjugate pairs. So if 2 + √3 is a root, 2 - √3 is automatically the other root. If 3 + 2i is a root, 3 - 2i is the other.

Completing the Square

Completing the square converts ax² + bx + c into vertex form a(x + h)² + k. This is essential for two things: finding the minimum/maximum value of a quadratic expression, and solving equations when factorization isn't obvious.

Method: Take ax² + bx + c, divide through by a, then:

x2+bax+ca=(x+b2a)2b24a2+ca=(x+b2a)2+4acb24a2x^2 + \frac{b}{a}x + \frac{c}{a} = \left(x + \frac{b}{2a}\right)^2 - \frac{b^2}{4a^2} + \frac{c}{a} = \left(x + \frac{b}{2a}\right)^2 + \frac{4ac - b^2}{4a^2}

The minimum value of the expression (for a > 0) is (4ac - b²) / 4a, achieved at x = -b/2a.

Note the sign carefully: minimum = (4ac - b²)/4a = -D/4a. This is a direct formula NDA has tested.

Nature of Roots When Parameters Are Involved

When a question asks "for what values of k are roots real?" — set D ≥ 0 and solve the resulting inequality in k. When it asks "for what values of k are roots equal?" — set D = 0. This is the standard parametric approach.

GP Roots and the Discriminant

A particularly elegant result: if a, b, c are in GP, then b² = ac. Substituting into the discriminant: D = b² - 4ac = ac - 4ac = -3ac. Since a, c > 0 (GP with positive terms), D = -3ac < 0 — roots are always imaginary. This appeared directly in an NDA PYQ.

Substitution Trick for Disguised Quadratics

Equations like √x + x + 1 = 0 or 5√x - x - 4 = 0 look non-standard but become quadratics with the substitution y = √x (so y ≥ 0). After solving for y, remember to check: y = √x ≥ 0, so discard negative y values. Then x = y².

This is a common NDA trap — the substitution is straightforward, but students forget the constraint y ≥ 0 and report roots that don't exist in ℝ⁺.

Conditions for a Quadratic to Be Unchanged After Squaring Roots

If roots \{α, β\} must equal \{α², β²\}, there are two structural cases:

Counting carefully: fixed-point pairs give (0,0), (0,1), (1,1) — three equations. The swap case gives one equation (x² + x + 1 = 0). Total: 4.


Memory Tricks & Shortcuts

patternD-Before-Formula: Read the Discriminant First

Before computing roots, always compute D = b² - 4ac. If D < 0, you know roots are complex — write the answer immediately without grinding through the formula. If D is a perfect square, roots are rational and factorization will be faster than the formula. This single habit saves 30-45 seconds per question by routing you to the faster method before you start computing.

Micro-example: x² + x + 1 = 0. D = 1 - 4 = -3 < 0. Stop here — roots are complex. Standard method (formula application): ~40 seconds. Discriminant check: 8 seconds.

patternSum-Product Before Substitution

When a question gives you two equations sharing roots, use Vieta instead of solving. If α, β are roots of equation 1, read off α+β and αβ in one step. Then answer questions about a second equation by substituting into its Vieta relationships.

Micro-example: Roots of x² - 2bx + c² = 0 have α+β = 2b and αβ = c². So A = b, G = c. The equation x² - (b+c)x + bc = 0 has sum b+c = A+G and product bc = A·G — it factors to (x-b)(x-c) = 0, roots A and G. This takes 4 steps vs. 10+ steps if you solve explicitly for α and β.

patternMinimum Value Direct Formula

For ax² + bx + c with a > 0, minimum value = (4ac - b²) / 4a = -D/4a. No need to complete the square from scratch every time.

Micro-example: x² + kx + k². Here a=1, b=k, c=k². Minimum = (4·1·k² - k²) / 4 = 3k²/4. Standard completing-the-square method: 5 steps, ~35 seconds. Direct formula: 2 steps, ~10 seconds.

patternDifference of Roots via Discriminant

(α - β)² = (α + β)² - 4αβ = (b/a)² - 4(c/a) = D/a²

So |α - β| = √D / a.

When a question says "one root exceeds the other by k," set √D / a = k and solve. Don't parametrize with individual roots.

Micro-example: x² - kx + k = 0, one root exceeds other by 2√3. So (2√3)² = D/1, giving 12 = k² - 4k, then k² - 4k - 12 = 0, (k-6)(k+2) = 0. This takes 3 steps from the formula. Setting up α and β individually takes 6+ steps.

patternGP-In-Coefficients → Imaginary Roots

If a, b, c are in GP (positive terms), the roots of ax² + bx + c = 0 are always imaginary. Proof shortcut: D = b² - 4ac = ac - 4ac = -3ac < 0. Commit this result — NDA has tested it and will again. Recognition time: 3 seconds vs. 25 seconds to re-derive.


Fast-Solving Framework

When you see a quadratic question in the exam hall, run this decision tree:

Step 1 — Identify what's being asked. Is it (a) find the roots, (b) nature of roots, (c) a condition on roots, or (d) minimum/maximum of expression?

Step 2 — Compute D immediately for (a) and (b). D routes you: rational roots → factorize; irrational → formula; complex → write p ± qi form directly.

Step 3 — For (c) conditions on roots: translate immediately to Vieta. "Roots in ratio 1:2" → let roots be r, 2r, then 3r = -b/a and 2r² = c/a. Never solve the equation; always work with sum and product.

Step 4 — For (d) minimum/maximum: use (4ac - b²)/4a directly for the vertex value. For min of a sum-type expression, check if completing the square is faster.

Step 5 — Substitution check: if the equation has √x or x^(1/2), substitute y = √x, enforce y ≥ 0, solve, then square back.

One meta-rule: the quadratic formula is a last resort for NDA, not a first move. Factorization and Vieta together solve 80% of quadratic questions faster.


Solved PYQs

Why this question: Tests whether you can enumerate the structural cases systematically rather than guessing.

Previous Year Questionपिछले वर्ष का प्रश्न2026
If the highest degree coefficient is equal to 1, then what is the total number of quadratic equations which are unchanged on squaring their roots?
  1. 6
  2. 4
  3. 2
  4. None
Solutionसमाधान
Let roots be α, β. After squaring, roots are α², β². For unchanged equation, {α, β} = {α², β²}. Cases: (i) α = α², β = β² gives α, β ∈ {0, 1}, yielding pairs (0,0), (0,1), (1,1) — three equations: x², x(x−1), (x−1)². (ii) α = β², β = α² with α ≠ α²: α = α⁴ gives α³ = 1, α ≠ 1, so α is a primitive cube root of unity. This gives one equation x² + x + 1 = 0. Total = 3 + 1 = 4.

Solving path: Set up the condition: squaring roots must return the same set \{α, β\}. This has exactly two structural sub-cases. Case 1 (fixed points): α = α² means α(α-1)=0, so α ∈ \{0,1\}. Pairs from \{0,1\}: (0,0), (0,1), (1,1) — giving three monic quadratics. Case 2 (swap): α = β² and β = α². Substituting: α = α⁴, so α³ = 1, α ≠ 1 (since Case 2 requires the roots to genuinely swap). This gives the primitive cube roots of unity, yielding the single equation x² + x + 1 = 0. Total: 3 + 1 = 4.


Why this question: Connects two equations through AM and GM — tests whether you recognize Vieta relationships across equations without solving either.

Previous Year Questionपिछले वर्ष का प्रश्न2026
Let α and β be the roots of the quadratic equation x² − 2bx + c² = 0 where b, c are positive real numbers. Let A be the arithmetic mean of α and β; and G be the geometric mean of α and β. What are the roots of the quadratic equation x² − (b + c) x + bc = 0?
  1. A, G
  2. 2A, G
  3. A, 2G
  4. 2A, 2G
Solutionसमाधान
From x² − 2bx + c² = 0: α + β = 2b and αβ = c². So A = (α+β)/2 = b and G = √(αβ) = c. The equation x² − (b+c)x + bc = 0 factors as (x − b)(x − c) = 0, giving roots b and c, which equal A and G respectively.

Solving path: From x² - 2bx + c² = 0: sum of roots = 2b, product = . So A = (α+β)/2 = b and G = √(αβ) = √(c²) = c (since b, c > 0). Now the second equation x² - (b+c)x + bc = 0: its sum is b + c = A + G and product is bc = A·G. Factor: (x-b)(x-c) = 0, roots are b and c, which are exactly A and G.


Why this question: Minimum value of a quadratic expression — a direct test of the completing-the-square or vertex formula.

Previous Year Questionपिछले वर्ष का प्रश्न2026
For a given k, what is the minimum value of x² + kx + k²?
  1. 0
  2. k²/4
  3. 3k²/4
  4. k²/2
Solutionसमाधान
Completing the square: x² + kx + k² = (x + k/2)² + k² - k²/4 = (x + k/2)² + 3k²/4. Minimum value is 3k²/4 when x = -k/2.

Solving path: Apply the minimum formula directly. For x² + kx + k², we have a=1, b=k, c=k². Minimum = (4·1·k² - k²)/(4·1) = 3k²/4. Alternatively, complete the square: (x + k/2)² + k² - k²/4 = (x + k/2)² + 3k²/4. Minimum is 3k²/4 at x = -k/2.


Why this question: Disguised quadratic via substitution — tests whether you handle the domain constraint y = √x ≥ 0.

Previous Year Questionपिछले वर्ष का प्रश्न2026
Consider the following statements: I. √x + x + 1 = 0 has two irrational roots. II. 5√x - x - 4 = 0 has two rational roots. Which of the statements given above is/are correct?
  1. I only
  2. II only
  3. Both I and II
  4. Neither I nor II
Solutionसमाधान
I. √x + x + 1 = 0: Let y = √x ≥ 0, then y² + y + 1 = 0, discriminant = 1 - 4 = -3 < 0, no real roots. So statement I is false. II. 5√x - x - 4 = 0: Let y = √x, then -y² + 5y - 4 = 0, y² - 5y + 4 = 0, (y-1)(y-4) = 0, y = 1 or 4, so x = 1 or 16, both rational. Statement II is correct.

Solving path: Statement I: √x + x + 1 = 0. Let y = √x ≥ 0. Then y + y² + 1 = 0, i.e., y² + y + 1 = 0. Discriminant = 1 - 4 = -3 < 0. No real y, so no real x. Statement I is false (there are no real roots at all, let alone irrational ones). Statement II: 5√x - x - 4 = 0. Let y = √x ≥ 0. Then -y² + 5y - 4 = 0, i.e., y² - 5y + 4 = 0, (y-1)(y-4) = 0, y = 1 or y = 4. Both y ≥ 0, so x = 1 or x = 16. Both rational. Statement II is correct.


Why this question: Classic "difference of roots" setup — tests the shortcut (α-β)² = D/a².

Previous Year Questionपिछले वर्ष का प्रश्न2025
If one root of the equation x² - kx + k = 0 exceeds the other by 2√3, then which one of the following is a value of k?
  1. 3
  2. 6
  3. 9
  4. 12
Solutionसमाधान
Let roots be α and β with α - β = 2√3. Then α + β = k and αβ = k. Also (α - β)² = (α + β)² - 4αβ, so 12 = k² - 4k, i.e., k² - 4k - 12 = 0, giving k = 6 or k = -2. Among the options, k = 6 is valid.

Solving path: For x² - kx + k = 0: sum = k, product = k. Use the identity (α-β)² = (α+β)² - 4αβ = k² - 4k. Given |α-β| = 2√3, so (α-β)² = 12. Therefore k² - 4k = 12, giving k² - 4k - 12 = 0, (k-6)(k+2) = 0, k = 6 or k = -2. Among the options, k = 6.


Why this question: Tests the GP-in-coefficients result — discriminant behavior plus root ratios involving cube roots of unity.

Previous Year Questionपिछले वर्ष का प्रश्न2024
If a, b and c (a > 0, c > 0) are in GP, then consider the following in respect of the equation ax² + bx + c = 0: 1. The equation has imaginary roots. 2. The ratio of the roots of the equation is 1 : ω where ω is a cube root of unity. 3. The product of roots of the equation is (b²/a²). Which of the statements given above are correct?
  1. 1 and 2 only
  2. 2 and 3 only
  3. 1 and 3 only
  4. 1, 2 and 3
Solutionसमाधान
Since a, b, c are in GP, b² = ac. Discriminant = b² – 4ac = ac – 4ac = –3ac < 0 (since a, c > 0), so roots are imaginary. Statement 1 correct. Product of roots = c/a. Since b² = ac, c = b²/a, so c/a = b²/a². Statement 3 correct. For the ratio: roots are (–b ± i√3·√(ac))/(2a) = (–b ± i√3·b)/(2a) (since √(ac)=b for positive case, actually b could be negative). Roots are b(–1 ± i√3)/(2a) which are b·ω and b·ω² up to sign, where ω is a cube root of unity. Ratio = ω/ω² or equivalently 1:ω. Statement 2 correct. All three statements correct.

Solving path: Since a, b, c are in GP with a, c > 0, we have b² = ac. Statement 1: D = b² - 4ac = ac - 4ac = -3ac < 0. Roots are imaginary. Correct. Statement 3: Product of roots = c/a. Since b² = ac, c = b²/a, so c/a = b²/a². Correct. Statement 2: The roots are (-b ± i√(3ac))/(2a). Since √(ac) = |b|, roots become (-b ± i√3·|b|)/(2a). Their ratio is (-b + i√3|b|)/(-b - i√3|b|). Factoring out |b| (assuming b > 0, so |b| = b): ratio = (-1 + i√3)/(-1 - i√3) = e^{i·2π/3}/e^{-i·2π/3} which equals ω/ω² = ω^{-1}, or equivalently the ratio is 1:ω. Correct. All three correct.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →