Skip to main content

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.

Lesson 3 of 5 Algebra II Intermediate ⏱ 10 min read
πŸ”₯ Why This Matters

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.

🎯 What You'll Learn
  • 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
πŸ“– Key Vocabulary
Standard Form\(ax^2 + bx + c = 0\) β€” a quadratic equation with all terms on one side. Required before applying the formula. Quadratic Formula\(x = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}\) β€” gives both solutions (roots) of any quadratic equation. Discriminant\(\Delta = b^2 - 4ac\) β€” the expression under the radical. Determines the nature of the roots without solving. Root / ZeroAn x-value where \(f(x) = 0\) β€” where the parabola crosses (or touches) the x-axis. Β± SymbolRead "plus or minus" β€” means you compute two solutions: one using +, one using βˆ’.
Key Concept β€” The Quadratic Formula

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:

  1. Write in standard form β€” all terms on the left, zero on the right.
  2. Identify a, b, c β€” including signs. Be careful with negative coefficients.
  3. Compute the discriminant \(\Delta = b^2 - 4ac\).
  4. Substitute into the formula and simplify the radical.
  5. Compute both solutions with + and βˆ’.
  6. Simplify and check by substituting back into the original equation.
Worked Example 1 β€” Basic: Two Real Roots

Solve: \(x^2 - 5x + 6 = 0\)

  1. Standard form confirmed. Identify: \(a=1, b=-5, c=6\)
  2. Discriminant: \(\Delta = (-5)^2 - 4(1)(6) = 25 - 24 = 1\)
  3. Since \(\Delta = 1 > 0\), expect 2 real roots.
  4. Apply formula: \(x = \dfrac{-(-5) \pm \sqrt{1}}{2(1)} = \dfrac{5 \pm 1}{2}\)
  5. Two solutions: \(x_1 = \dfrac{5+1}{2} = 3\) and \(x_2 = \dfrac{5-1}{2} = 2\)
\[ x = 3 \quad \text{or} \quad x = 2 \]

Check: \(3^2 - 5(3) + 6 = 9 - 15 + 6 = 0\) βœ“ and \(4 - 10 + 6 = 0\) βœ“

Worked Example 2 β€” Intermediate: Irrational Roots

Solve: \(2x^2 + 3x - 1 = 0\)

  1. Identify: \(a=2, b=3, c=-1\)
  2. Discriminant: \(\Delta = 3^2 - 4(2)(-1) = 9 + 8 = 17\)
  3. \(\Delta = 17 > 0\) β†’ 2 real roots. \(\sqrt{17}\) doesn't simplify to a whole number.
  4. Apply formula: \(x = \dfrac{-3 \pm \sqrt{17}}{4}\)
  5. Exact solutions: \(x_1 = \dfrac{-3 + \sqrt{17}}{4} \approx \dfrac{-3 + 4.123}{4} \approx 0.281\)
  6. And: \(x_2 = \dfrac{-3 - \sqrt{17}}{4} \approx \dfrac{-3 - 4.123}{4} \approx -1.781\)
\[ x = \frac{-3 \pm \sqrt{17}}{4} \]
Worked Example 3 β€” Real World: Projectile Motion

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?

  1. Set \(h = 0\): \(-16t^2 + 20t + 4 = 0\)
  2. Multiply through by \(-1\): \(16t^2 - 20t - 4 = 0\)
  3. Divide by 4: \(4t^2 - 5t - 1 = 0\)
  4. Identify: \(a=4, b=-5, c=-1\)
  5. Discriminant: \(\Delta = 25 + 16 = 41\)
  6. Formula: \(t = \dfrac{5 \pm \sqrt{41}}{8}\)
  7. Positive solution (time can't be negative): \(t = \dfrac{5 + \sqrt{41}}{8} \approx \dfrac{5 + 6.403}{8} \approx 1.425\) seconds
\[ t \approx 1.43 \text{ seconds after launch} \]

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.

✏️ Quick Check

For each equation: (a) compute the discriminant, (b) state the solution type, (c) solve.

  1. \(x^2 - 4x + 4 = 0\)
  2. \(x^2 + x + 1 = 0\)
  3. \(3x^2 - 7x + 2 = 0\)
β–Ά Show Answers
  1. \(\Delta = 16 - 16 = 0\) β†’ 1 repeated root. \(x = \dfrac{4}{2} = 2\). Answer: \(x = 2\) (double root).
  2. \(\Delta = 1 - 4 = -3 < 0\) β†’ 2 complex roots. Answer: \(x = \dfrac{-1 \pm i\sqrt{3}}{2}\).
  3. \(\Delta = 49 - 24 = 25\). \(x = \dfrac{7 \pm 5}{6}\). Answers: \(x = 2\) or \(x = \dfrac{1}{3}\).
⚠️ Common Mistakes
  • 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\).
βœ… Key Takeaways
  • 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).
πŸ’Ό Career Connection β€” Physics & Structural Engineering

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.

Quadratic Formula Solver
Solves quadratic equations of the form axΒ² + bx + c = 0.
Use calculator β†’
← Previous Lesson
Back to
Simplifying Radical Expressions
Continue Learning
Up Next: Finding the Vertex of a Parabola
Next Lesson →
Test Your Knowledge

Understanding the Quadratic Formula - Quiz

5 questions per attempt  Β·  Intermediate  Β·  Pass at 70%

Start Quiz β†’

More in Algebra II

Working with Exponents Simplifying Radical Expressions Finding the Vertex of a Parabola
← All Algebra II lessons