Understanding the Quadratic Formula
Learn the quadratic formula inside and out β what the discriminant tells you about solutions, how to apply the formula step by step, and why it works for every quadratic equation.
Quadratic equations are everywhere that curves, trajectories, and optimization appear. A ball thrown upward follows a parabolic path β setting the height equation to zero finds when it lands. An engineer calculates the load-bearing capacity of an arch. A business analyst finds the price that maximizes revenue. All of these reduce to solving \(ax^2 + bx + c = 0\). The quadratic formula solves every one of them β no matter the coefficients, no matter whether the roots are whole numbers, fractions, irrational, or even complex. It's the universal solver for the most common nonlinear equation in applied mathematics.
- Identify the coefficients a, b, c from standard form \(ax^2 + bx + c = 0\)
- Apply the quadratic formula to find exact solutions
- Use the discriminant \(\Delta = b^2 - 4ac\) to predict the number and type of solutions before solving
- Simplify the radical in the formula and express answers in exact and decimal form
For any equation in standard form \(ax^2 + bx + c = 0\) where \(a \neq 0\):
\[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \]The \(\pm\) means this formula gives two solutions at once. The two roots are:
\[ x_1 = \frac{-b + \sqrt{b^2 - 4ac}}{2a} \qquad x_2 = \frac{-b - \sqrt{b^2 - 4ac}}{2a} \]The Discriminant β Predicting Solution Types
| Discriminant \(\Delta = b^2 - 4ac\) | Solution Type | Graph Behavior |
|---|---|---|
| \(\Delta > 0\) | 2 distinct real roots | Parabola crosses x-axis twice |
| \(\Delta = 0\) | 1 repeated real root | Parabola touches x-axis once (vertex on axis) |
| \(\Delta < 0\) | 2 complex (imaginary) roots | Parabola does not cross x-axis |
Compute \(b^2 - 4ac\) first β you'll know how many solutions to expect before doing the full formula.
Step-by-Step Application
Follow these steps every time you use the quadratic formula:
- Write in standard form β all terms on the left, zero on the right.
- Identify a, b, c β including signs. Be careful with negative coefficients.
- Compute the discriminant \(\Delta = b^2 - 4ac\).
- Substitute into the formula and simplify the radical.
- Compute both solutions with + and β.
- Simplify and check by substituting back into the original equation.
Solve: \(x^2 - 5x + 6 = 0\)
- Standard form confirmed. Identify: \(a=1, b=-5, c=6\)
- Discriminant: \(\Delta = (-5)^2 - 4(1)(6) = 25 - 24 = 1\)
- Since \(\Delta = 1 > 0\), expect 2 real roots.
- Apply formula: \(x = \dfrac{-(-5) \pm \sqrt{1}}{2(1)} = \dfrac{5 \pm 1}{2}\)
- Two solutions: \(x_1 = \dfrac{5+1}{2} = 3\) and \(x_2 = \dfrac{5-1}{2} = 2\)
Check: \(3^2 - 5(3) + 6 = 9 - 15 + 6 = 0\) β and \(4 - 10 + 6 = 0\) β
Solve: \(2x^2 + 3x - 1 = 0\)
- Identify: \(a=2, b=3, c=-1\)
- Discriminant: \(\Delta = 3^2 - 4(2)(-1) = 9 + 8 = 17\)
- \(\Delta = 17 > 0\) β 2 real roots. \(\sqrt{17}\) doesn't simplify to a whole number.
- Apply formula: \(x = \dfrac{-3 \pm \sqrt{17}}{4}\)
- Exact solutions: \(x_1 = \dfrac{-3 + \sqrt{17}}{4} \approx \dfrac{-3 + 4.123}{4} \approx 0.281\)
- And: \(x_2 = \dfrac{-3 - \sqrt{17}}{4} \approx \dfrac{-3 - 4.123}{4} \approx -1.781\)
A ball is thrown upward from a 4-foot platform with an initial velocity of 20 ft/s. Its height is \(h(t) = -16t^2 + 20t + 4\). When does it hit the ground?
- Set \(h = 0\): \(-16t^2 + 20t + 4 = 0\)
- Multiply through by \(-1\): \(16t^2 - 20t - 4 = 0\)
- Divide by 4: \(4t^2 - 5t - 1 = 0\)
- Identify: \(a=4, b=-5, c=-1\)
- Discriminant: \(\Delta = 25 + 16 = 41\)
- Formula: \(t = \dfrac{5 \pm \sqrt{41}}{8}\)
- Positive solution (time can't be negative): \(t = \dfrac{5 + \sqrt{41}}{8} \approx \dfrac{5 + 6.403}{8} \approx 1.425\) seconds
The ball hits the ground approximately 1.43 seconds after it is thrown. The negative root (\(t \approx -0.18\)) is discarded β negative time has no physical meaning.
For each equation: (a) compute the discriminant, (b) state the solution type, (c) solve.
- \(x^2 - 4x + 4 = 0\)
- \(x^2 + x + 1 = 0\)
- \(3x^2 - 7x + 2 = 0\)
βΆ Show Answers
- \(\Delta = 16 - 16 = 0\) β 1 repeated root. \(x = \dfrac{4}{2} = 2\). Answer: \(x = 2\) (double root).
- \(\Delta = 1 - 4 = -3 < 0\) β 2 complex roots. Answer: \(x = \dfrac{-1 \pm i\sqrt{3}}{2}\).
- \(\Delta = 49 - 24 = 25\). \(x = \dfrac{7 \pm 5}{6}\). Answers: \(x = 2\) or \(x = \dfrac{1}{3}\).
- Forgetting to move everything to one side first: The formula requires \(ax^2 + bx + c = 0\). If given \(x^2 = 3x - 2\), rewrite as \(x^2 - 3x + 2 = 0\) before identifying a, b, c.
- Sign errors with negative b: The formula begins with \(-b\). If \(b = -5\), then \(-b = +5\). Write this out explicitly to avoid the common error of using \(b\) instead of \(-b\).
- Dividing only part of the numerator by 2a: The entire numerator \(-b \pm \sqrt{\Delta}\) is divided by \(2a\). Never compute \(-b/2a \pm \sqrt{\Delta}\) β the square root is also divided by \(2a\).
- The quadratic formula solves any quadratic β it's the universal method when factoring isn't obvious.
- Always check the discriminant first β it tells you immediately whether you'll get real numbers or complex numbers.
- Standard form is required: get everything to one side before applying the formula.
- In physical problems, discard roots that don't make sense in context (negative time, negative length).
Physicists solve projectile motion, orbital mechanics, and wave equations β all quadratics. Structural engineers calculate where a load creates zero net moment in a beam β quadratic. Electrical engineers find resonant frequencies from \(LC\omega^2 - 1 = 0\) β quadratic. The quadratic formula is so fundamental that engineers, physicists, and economists use it weekly. Understanding the discriminant adds a critical insight: before you ever compute, you know whether the system has two equilibrium points, exactly one, or none at all in the real domain.
Calculator Connection
The Quadratic Calculator solves any quadratic equation in standard form, computes the discriminant, and graphs the parabola showing the roots β use it to verify your solutions and build intuition for the relationship between the discriminant value and where the curve crosses the x-axis.
Try it with the Calculator
Apply what you've learned with this tool.
Understanding the Quadratic Formula - Quiz
5 questions per attempt Β· Intermediate Β· Pass at 70%
Start Quiz β