What the discriminant actually tells you
Before touching the quadratic formula, it's worth computing Δ by itself. Say you're solving x² − 5x + 6 = 0: here a=1, b=−5, c=6, so Δ = (−5)² − 4(1)(6) = 25 − 24 = 1. Since Δ is a perfect square (1² = 1), you already know the roots will be clean rational numbers — and indeed they factor to (x−2)(x−3)=0, giving x=2 and x=3.
Change the equation slightly to x² − 3x + 1 = 0 and Δ = 9 − 4 = 5. Five isn't a perfect square, so no amount of integer-guessing will factor this one — the roots are real but irrational, and you need the full quadratic formula to express them exactly. Change it again to x² − 2x + 5 = 0 and Δ = 4 − 20 = −16, which is negative, so the roots are a complex pair and the graph never touches the x-axis at all.
| Equation (a, b, c) | Δ = b²−4ac | Root type |
|---|---|---|
| 1, −5, 6 | 1 | Two rational real roots |
| 1, −3, 1 | 5 | Two irrational real roots |
| 1, 6, 9 | 0 | One repeated real root |
| 1, −2, 5 | −16 | Two complex conjugate roots |
Reading exact (radical) answers vs. decimals
For the equation x² − 3x − 2 = 0, a=1, b=−3, c=−2, so Δ = 9 + 8 = 17. Applying the quadratic formula gives x = (3 ± √17) / 2. Since 17 has no square factors, √17 can't be simplified further, so (3 ± √17)/2 is already the fully reduced exact form — and it's typically what an instructor wants written down, alongside (or instead of) the decimal approximation (roughly 3.56 and −0.56).
ToolPico's quadratic equation solver shows both: the exact radical/fraction form and a decimal rounded to your chosen precision (2, 4, or 6 places), so you can match whichever format your assignment expects. It also accepts a free-form equation like x² = 5x − 6 or 2x² + 3x = 2 directly and converts it to a, b, c automatically, so you don't have to rearrange terms by hand first.
Finding the vertex without re-deriving anything
For example, with a=1, b=−4, c=1 (as in the tool's default vertex example), x₀ = −(−4)/(2·1) = 2, and y₀ = 1 − 16/4 = 1 − 4 = −3. So the vertex sits at (2, −3), and since a=1>0, that's the lowest point on the curve — this is also exactly the point you land on if you complete the square first, since a(x−x₀)²+y₀ is just a rearranged version of the same equation.
This matters beyond pure algebra homework: the vertex form tells you the minimum cost in a break-even model, the peak height of a projectile, or the maximum area for a fixed perimeter — anywhere a quantity is modeled by a quadratic relationship.
Checking your work with Vieta's formulas
Back to x² − 5x + 6 = 0 with roots x1=2, x2=3: the sum 2+3=5 should equal −b/a = −(−5)/1 = 5 (checks out), and the product 2·3=6 should equal c/a = 6/1 = 6 (also checks out). This two-line check catches sign errors and arithmetic mistakes almost instantly, without redoing the whole quadratic formula from scratch.
Frequently asked questions
Why won't my quadratic factor into nice integers?
How do I know if my quadratic has real or complex roots?
What does it mean when the discriminant is negative?
How can I check that my computed roots are correct?
Do I need to convert my equation to ax²+bx+c=0 form myself?
Skip the manual algebra — enter your coefficients (or paste the raw equation) and get the discriminant, exact roots, vertex, and a parabola graph instantly.
Try the free Quadratic Equation Solver →