A Curve Crosses an Axis — and That's a Root
The graph of $y = ax^2 + bx + c$ is a parabola. The roots of the quadratic equation $ax^2 + bx + c = 0$ are the $x$-values where this parabola crosses the $x$-axis. A parabola can cross the $x$-axis twice, touch it once, or miss it entirely — those three cases correspond to the three types of roots.
The roots of a quadratic equation are also called its zeros or its solutions — three names for the same idea. A quadratic equation has at most two roots, because its degree is 2.
The Quadratic Formula
For the standard-form quadratic $ax^2 + bx + c = 0$ with $a \neq 0$, the two roots are:
$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}.$$
The expression under the square root — $b^2 - 4ac$ — is the discriminant, written $D$ or $\Delta$. The discriminant alone tells you what kind of roots the equation has, without computing them.
Discriminant value | Nature of roots | Geometric meaning |
|---|---|---|
$D > 0$ | Two real and distinct roots | Parabola crosses $x$-axis at two points |
$D = 0$ | One real root (repeated, "double root") | Parabola touches $x$-axis at exactly one point (the vertex) |
$D < 0$ | Two complex conjugate roots, no real roots | Parabola never crosses or touches the $x$-axis |
The discriminant is also what you check first in any quadratic-equation problem — if the question only asks for the nature of the roots, you can answer it without computing the roots themselves.
Vieta's Sum and Product of Roots
For $ax^2 + bx + c = 0$ with roots $r_1$ and $r_2$:
$$r_1 + r_2 = -\frac{b}{a}, \qquad r_1 \cdot r_2 = \frac{c}{a}.$$
These are Vieta's formulas. They are derived by expanding $a(x - r_1)(x - r_2) = ax^2 + bx + c$ and matching coefficients. The practical use: if a problem gives you the sum or product of roots and asks you to construct a quadratic, Vieta's formulas hand you the coefficients in one step.
A quadratic with roots $3$ and $-2$, for instance, has sum $1$ and product $-6$. Taking $a = 1$, the quadratic is $x^2 - 1 \cdot x + (-6) = x^2 - x - 6 = 0$.
Methods of Finding Roots — Side by Side
Method | When it works best | When it fails |
|---|---|---|
Factoring | $a$, $b$, $c$ are small integers; roots are rational | Roots irrational or complex — no clean factorisation |
Quadratic formula | Always works | Slower for clean factorable cases |
Completing the square | When you need vertex form along the way | Slower than the formula for pure root-finding |
Graphing | Visual approximation; finding integer roots quickly | Exact irrational or complex roots |
Sum/product (Vieta's) | Constructing a quadratic from given roots | Not for finding unknown roots |
The default first pass is factoring; if the factors aren't immediate within ~30 seconds, switch to the quadratic formula. Completing the square stays in the curriculum because it derives the quadratic formula and connects to vertex form.
Three Worked Examples — Quick, Standard, Stretch
Quick. Find the roots of $x^2 - 7x + 12 = 0$.
Try factoring first. Two numbers that multiply to 12 and add to $-7$: that's $-3$ and $-4$. So:
$$x^2 - 7x + 12 = (x - 3)(x - 4) = 0.$$
Apply the zero product property: $x = 3$ or $x = 4$.
Final answer: Roots are $x = 3$ and $x = 4$. Both real and distinct.
Quick discriminant check: $D = (-7)^2 - 4(1)(12) = 49 - 48 = 1 > 0$. Two real distinct roots — matches.
Standard (Wrong Path First — The Detour Students Take). Find the roots of $2x^2 + 3x - 5 = 0$.
The wrong path. A student tries to factor: "two numbers that multiply to $2 \cdot (-5) = -10$ and add to $3$..." After three tries (5 and $-2$? $-5$ and $2$? 10 and $-1$?) the student lands on 5 and $-2$ — which sum to 3 ✓ and multiply to $-10$ ✓. Now what? The student writes "$(x + 5)(x - 2) = 0$" and tries to verify: $(x + 5)(x - 2) = x^2 + 3x - 10$, not $2x^2 + 3x - 5$. The leading coefficient of 2 was lost.
The student's instinct was right — the AC-method does work for $a \neq 1$ — but it has an extra rewriting step the student skipped. The factoring becomes $2x^2 + 5x - 2x - 5 = x(2x + 5) - 1(2x + 5) = (x - 1)(2x + 5)$.
The clean rescue. Skip the factoring tangle. Apply the quadratic formula with $a = 2$, $b = 3$, $c = -5$:
$$x = \frac{-3 \pm \sqrt{3^2 - 4(2)(-5)}}{2(2)} = \frac{-3 \pm \sqrt{9 + 40}}{4} = \frac{-3 \pm 7}{4}.$$
So $x = \tfrac{4}{4} = 1$ or $x = \tfrac{-10}{4} = -\tfrac{5}{2}$.
Final answer: Roots are $x = 1$ and $x = -\tfrac{5}{2}$.
The lesson — when factoring takes more than two attempts, switch to the formula. Time spent forcing a factor that wants to resist is time the formula would have ended.
Stretch. Find the roots of $x^2 - 2x + 5 = 0$.
Discriminant first: $D = (-2)^2 - 4(1)(5) = 4 - 20 = -16$. Negative discriminant means no real roots; the roots are complex conjugates.
Apply the formula anyway:
$$x = \frac{2 \pm \sqrt{-16}}{2} = \frac{2 \pm 4i}{2} = 1 \pm 2i.$$
Final answer: Roots are $x = 1 + 2i$ and $x = 1 - 2i$.
The two roots are complex conjugates — a pattern that holds for every quadratic with real coefficients and negative discriminant. (This is why complex roots always come in pairs — the conjugate is forced by the $\pm$ in the formula.)
Why Roots of Quadratics Matter
Quadratic roots are the most-used solution set in early algebra. They surface everywhere a quantity grows quadratically or where a balance of two opposing effects produces a turning point.
Projectile motion. A ball thrown up follows $h(t) = -\tfrac{g}{2}t^2 + v_0 t + h_0$. The roots of $h(t) = 0$ are the times it leaves the ground and lands. The discriminant tells you whether the throw clears a barrier.
Optimisation. Maximum profit, minimum cost, and "what dimensions give the largest area for a fixed perimeter" all reduce to setting a quadratic equal to a target value and solving.
Engineering — structural beams. The deflection of a simply-supported beam under uniform load is a quadratic in position along the beam. Roots locate the points of zero deflection.
Computer graphics — ray-sphere intersection. Tracing a light ray through a 3D scene means solving a quadratic at every sphere; the roots are the entry and exit points of the ray through the sphere.
Economics. Quadratic cost and revenue functions intersect at break-even points — both real roots of the resulting equation correspond to genuine break-even scenarios.
The Mathematicians Who Shaped the Quadratic
The quadratic formula has a 1,400-year history of incremental refinements.
Brahmagupta (India, 598–668 CE) gave the first explicit formula for one root of a quadratic in his Brāhmasphuṭasiddhānta (628 CE). His form was rhetorical (no symbols), but the algebra is recognisable: "the absolute number multiplied by four times the coefficient of the square, added to the square of the coefficient of the unknown, the square root of the same…" His scheme handled only positive roots.
al-Khwārizmī (Persia/Baghdad, c. 780–850) in Kitāb al-Jabr wa-l-Muqābala (c. 820) classified six standard forms of quadratics and gave geometric proofs for each. The word algebra itself comes from his title.
Gerolamo Cardano (Italy, 1501–1576) in Ars Magna (1545) was the first European to publish full quadratic solutions including negative roots — and pushed forward to publish the cubic formula in the same book.
François Viète (France, 1540–1603) introduced the modern coefficient notation. The "Vieta's formulas" connecting roots and coefficients carry his name.
The quadratic formula students memorise today is the cleaned-up symbolic descendant of Brahmagupta's 1,400-year-old rhetorical procedure.
Common Errors When Working With Roots of Quadratic Equations
Mistake 1: Misreading the sign of $b$ in the formula.
Where it slips in: In $3x^2 - 5x + 2 = 0$, a student plugs $b = 5$ into $-b/2a$ and gets $-5/6$. Wrong sign — $b$ is $-5$, so $-b = 5$, and the sum-of-roots term is $+5/3$.
Don't do this: Drop the sign from $b$ or $c$ when reading them off the equation.
The correct way: $b$ is the signed coefficient of $x$ in the standard form. In $3x^2 - 5x + 2 = 0$, $b = -5$, not $5$.
Mistake 2: Forgetting the $\pm$ in the formula.
Where it slips in: A student computes the discriminant, takes its square root, divides — and writes a single answer.
Don't do this: Drop the $\pm$ because "the question only asked for $x$."
The correct way: A quadratic with $D > 0$ has two real roots. Both belong in the answer. Even when one of them is rejected by context (negative time, etc.), the algebraic step lists both first.
Mistake 3: Confusing "no real roots" with "no roots at all."
Where it slips in: A student sees $D < 0$ and writes "no solution."
Don't do this: Conclude the equation is unsolvable.
The correct way: $D < 0$ means there are no real roots, but there are still two complex roots. In Grade 11 and beyond, complex roots are part of the solution set. In Grade 10 CBSE, the convention is to write "no real roots" — never "no roots."
Conclusion
The roots of $ax^2 + bx + c = 0$ are the values of $x$ that satisfy the equation — at most two.
The discriminant $D = b^2 - 4ac$ classifies the roots: $D > 0$ two real distinct; $D = 0$ one repeated; $D < 0$ two complex.
The quadratic formula $x = (-b \pm \sqrt{D})/(2a)$ gives both roots; Vieta's formulas give their sum and product directly from the coefficients.
Factoring is faster for clean cases; the quadratic formula handles every case.
The story of the formula runs from Brahmagupta (628 CE) through al-Khwārizmī, Cardano, and Viète to the version on every textbook today.
Sharpen Your Roots — Three Practice Problems
Find the roots of $x^2 - 9x + 20 = 0$ by factoring, then verify with the discriminant.
Find the roots of $2x^2 + 4x + 5 = 0$. (Compute the discriminant first — what type of roots?)
Construct a quadratic equation whose roots are $-3$ and $7$, using Vieta's formulas.
If Problem 2 surprised you, return to the Stretch worked example — the discriminant flags complex roots before the formula does.
Want a live Bhanzu trainer to walk your child through the Grade 10 quadratic-equations chapter? Book a free demo class — online globally.
Was this article helpful?
Your feedback helps us write better content
