Nature of roots — discriminant based classification with graphical interpretation

medium CBSE JEE-MAIN 4 min read

Question

How do we determine the nature of roots of a quadratic equation using the discriminant, and what does each case look like graphically?

Solution — Step by Step

For the quadratic equation ax2+bx+c=0ax^2 + bx + c = 0 (where a0a \neq 0):

D=b24acD = b^2 - 4ac

The discriminant DD completely determines the nature of the roots. We do not need to actually solve the equation.

Case 1: D>0D > 0 — Two distinct real roots

x=b±D2ax = \frac{-b \pm \sqrt{D}}{2a}

The two roots are different real numbers. Graphically, the parabola crosses the x-axis at two distinct points.

Subcase: If DD is a perfect square AND aa, bb, cc are rational, then the roots are rational. Otherwise, they are irrational (involving D\sqrt{D}).

Case 2: D=0D = 0 — Two equal real roots (repeated root)

x=b2ax = \frac{-b}{2a}

Both roots are the same. Graphically, the parabola just touches the x-axis at one point (the vertex).

Case 3: D<0D < 0 — No real roots

The square root of a negative number is not real. The equation has no real solutions. Graphically, the parabola does not intersect the x-axis at all — it floats entirely above (if a>0a > 0) or below (if a<0a < 0).

Find the nature of roots of 2x25x+3=02x^2 - 5x + 3 = 0.

a=2a = 2, b=5b = -5, c=3c = 3

D=(5)24(2)(3)=2524=1D = (-5)^2 - 4(2)(3) = 25 - 24 = 1

Since D=1>0D = 1 > 0 and DD is a perfect square with rational coefficients, the roots are two distinct rational roots.

Actual roots: x=5±14x = \frac{5 \pm 1}{4}, giving x=32x = \frac{3}{2} and x=1x = 1.

Example: For what values of kk does x2+kx+9=0x^2 + kx + 9 = 0 have equal roots?

Equal roots means D=0D = 0:

k24(1)(9)=0k^2 - 4(1)(9) = 0 k2=36k^2 = 36 k=±6k = \pm 6

This type of “find kk” question is extremely common in CBSE 10th and JEE Main.

flowchart TD
    A["ax2 + bx + c = 0"] --> B["Calculate D = b2 minus 4ac"]
    B --> C{"Value of D?"}
    C -->|"D greater than 0"| D["Two distinct real roots"]
    C -->|"D = 0"| E["Two equal roots: x = minus b over 2a"]
    C -->|"D less than 0"| F["No real roots"]
    D --> G{"Is D a perfect square?"}
    G -->|"Yes"| H["Rational roots"]
    G -->|"No"| I["Irrational roots"]

Why This Works

The quadratic formula has D\sqrt{D} in it. When D>0D > 0, the square root is a positive real number, giving two different values (b+D-b + \sqrt{D} and bD-b - \sqrt{D}). When D=0D = 0, both values become b/(2a)-b/(2a). When D<0D < 0, we are taking the square root of a negative number, which has no real value — hence no real roots.

The discriminant is like a traffic signal for quadratic equations: it tells you what to expect without solving.

Alternative Method

For JEE-level problems, combine the discriminant with Vieta’s formulas (sum and product of roots):

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

If the question asks about the nature of roots in terms of positive/negative or about the signs of roots, Vieta’s formulas are often more useful than the discriminant alone. For example, if D>0D > 0 and c/a>0c/a > 0 and b/a>0-b/a > 0, both roots are positive.

Common Mistake

Students sometimes compute D=b2+4acD = b^2 + 4ac (adding instead of subtracting). The discriminant is b24acb^2 - 4ac, always with a minus sign. A wrong sign flips the conclusion entirely — a negative discriminant becomes positive, and you would incorrectly claim real roots exist when they do not. Write the formula carefully every time, especially under exam pressure.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →