Quadratic Equations for IBPS RRB Officer Scale I — Roots, Factorisation & Comparison

intermediate 18 min read

Concept

A quadratic equation is any equation of the form ax² + bx + c = 0, where a ≠ 0. The word "quadratic" comes from the Latin for "square" — the defining feature is that the highest power of the variable is 2.

Here is a grounded way to think about it: a linear equation gives you one unknown and one root. A quadratic gives you one unknown but two roots — because squaring a number destroys the sign information, so two different inputs (+3 and -3) can produce the same output (9). Every quadratic equation therefore has exactly two roots, though they may be equal to each other, or non-real (complex).

In IBPS RRB PO, quadratic equations appear in two distinct formats:

Format 1 — Direct solve. You get an equation like x² - 7x + 12 = 0 and must find the roots.

Format 2 — Relationship questions. You get something like "if α and β are roots of x² - 3x + 1 = 0, find α² + β²". This tests whether you can derive quantities from roots without actually computing the roots themselves.

Both formats rely on the same two weapons: Vieta's formulas (the sum-product relationships) and factorisation. Master those two, and the discriminant is just a supporting check.

Think of it this way: the equation ax² + bx + c = 0 is a container. The coefficients a, b, c are not random — they encode the roots. Vieta's formulas are the key that decodes them. The moment you see a quadratic, your first instinct should be: "What does b tell me about the sum, and what does c tell me about the product?"


Deep Dive

The Foundation: Vieta's Formulas

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

α+β=baandαβ=ca\alpha + \beta = \frac{-b}{a} \quad \text{and} \quad \alpha \cdot \beta = \frac{c}{a}

These are non-negotiable. Write them on your palm if you must. The logic behind them: if α and β are roots, then:

ax2+bx+c=a(xα)(xβ)=a[x2(α+β)x+αβ]ax^2 + bx + c = a(x - \alpha)(x - \beta) = a[x^2 - (\alpha + \beta)x + \alpha\beta]

Matching coefficients gives you Vieta's formulas directly.

Important sign trap: The sum formula is -b/a, not b/a. For x² - 7x + 12 = 0, b = -7, so sum = -(-7)/1 = 7. This sign error catches candidates every single time.

Factorisation: The Speed Method

For most IBPS RRB PO questions, the quadratic will factor cleanly. The approach:

Given x² + bx + c = 0 (with a = 1), find two numbers p and q such that:

Then the equation factors as (x - p)(x - q) = 0, giving roots p and q.

Example: x² - 4x + 3 = 0
You need two numbers that add to -4 and multiply to 3. Those are -1 and -3.
So: (x - 1)(x - 3) = 0, roots are 1 and 3.

When a ≠ 1, scale first. For 2x² - 8x + 6 = 0, factor out 2 to get 2(x² - 4x + 3) = 0, then solve x² - 4x + 3 = 0 as above.

The Discriminant: A Diagnostic Tool

D = b² - 4ac

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

In exam questions, the discriminant appears most often in "find k such that roots are equal" format. Set D = 0 and solve for k. That's it — don't overthink it.

Alpha-Beta Identity Questions

These are the "trap questions" because they look hard but are mechanical once you see the pattern. The two master identities:

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

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

From these, everything else follows. You almost never need to compute the actual values of α and β.

Example: x² - 3x + 1 = 0, find α² + β².
α + β = 3, αβ = 1.
α² + β² = (3)² - 2(1) = 9 - 2 = 7.
Done in under 10 seconds — no quadratic formula needed.

Constructing a Quadratic From Its Roots

If you know the roots, you can reverse-engineer the equation:

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

This is the "roots → equation" direction. In the exam, you might be given roots 2 and -3 and asked to identify the equation. Sum = -1, product = -6, so the equation is x² - (-1)x + (-6) = x² + x - 6 = 0.

Root Comparison (the "which is greater" format)

Some IBPS RRB PO questions give you two equations (one in x, one in y) and ask you to compare roots. The process:

  1. Solve both equations to get roots of x and roots of y.
  2. Compare all combinations.
  3. State the relationship: x > y, x < y, x ≥ y, x ≤ y, or "cannot be determined".

The "cannot be determined" option applies when the ranges overlap — for instance, if x ∈ \{1, 4\} and y ∈ \{2, 3\}, some values of x exceed y and some don't.


Memory Tricks & Shortcuts

patternVieta's Sign Rule: b Flips, c Stays

The sum of roots is -b/a — the sign of b flips. The product is c/a — no flip. A fast mnemonic: "Sum changes sign, Product is fine." For x² - 5x + 6 = 0: sum = +5 (sign flipped from -5), product = +6 (unchanged). Standard method: re-derive from formula (15s). This pattern: read coefficients directly (3s). The sign flip on sum is the #1 source of errors in this topic — catching it saves you half a mark per question.

patternSum-Product Scan Before Factoring

Before attempting any factorisation, compute target sum (-b/a) and target product (c/a) in your head. Then mentally scan factor pairs of the product and check which pair sums correctly. For x² - 8x + 15 = 0: product = 15, factor pairs are (1,15), (3,5). Sum target = 8. Pair (3,5) sums to 8 — roots are 3 and 5. Standard factorisation by trial: 30s. This scan: under 10s. It works because you narrow the search space using both conditions simultaneously rather than testing one at a time.

substitutionAlpha-Squared Identity: Always Start With (Sum)² - 2(Product)

For any question involving α² + β², α³ + β³, or (α - β)², the entry point is always the same: compute (α + β)² first, then subtract. α² + β² = (α + β)² - 2αβ. (α - β)² = (α + β)² - 4αβ. α³ + β³ = (α + β)³ - 3αβ(α + β). You never need the actual roots. Full quadratic formula route: 60s. Identity substitution: 10s. Learn the three identities above and you handle every alpha-beta question at this level.

eliminationEqual Roots Means D=0: Isolate k Immediately

When a question asks "for what value of k do roots become equal/real", set b² - 4ac = 0 directly. For x² + 2x + k = 0: 4 - 4k = 0, so k = 1. Eliminate all answer choices where k would make D > 0 or D < 0. Standard route: compute discriminant for each option (40s). Direct set-to-zero: 8s. This works because "equal roots" is a precise discriminant condition, not a fuzzy one — there is exactly one value of k.

substitutionReverse Construction: Sum and Product Are Your Builders

When asked to identify the quadratic with given roots, just write x² - (sum)x + (product) = 0. For roots 2 and -3: sum = -1, product = -6, equation = x² + x - 6 = 0. You don't need to expand (x-2)(x+3) at all. Expansion method: 20s with sign errors possible. Vieta reverse: 5s. Specifically useful for eliminating wrong options in multiple-choice — check only the x-coefficient sign (it equals -(sum)) and the constant term (it equals product).


Fast-Solving Framework

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

Step 1 — Identify the question type.

Step 2 — Factor or formula?

Step 3 — Sign check before writing the answer. Always verify: does root 1 × root 2 equal c/a? This 2-second check catches arithmetic errors without re-solving.

Step 4 — Root comparison (if two-equation format). Solve each equation, list all roots, compare. When ranges overlap, mark "cannot be determined" — don't guess.


Solved PYQs

Why this question: Tests the most basic Vieta's formula — sum of roots. This is free marks if you remember the sign rule.

Previous Year Questionपिछले वर्ष का प्रश्न
If x² - 7x + 12 = 0, then what is the sum of the roots?
यदि x² - 7x + 12 = 0 है, तो मूलों का योग क्या होगा?
  1. 7
  2. 12
  3. -7
  4. -12
  1. 7
  2. 12
  3. -7
  4. -12
Solutionसमाधान
For a quadratic equation ax² + bx + c = 0, the sum of roots = -b/a. Here a = 1, b = -7, so sum = -(-7)/1 = 7.
द्विघात समीकरण ax² + bx + c = 0 के लिए, मूलों का योग = -b/a होता है। यहाँ a = 1, b = -7, अतः योग = -(-7)/1 = 7।

Solving path: Identify a = 1, b = -7. Sum of roots = -b/a = -(-7)/1 = 7. The equation also factors as (x-3)(x-4) = 0, confirming roots 3 and 4, sum = 7. Either route confirms option A.


Why this question: Tests factorisation with a ≠ 1. The key move is factoring out 2 first to simplify.

Previous Year Questionपिछले वर्ष का प्रश्न
What are the roots of the equation 2x² - 8x + 6 = 0?
समीकरण 2x² - 8x + 6 = 0 के मूल क्या हैं?
  1. 1, 3
  2. 2, 3
  3. 1, 2
  4. 2, 4
  1. 1, 3
  2. 2, 3
  3. 1, 2
  4. 2, 4
Solutionसमाधान
Using factorization: 2x² - 8x + 6 = 2(x² - 4x + 3) = 2(x - 1)(x - 3) = 0. Therefore, x = 1 or x = 3.
गुणनखंड विधि से: 2x² - 8x + 6 = 2(x² - 4x + 3) = 2(x - 1)(x - 3) = 0। अतः x = 1 या x = 3।

Solving path: Factor out 2: 2(x² - 4x + 3) = 0. Now solve x² - 4x + 3 = 0. Need two numbers that multiply to 3 and add to -4: those are -1 and -3. So (x-1)(x-3) = 0, giving x = 1 or x = 3. Answer: option A.


Why this question: Tests Vieta's product formula. One-line solution if you know c/a.

Previous Year Questionपिछले वर्ष का प्रश्न
If the product of roots of x² - 5x + k = 0 is 6, then the value of k is:
यदि x² - 5x + k = 0 के मूलों का गुणनफल 6 है, तो k का मान होगा:
  1. 6
  2. 5
  3. -6
  4. -5
  1. 6
  2. 5
  3. -6
  4. -5
Solutionसमाधान
For quadratic equation ax² + bx + c = 0, product of roots = c/a. Here a = 1, product = 6, so c = k = 6.
द्विघात समीकरण ax² + bx + c = 0 के लिए, मूलों का गुणनफल = c/a होता है। यहाँ a = 1, गुणनफल = 6, अतः c = k = 6।

Solving path: Product of roots = c/a = k/1 = k. Given product = 6, so k = 6. Answer: option A. Took under 5 seconds — don't reach for the quadratic formula here.


Why this question: The classic alpha-beta identity question. This format appears regularly and is designed to look harder than it is.

Previous Year Questionपिछले वर्ष का प्रश्न
If α and β are roots of x² - 3x + 1 = 0, then α² + β² equals:
यदि α और β समीकरण x² - 3x + 1 = 0 के मूल हैं, तो α² + β² का मान क्या होगा?
  1. 7
  2. 9
  3. 5
  4. 11
  1. 7
  2. 9
  3. 5
  4. 11
Solutionसमाधान
We know α² + β² = (α + β)² - 2αβ. Here α + β = 3, αβ = 1. So α² + β² = 9 - 2(1) = 7.
हम जानते हैं α² + β² = (α + β)² - 2αβ। यहाँ α + β = 3, αβ = 1। अतः α² + β² = 9 - 2(1) = 7।

Solving path: From x² - 3x + 1 = 0: α + β = 3, αβ = 1. Apply the identity: α² + β² = (α + β)² - 2αβ = 9 - 2(1) = 7. Answer: option A. Note — the actual roots involve irrational numbers. The identity bypasses that entirely.


Why this question: A two-step Vieta problem that looks like it needs more information than it does. Tests whether you connect sum-of-squares to the identity.

Previous Year Questionपिछले वर्ष का प्रश्न
If the sum of squares of roots of x² - px + q = 0 is 10, and sum of roots is 4, then q is:
यदि समीकरण x² - px + q = 0 के मूलों के वर्गों का योग 10 है और मूलों का योग 4 है, तो q का मान क्या है?
  1. 3
  2. 4
  3. 5
  4. 6
  1. 3
  2. 4
  3. 5
  4. 6
Solutionसमाधान
Sum of roots = p = 4. Sum of squares = p² - 2q = 10. Substituting: 16 - 2q = 10, so 2q = 6, hence q = 3.
मूलों का योग = p = 4। वर्गों का योग = p² - 2q = 10। प्रतिस्थापित करने पर: 16 - 2q = 10, अतः 2q = 6, इसलिए q = 3।

Solving path: Sum of roots = p = 4 (given directly). α² + β² = p² - 2q = 10. Substitute: 16 - 2q = 10, so 2q = 6, q = 3. Answer: option A.


Why this question: Discriminant condition for equal roots. Tests whether you can set D = 0 and isolate k.

Previous Year Questionपिछले वर्ष का प्रश्न
For what value of k does the equation x² + 2x + k = 0 have real and equal roots?
k के किस मान के लिए समीकरण x² + 2x + k = 0 के मूल वास्तविक और बराबर होंगे?
  1. 1
  2. 2
  3. 0
  4. -1
  1. 1
  2. 2
  3. 0
  4. -1
Solutionसमाधान
For real and equal roots, discriminant = 0. So b² - 4ac = 0. Here: 4 - 4(1)(k) = 0, which gives 4 - 4k = 0, so k = 1.
वास्तविक और समान मूलों के लिए, विविक्तकर = 0। अतः b² - 4ac = 0। यहाँ: 4 - 4(1)(k) = 0, जो 4 - 4k = 0 देता है, अतः k = 1।

Solving path: For equal roots, D = b² - 4ac = 0. Here a = 1, b = 2, c = k. So 4 - 4k = 0, giving k = 1. Answer: option A. Verify: x² + 2x + 1 = (x+1)² = 0 — yes, equal root at x = -1.


Why this question: Reverse Vieta — constructing an equation from its roots. Tests the formula x² - (sum)x + (product) = 0.

Previous Year Questionपिछले वर्ष का प्रश्न
The quadratic equation whose roots are 2 and -3 is:
वह द्विघात समीकरण जिसके मूल 2 और -3 हैं, है:
  1. x² + x - 6 = 0
  2. x² - x - 6 = 0
  3. x² + x + 6 = 0
  4. x² - x + 6 = 0
  1. x² + x - 6 = 0
  2. x² - x - 6 = 0
  3. x² + x + 6 = 0
  4. x² - x + 6 = 0
Solutionसमाधान
If roots are α and β, equation is x² - (α + β)x + αβ = 0. Here: x² - (2 + (-3))x + (2)(-3) = x² + x - 6 = 0.
यदि मूल α और β हैं, तो समीकरण x² - (α + β)x + αβ = 0 है। यहाँ: x² - (2 + (-3))x + (2)(-3) = x² + x - 6 = 0।

Solving path: Roots are 2 and -3. Sum = 2 + (-3) = -1. Product = 2 × (-3) = -6. Equation: x² - (-1)x + (-6) = x² + x - 6 = 0. Answer: option A. The sign of the middle term is the trap — -sum becomes +1x here.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →