Quadratic Equations for IBPS PO — Roots, Discriminant, and Vieta's Shortcuts

intermediate 18 min read

Concept

A quadratic equation is any equation of the form ax² + bx + c = 0, where a ≠ 0, and a, b, c are real numbers. The word "quadratic" comes from "quadratus" — square — because the highest power of the unknown is 2.

Here is the key mental model: a quadratic equation has at most two solutions, called roots (or zeros). These roots are the x-values where the parabola y = ax² + bx + c crosses the x-axis. When the parabola touches the axis at exactly one point, the roots are equal. When it never crosses, the roots are complex (no real solutions).

Think of it this way. You have a balance scale. The equation x² - 5x + 6 = 0 is asking: "What two values of x keep the scale at zero?" The answer is x = 2 and x = 3, because both satisfy the equation. These two roots are not random — they have a structured relationship with the coefficients a, b, c through what are called Vieta's formulas.

Vieta's formulas are the backbone of IBPS PO quadratic questions. For ax² + bx + c = 0 with roots α and β:

For a monic equation (where a = 1), this simplifies beautifully: sum of roots = -b, product of roots = c. Most IBPS PO questions hand you a monic equation, so you will use this simplified form constantly.

The analogy worth burning in: b and c in x² + bx + c are the "fingerprints" of the roots. The sum left a fingerprint at -b, and the product left one at c. Every manipulation question — finding α² + β², forming new equations, computing α³ + β³ — is just forensics on those two fingerprints.


Deep Dive

Standard Form and the Three Solving Methods

Given ax² + bx + c = 0:

Method 1: Factorization (fastest for IBPS PO)

Split the middle term bx into two terms whose coefficients multiply to ac and add to b. For x² - 5x + 6 = 0: you need two numbers that multiply to 6 and add to -5. Those are -2 and -3. So: x² - 2x - 3x + 6 = x(x - 2) - 3(x - 2) = (x - 2)(x - 3) = 0, giving x = 2 or x = 3.

Method 2: Quadratic Formula (last resort)

x = (-b ± √(b² - 4ac)) / 2a

Use this only when factorization fails — typically when roots are irrational (involving surds). For IBPS PO, clean integer roots dominate, so factorization will handle 80% of questions.

Method 3: Sum-Product direct read (fastest of all, when applicable)

When you see x² - Sx + P = 0 with a monic equation, you can sometimes spot the roots by asking: "what two numbers add to S and multiply to P?" For x² - 8x + 15 = 0, you want numbers adding to 8 and multiplying to 15 — that's 3 and 5. Done. No paper needed.


The Discriminant: Nature of Roots

The discriminant D = b² - 4ac tells you what kind of roots to expect before you solve.

| D value | Nature of roots | |---|---| | D > 0 | Two distinct real roots | | D = 0 | Two equal real roots (repeated root) | | D < 0 | No real roots (complex conjugates) |

For equal roots: set D = 0, which gives you b² = 4ac. This is a direct formula for "find k such that equal roots exist" questions.


Vieta's Formulas — The Real Exam Engine

Once you extract α + β and αβ from the equation, you can compute almost anything using algebraic identities:

Look — every one of these expressions reduces to functions of just (α + β) and αβ. You never need to find the individual roots to answer these questions. That is the leverage point.


Forming a New Quadratic from Given Roots

The reverse of Vieta: if you know the two roots r₁ and r₂, the equation is:

x² - (r₁ + r₂)x + r₁r₂ = 0

Shorthand: x² - (sum)x + (product) = 0.

When roots involve surds like 2 + √3 and 2 - √3, the sum is 4 and the product is (2)² - (√3)² = 4 - 3 = 1, giving x² - 4x + 1 = 0. The difference of squares identity wipes out the surd cleanly.


Root Transformation (Shift, Scale, Invert)

IBPS PO loves the "form a new equation whose roots are [transformation of original roots]" pattern. The key transformations:

Shift by k: If original roots are α, β, new roots are α + k, β + k.

Scale by k: New roots are kα, kβ.

Reciprocals: New roots are 1/α, 1/β.

The substitution shortcuts let you write the new equation in one step without computing the new sum and product separately.


Comparing Roots: The IBPS PO Specific Pattern

Many IBPS PO sets give you two separate quadratics — one in x, one in y — and ask you to compare. The comparison types are: x > y, x < y, x ≥ y, x ≤ y, or cannot be determined.

Process:

  1. Solve both equations to find all root values.
  2. List roots of the first equation, roots of the second equation.
  3. Compare every combination (if each has 2 roots, you have 4 pairs to check).
  4. If all comparisons point the same direction, that is your answer. If they conflict, the answer is "cannot be determined."

This is mechanical — no special formula, just accurate factorization followed by systematic comparison.


Memory Tricks & Shortcuts

patternSum-Product Scan

Before picking up the pen, scan a monic quadratic for integer roots by asking: "two numbers adding to |b| and multiplying to |c|?" For x² - 9x + 20 = 0, scan pairs multiplying to 20: (1,20), (2,10), (4,5). Which adds to 9? That's (4,5). Roots are 4 and 5. Standard method using middle-term split: 6 steps. This scan: 1 step, under 5 seconds.

patternSurd Product via Difference of Squares

When roots are conjugate surds (a + √b) and (a - √b), their product is always a² - b — no expansion needed. For roots 3 + √5 and 3 - √5: product = 9 - 5 = 4. Sum = 6. Equation: x² - 6x + 4 = 0. Expanding (3 + √5)(3 - √5) the long way takes 4 sub-steps. Difference of squares: 1 sub-step.

substitutionEqual Roots Condition — Direct Plug

For "find k for equal roots" questions on x² + kx + c = 0, the condition D = 0 gives k² = 4c, so k = ±2√c. For x² + kx + 9 = 0: k = ±2√9 = ±6. No need to write out the full discriminant formula. Standard discriminant expansion: 4 steps. Direct plug: 2 steps.

patternα³ + β³ Identity Chain

Memorize this chain: you always have just two facts — S = α + β and P = αβ. Then α³ + β³ = S³ - 3PS. For α + β = 6, αβ = 8: 6³ - 3(8)(6) = 216 - 144 = 72. If you try to find α and β individually first (roots of x² - 6x + 8 = 0 are 2 and 4), then cube each and add: that's 5 steps. The identity chain: 2 steps.

patternReciprocal Equation — Coefficient Swap

If the new roots are reciprocals of the original roots, just swap the leading coefficient and the constant. Original: 3x² - 7x + 2 = 0. Reciprocal roots equation: 2x² - 7x + 3 = 0. Done. Deriving via 1/α + 1/β = (α + β)/(αβ) and (1/α)(1/β) = 1/(αβ) then forming the equation: 5 steps. Coefficient swap: 1 step.


Fast-Solving Framework

Step 1 — Classify the question type:

Step 2 — Never compute what Vieta gives for free. If the question asks for S or P directly, read it off the coefficients. Do not find the roots.

Step 3 — Check sign discipline. The single most common error is sign flip in α + β = -b/a. For x² - 7x + 10 = 0, b = -7, so α + β = -(-7)/1 = 7. If you misread as -7, every downstream calculation is wrong.


Solved PYQs

Why this question: Tests whether you use the product-of-roots shortcut when one root is known, instead of substituting back and solving a linear equation for the parameter.

Previous Year Questionपिछले वर्ष का प्रश्न
If one root of x² - px + 12 = 0 is 3, then find the other root and the value of p.
यदि x² - px + 12 = 0 का एक मूल 3 है, तो दूसरा मूल और p का मान ज्ञात कीजिए।
  1. 4, 7
  2. 4, 8
  3. 6, 9
  4. 2, 5
  1. 4, 7
  2. 4, 8
  3. 6, 9
  4. 2, 5
Solutionसमाधान
If one root is 3, and the product of roots = 12, then other root = 12/3 = 4. Sum of roots = 3 + 4 = 7. Since sum of roots = p, therefore p = 7. The other root is 4 and p = 7.
यदि एक मूल 3 है और मूलों का गुणनफल = 12, तो दूसरा मूल = 12/3 = 4। मूलों का योग = 3 + 4 = 7। चूंकि मूलों का योग = p, इसलिए p = 7। दूसरा मूल 4 है और p = 7।

Solving path: One root is 3. Product of roots = c/a = 12/1 = 12. Other root = 12/3 = 4. Sum of roots = 3 + 4 = 7 = p. Answer: other root is 4, p = 7.


Why this question: Tests the α/β + β/α pattern — a two-layer application of Vieta that catches students who try to find individual roots.

Previous Year Questionपिछले वर्ष का प्रश्न
If p and q are roots of x² - 8x + 15 = 0, find the value of p/q + q/p.
यदि p और q, समीकरण x² - 8x + 15 = 0 के मूल हैं, तो p/q + q/p का मान ज्ञात कीजिए।
  1. 34/15
  2. 38/15
  3. 42/15
  4. 46/15
  1. 34/15
  2. 38/15
  3. 42/15
  4. 46/15
Solutionसमाधान
From x² - 8x + 15 = 0, p + q = 8 and pq = 15. We need p/q + q/p = (p² + q²)/(pq). Using p² + q² = (p + q)² - 2pq = 64 - 30 = 34. Therefore p/q + q/p = 34/15.
x² - 8x + 15 = 0 से p + q = 8 और pq = 15। हमें चाहिए p/q + q/p = (p² + q²)/(pq)। p² + q² = (p + q)² - 2pq = 64 - 30 = 34 का उपयोग करके। इसलिए p/q + q/p = 34/15।

Solving path: Read off p + q = 8, pq = 15. Target: (p² + q²)/(pq). Compute numerator: (p + q)² - 2pq = 64 - 30 = 34. Divide by pq: 34/15. No need to find p and q individually.


Why this question: The "shift roots by a constant" transformation is the most common new-equation question type in IBPS PO.

Previous Year Questionपिछले वर्ष का प्रश्न
If α, β are roots of x² - 7x + 10 = 0, find the equation whose roots are α + 2 and β + 2.
यदि α, β समीकरण x² - 7x + 10 = 0 के मूल हैं, तो वह समीकरण ज्ञात कीजिए जिसके मूल α + 2 और β + 2 हों।
  1. x² - 11x + 28 = 0
  2. x² - 11x + 24 = 0
  3. x² - 9x + 18 = 0
  4. x² - 13x + 36 = 0
  1. x² - 11x + 28 = 0
  2. x² - 11x + 24 = 0
  3. x² - 9x + 18 = 0
  4. x² - 13x + 36 = 0
Solutionसमाधान
From x² - 7x + 10 = 0, α + β = 7 and αβ = 10. New roots are α + 2 and β + 2. Sum of new roots = (α + 2) + (β + 2) = α + β + 4 = 7 + 4 = 11. Product of new roots = (α + 2)(β + 2) = αβ + 2(α + β) + 4 = 10 + 2(7) + 4 = 28. Required equation: x² - 11x + 28 = 0.
x² - 7x + 10 = 0 से α + β = 7 और αβ = 10। नए मूल α + 2 और β + 2 हैं। नए मूलों का योग = (α + 2) + (β + 2) = α + β + 4 = 11। नए मूलों का गुणनफल = (α + 2)(β + 2) = αβ + 2(α + β) + 4 = 28। अभीष्ट समीकरण: x² - 11x + 28 = 0।

Solving path: From x² - 7x + 10 = 0: α + β = 7, αβ = 10. New roots: α + 2 and β + 2. New sum = 7 + 4 = 11. New product = αβ + 2(α + β) + 4 = 10 + 14 + 4 = 28. New equation: x² - 11x + 28 = 0.


Why this question: The equal-roots condition (D = 0) in parametric form is a staple across bank exams.

Previous Year Questionपिछले वर्ष का प्रश्न
For what value of k will the equation x² + kx + 9 = 0 have equal roots?
k के किस मान के लिए समीकरण x² + kx + 9 = 0 के मूल बराबर होंगे?
  1. ±3
  2. ±6
  3. ±9
  4. ±12
  1. ±3
  2. ±6
  3. ±9
  4. ±12
Solutionसमाधान
For equal roots, discriminant = 0. Here a = 1, b = k, c = 9. So k² - 4(1)(9) = 0, which gives k² = 36, therefore k = ±6.
समान मूलों के लिए, विविक्तकर = 0। यहाँ a = 1, b = k, c = 9। अतः k² - 4(1)(9) = 0, जिससे k² = 36 मिलता है, इसलिए k = ±6।

Solving path: Equal roots require D = 0. Here a = 1, b = k, c = 9. So k² - 4(1)(9) = 0k² = 36k = ±6.


Why this question: α³ + β³ forces you to use the cubic sum identity, which collapses a hard computation into two arithmetic steps.

Previous Year Questionपिछले वर्ष का प्रश्न
If α and β are roots of x² - 6x + 8 = 0, find the value of α³ + β³.
यदि α और β समीकरण x² - 6x + 8 = 0 के मूल हैं, तो α³ + β³ का मान ज्ञात कीजिए।
  1. 72
  2. 76
  3. 80
  4. 84
  1. 72
  2. 76
  3. 80
  4. 84
Solutionसमाधान
From x² - 6x + 8 = 0, α + β = 6 and αβ = 8. We know α³ + β³ = (α + β)³ - 3αβ(α + β) = 6³ - 3(8)(6) = 216 - 144 = 72.
x² - 6x + 8 = 0 से α + β = 6 और αβ = 8। हम जानते हैं कि α³ + β³ = (α + β)³ - 3αβ(α + β) = 6³ - 3(8)(6) = 216 - 144 = 72।

Solving path: α + β = 6, αβ = 8. Apply α³ + β³ = (α + β)³ - 3αβ(α + β) = 216 - 3(8)(6) = 216 - 144 = 72.


Why this question: Straight factorization — the baseline skill everything else builds on.

Previous Year Questionपिछले वर्ष का प्रश्न
Solve: x² - 5x + 6 = 0
हल कीजिए: x² - 5x + 6 = 0
  1. x = 2, 3
  2. x = 1, 6
  3. x = -2, -3
  4. x = 2, 4
  1. x = 2, 3
  2. x = 1, 6
  3. x = -2, -3
  4. x = 2, 4
Solutionसमाधान
Using factorization: x² - 5x + 6 = (x - 2)(x - 3) = 0. Therefore x = 2 or x = 3. We can verify: for x = 2: 4 - 10 + 6 = 0 ✓, for x = 3: 9 - 15 + 6 = 0 ✓
गुणनखंडन का उपयोग करके: x² - 5x + 6 = (x - 2)(x - 3) = 0। इसलिए x = 2 या x = 3। सत्यापन: x = 2 के लिए: 4 - 10 + 6 = 0 ✓, x = 3 के लिए: 9 - 15 + 6 = 0 ✓

Solving path: Need two numbers multiplying to 6 and adding to -5: that is -2 and -3. So (x - 2)(x - 3) = 0, giving x = 2 or x = 3.


Why this question: Pure discriminant calculation — tests sign handling with a negative b.

Previous Year Questionपिछले वर्ष का प्रश्न
Find the discriminant of the quadratic equation 3x² - 4x + 1 = 0.
द्विघात समीकरण 3x² - 4x + 1 = 0 का विविक्तकर (discriminant) ज्ञात कीजिए।
  1. 4
  2. 8
  3. 12
  4. 16
  1. 4
  2. 8
  3. 12
  4. 16
Solutionसमाधान
For quadratic equation ax² + bx + c = 0, discriminant = b² - 4ac. Here a = 3, b = -4, c = 1. Discriminant = (-4)² - 4(3)(1) = 16 - 12 = 4.
द्विघात समीकरण ax² + bx + c = 0 के लिए, विविक्तकर = b² - 4ac। यहाँ a = 3, b = -4, c = 1। विविक्तकर = (-4)² - 4(3)(1) = 16 - 12 = 4।

Solving path: a = 3, b = -4, c = 1. D = (-4)² - 4(3)(1) = 16 - 12 = 4. The negative sign on b does not matter once you square it.


Why this question: Forming an equation from conjugate surd roots tests whether you use the difference-of-squares shortcut for the product.

Previous Year Questionपिछले वर्ष का प्रश्न
The quadratic equation whose roots are 2 + √3 and 2 - √3 is:
वह द्विघात समीकरण कौन सी है जिसके मूल 2 + √3 और 2 - √3 हैं?
  1. x² - 4x + 1 = 0
  2. x² - 4x - 1 = 0
  3. x² + 4x + 1 = 0
  4. x² + 4x - 1 = 0
  1. x² - 4x + 1 = 0
  2. x² - 4x - 1 = 0
  3. x² + 4x + 1 = 0
  4. x² + 4x - 1 = 0
Solutionसमाधान
Sum of roots = (2 + √3) + (2 - √3) = 4. Product of roots = (2 + √3)(2 - √3) = 4 - 3 = 1. Required equation: x² - (sum)x + product = x² - 4x + 1 = 0.
मूलों का योग = (2 + √3) + (2 - √3) = 4। मूलों का गुणनफल = (2 + √3)(2 - √3) = 4 - 3 = 1। अभीष्ट समीकरण: x² - (योग)x + गुणनफल = x² - 4x + 1 = 0।

Solving path: Sum = (2 + √3) + (2 - √3) = 4. Product = (2)² - (√3)² = 4 - 3 = 1. Equation: x² - 4x + 1 = 0.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →