📖 Guide

Quadratic Equations: Discriminant, Roots and Vertex Form

The quadratic formula, how the discriminant tells you the root type, and converting between standard and vertex form.

Ad Slot. Top Banner

The Equation Shape That Describes a Thrown Ball

A ball thrown upward follows a parabolic path. The height at any moment satisfies a quadratic equation. Engineers designing bridge arches, architects modeling cable tensions, and economists plotting revenue curves all work with the same mathematical shape. The quadratic equation ax² + bx + c = 0 appears in thousands of real problems, and one formula solves all of them.

The quadratic formula was known to Babylonian mathematicians around 2000 BCE, long before modern algebraic notation existed. They described solutions geometrically. The symbolic formula we use today dates from the 16th century, but the underlying idea is ancient: a second-degree polynomial always has at most two solutions, and the discriminant (b² - 4ac) tells you exactly how many before you calculate them.

This guide covers standard form, the three solution methods (factoring, completing the square, and the quadratic formula), what the discriminant reveals, and two concrete applications: projectile motion and area problems. You'll also see why the formula works even when factoring seems impossible.

Standard Form and What Each Coefficient Means

Every quadratic equation can be written in standard form: ax² + bx + c = 0, where a, b, and c are real numbers and a ≠ 0. The restriction a ≠ 0 matters: if a were 0, the x² term vanishes and the equation becomes linear.

a controls the parabola's width and direction. Positive a opens upward; negative a opens downward. Larger |a| makes the parabola narrower. For a = 1, 2, and 4, the curves grow progressively steeper.

b shifts the parabola's axis of symmetry left or right. The axis sits at x = -b/(2a).

c is the y-intercept, the value of ax² + bx + c when x = 0. For x² - 5x + 6 = 0, a = 1, b = -5, c = 6, and the parabola crosses the y-axis at 6.

The roots (or solutions) of the equation are the x-values where the parabola crosses the x-axis. A parabola can cross zero, one, or two times. The discriminant determines which.

The Discriminant and Three Solution Methods

The discriminant is b² - 4ac. Calculate it first, before anything else, because it tells you what kind of answer to expect:

  • b² - 4ac > 0: two distinct real roots. The parabola crosses the x-axis at two points.
  • b² - 4ac = 0: one real root (a repeated root). The parabola touches the x-axis at exactly one point (the vertex).
  • b² - 4ac < 0: no real roots; two complex roots. The parabola sits entirely above or entirely below the x-axis.

Method 1: Factoring. Works when the quadratic factors into two binomials with integer coefficients. x² - 5x + 6 = 0 factors as (x - 2)(x - 3) = 0, giving roots x = 2 and x = 3. Factoring is the fastest method when it works, but most real-world quadratics don't factor over integers.

Method 2: The Quadratic Formula. Always works.

x = (-b ± √(b² - 4ac)) / (2a)

For x² - 5x + 6 = 0 (a=1, b=-5, c=6): discriminant = 25 - 24 = 1. x = (5 ± 1) / 2. Two solutions: x = 3 and x = 2.

For 2x² + 4x + 2 = 0 (a=2, b=4, c=2): discriminant = 16 - 16 = 0. x = -4 / 4 = -1. One repeated root.

For x² + x + 1 = 0 (a=1, b=1, c=1): discriminant = 1 - 4 = -3. No real roots; the solutions involve √(-3).

Method 3: Completing the Square. Rewrite the equation so one side is a perfect square trinomial, then take the square root of both sides. For x² - 6x + 5 = 0: move c to the right: x² - 6x = -5. Add (6/2)² = 9 to both sides: x² - 6x + 9 = 4. Factor: (x - 3)² = 4. Take square roots: x - 3 = ±2. Solutions: x = 5 and x = 1. Completing the square also reveals the vertex form of the parabola.

Ad Slot — In-Content

Common Misconceptions

  • The equation must equal zero for the formula to work. The quadratic formula applies to ax² + bx + c = 0. If you have 3x² + 2x = 7, subtract 7 from both sides first: 3x² + 2x - 7 = 0. The formula only works when the right-hand side is zero.
  • Two solutions means two x-values. When the discriminant is positive, you get two roots, but both are x-coordinates. A quadratic has at most one y-value for each x-value; it crosses the x-axis at two different x-positions.
  • A negative discriminant means you made an error. A negative discriminant means the quadratic has no real roots. The parabola doesn't cross the x-axis. The solutions exist as complex numbers, which are valid in many engineering and physics contexts.
  • Completing the square is obsolete once you know the formula. Completing the square is how the quadratic formula gets derived.