ALGEBRA · 5 min read

Zeros, Roots, and Intercepts: Solving Equations Graphically & Numerically

Connect graphical x-intercepts with algebraic roots using factoring, the quadratic formula, and iterative solvers.

What Is a Zero of a Function?

A zero of a function f(x) is any input value for x that makes the output equal zero: f(x) = 0. On a standard Cartesian coordinate graph, the real zeros correspond exactly to the x-intercepts—the points where the curve crosses or touches the horizontal x-axis.

The Quadratic Formula
x = [−b ± √(b² − 4ac)] ÷ (2a)

The Discriminant: Predicting the Types of Roots

Before solving a quadratic equation ax² + bx + c = 0, evaluating the discriminant Δ = b² − 4ac tells you what kind of solutions exist:

Δ > 0: Two distinct real zeros (graph crosses the x-axis twice).
Δ = 0: One repeated real zero (graph touches the x-axis at its vertex).
Δ < 0: Two complex conjugate roots (graph never intersects the x-axis).

WORKED EXAMPLE · FACTORING VS. FORMULA

Find the zeros of f(x) = x² − 7x + 10

1. By factoring: look for two numbers that multiply to +10 and add to −7. Those are −2 and −5.
2. Factored form: (x − 2)(x − 5) = 0.
3. Set each factor to zero: x = 2 and x = 5.
4. Zeros: x = 2 and x = 5 (x-intercepts at (2,0) and (5,0)).

Higher Degree Polynomials and Numerical Solvers

While formulas exist for cubics and quartics, the Abel-Ruffini theorem proves there is no general algebraic formula for polynomials of degree 5 or higher. For higher-order curves, computer algorithms like the Newton-Raphson method or Durand-Kerner iteration evaluate numerical roots.

All guides