🧰 ToolPicoAll Tools →
HomeBlog › Why Won't My Quadratic Factor?

Why Won't My Quadratic Factor? Reading the Discriminant, Roots & Vertex

If you've plugged numbers into ax²+bx+c=0 and can't find two nice integers that multiply and add up right, the problem usually isn't your algebra — it's that the equation was never meant to factor cleanly. Here's how to tell the difference, and how to get an exact answer either way.

In this guide

What the discriminant actually tells you

Quick answerThe discriminant Δ = b² − 4ac is the value under the square root in the quadratic formula. Its sign alone tells you the entire shape of the answer before you solve anything: positive means two distinct real roots, zero means one repeated root, and negative means two complex roots.

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²−4acRoot type
1, −5, 61Two rational real roots
1, −3, 15Two irrational real roots
1, 6, 90One repeated real root
1, −2, 5−16Two complex conjugate roots

Reading exact (radical) answers vs. decimals

Quick answerWhen Δ isn't a perfect square, the correct "exact" answer is a simplified radical like (3±√17)/2, not a rounded decimal. Many homework and test answer keys expect this radical form specifically, even though the decimal approximation is mathematically equivalent.

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

Quick answerThe vertex of y=ax²+bx+c sits at x₀ = −b/2a, with y₀ = c − b²/4a. If a is positive, that point is the parabola's minimum; if a is negative, it's the maximum.

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

Quick answerVieta's formulas say the sum of the roots equals −b/a and the product equals c/a. Plugging your computed roots into both should match — if either fails, you made an arithmetic slip somewhere upstream.

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.

Vieta's formulas also run in reverse: if you already know two roots you want (say, building a practice problem with roots 2 and 3), you can construct the corresponding equation directly — this is exactly what the "Equation from Roots" mode on the solver does, including support for complex conjugate root pairs.

Frequently asked questions

Why won't my quadratic factor into nice integers?
A quadratic only factors into whole-number roots when its discriminant Δ=b²−4ac is a perfect square. If Δ is positive but not a perfect square (like 17), the roots are real but irrational, and the equation must be solved with the quadratic formula in radical form, e.g. x=(3±√17)/2, instead of simple factoring.
How do I know if my quadratic has real or complex roots?
Calculate the discriminant Δ=b²−4ac. If Δ is positive, there are two distinct real roots. If Δ equals zero, there is exactly one repeated real root. If Δ is negative, there are no real roots — the two roots are complex conjugates written as p+qi and p−qi.
What does it mean when the discriminant is negative?
A negative discriminant means the parabola y=ax²+bx+c never crosses the x-axis. If a is positive the whole parabola sits above the x-axis, and if a is negative it sits entirely below it. The equation still has two solutions, but they are complex numbers, not real numbers.
How can I check that my computed roots are correct?
Use Vieta's formulas: for ax²+bx+c=0, the sum of the roots should equal −b/a and the product of the roots should equal c/a. Plug your two computed roots into both checks — if either doesn't match, there is an arithmetic error somewhere in the quadratic formula application.
Do I need to convert my equation to ax²+bx+c=0 form myself?
Not necessarily. Some solvers, including ToolPico's, accept a free-form equation like x²=5x−6 or 2x²+3x=2 directly, combine both sides automatically, and reduce it to a, b, c coefficients before solving — you don't have to rearrange it by hand first.

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 →

Related guides

Methodology note: The formulas referenced here (quadratic formula, discriminant, Vieta's formulas, vertex form) are standard, evergreen results from algebra and analytic geometry — they don't change over time. The worked numbers above are illustrative examples for explaining the method, not a substitute for checking your own specific homework or coursework requirements. This article is for general educational information only.