Marks Calc
Back to Blog
Updated
4 min read
Quadratic Formula Calculator, Discriminant, Root Types, Complex Roots, Algebra

Discriminant Calculator - Predict Root Types Instantly

Discriminant Calculator - Predict Root Types Instantly

You're about to solve a quadratic. Before you touch the formula, one number tells you everything about what kind of answer you'll get: the discriminant.

Here's how to use it as your early-warning system.

What Is the Discriminant?

For ax² + bx + c = 0, the discriminant is:

Δ = b² − 4ac

It's the expression under the square root in the quadratic formula. And it dictates the nature of your solutions.

The Three Cases

Case 1: Δ > 0 — Two Distinct Real Roots

The parabola crosses the x-axis at two different points.

Example: 3x² − 10x + 3 = 0

  • Δ = 100 − 36 = 64 > 0
  • √64 = 8 (perfect square → rational roots)
  • x = (10 ± 8)/6 → x₁ = 3, x₂ = 1/3

Sub-case: If Δ is a perfect square, roots are rational (factoring was possible). If not, roots are irrational (you need the formula).

| Δ Type | Root Type | Example | |--------|-----------|---------| | Perfect square (1, 4, 9, 16...) | Rational | Δ = 25 → roots are fractions | | Not a perfect square (2, 3, 5, 7...) | Irrational | Δ = 7 → roots have √7 |

Case 2: Δ = 0 — One Repeated Root

The parabola touches the x-axis at exactly one point (the vertex sits on the x-axis).

Example: x² − 4x + 4 = 0

  • Δ = 16 − 16 = 0
  • x = 4/2 = 2 (repeated)
  • The parabola just "kisses" the x-axis at x = 2

Case 3: Δ < 0 — Two Complex Roots

The parabola never touches the x-axis. It floats entirely above or below.

Example: x² + x + 1 = 0

  • Δ = 1 − 4 = −3
  • x = (−1 ± i√3)/2
  • Complex conjugate roots: −0.5 ± 0.866i

Quick Discriminant Table

| Equation | a | b | c | Δ | Root Type | |----------|---|---|---|---|-----------| | x² − 5x + 6 | 1 | −5 | 6 | 1 | Two rational | | 2x² + 3x − 2 | 2 | 3 | −2 | 25 | Two rational | | x² − 2x − 1 | 1 | −2 | −1 | 8 | Two irrational | | x² + 4x + 4 | 1 | 4 | 4 | 0 | One repeated | | x² + 1 | 1 | 0 | 1 | −4 | Two complex |

How the Discriminant Relates to the Graph

| Δ Value | X-Intercepts | Vertex Position | |---------|-------------|----------------| | Δ > 0 | 2 intercepts | Below x-axis (if a > 0) or above (if a < 0) | | Δ = 0 | 1 intercept (tangent) | On the x-axis | | Δ < 0 | 0 intercepts | Above x-axis (if a > 0) or below (if a < 0) |

The discriminant tells you the vertical position of the vertex relative to the x-axis.

Using the Discriminant to Check Your Work

If your calculated roots don't match what the discriminant predicts, something's wrong:

  • Δ > 0 but you got complex roots → sign error in discriminant
  • Δ = 0 but you got two different roots → arithmetic error
  • Δ < 0 but you got real roots → you forgot the "i" in √(negative)

The Trench Truth: On multiple-choice exams, compute the discriminant before solving. If Δ < 0, immediately eliminate any answer with only real numbers. If Δ is a perfect square, eliminate answers with radicals. This 10-second check can eliminate 2-3 wrong answers instantly.

Try our quadratic formula calculator — it computes the discriminant automatically and shows you the root type before solving.

Related: Derivative Calculator · Square Root Calculator · Integral Calculator

Discussion

Loading comments...