Calcady
Home / Scientific / Quadratic Formula Engine

Quadratic Formula Engine

Solve any quadratic equation using the quadratic formula. Handles real, repeated, and complex roots with full discriminant analysis, vertex coordinates, and axis of symmetry.

ax² + bx + c = 0

1x² + -3x + 2 = 0
Two Real Roots
Root 1 (x₁)2
Root 2 (x₂)1
Discriminant (Δ)1
Vertex(1.5, -0.25)
Axis of Symmetryx = 1.5
Email LinkText/SMSWhatsApp

The Quadratic Formula

For any quadratic equation ax² + bx + c = 0, the solutions are given by: x = (−b ± √(b² − 4ac)) / 2a.

The Discriminant (Δ)

  • Δ = b² − 4ac
  • Δ > 0: Two distinct real roots
  • Δ = 0: One repeated real root (the parabola touches the x-axis)
  • Δ < 0: Two complex/imaginary roots (no real x-intercepts)

Vertex & Axis of Symmetry

  • Axis of Symmetry: x = −b / 2a
  • Vertex: (−b/2a, f(−b/2a)) — the minimum or maximum point

Factoring Check 💡

If both roots are integers, the equation factors nicely: (x − r₁)(x − r₂) = 0. Try a=1, b=−3, c=2 → roots are 2 and 1 → factors as (x−2)(x−1) = 0.

Quick Answer: How does the Quadratic Formula Solver work?

Enter coefficients a, b, and c for ax² + bx + c = 0. The solver computes the discriminant, both roots (real or complex), vertex coordinates, and axis of symmetry.

The Formula

x = (−b ± √(b²−4ac)) / 2a | Discriminant Δ = b²−4ac

Δ > 0 → 2 real roots | Δ = 0 → 1 repeated root | Δ < 0 → 2 complex roots (a±bi)

Applications

Physics Trajectory Problems

When a ball is thrown upward at velocity v₀, its height is h(t) = −½gt² + v₀t + h₀. Setting h(t) = 0 creates a quadratic equation whose positive root gives the time to hit the ground. The vertex gives the maximum height and the time at which it occurs — both critical for engineering.

Break-Even Analysis

Revenue curves R(x) = px and cost curves C(x) = ax² + bx + c (diminishing returns) intersect at break-even points found by solving ax² + (b−p)x + c = 0. The discriminant tells you whether break-even is possible (Δ ≥ 0) or if costs always exceed revenue (Δ < 0).

Discriminant Quick Reference

Discriminant (Δ) Root Type Graph Behavior Example
Δ > 0Two distinct real rootsParabola crosses x-axis twicex² − 5x + 6 = 0 → x = 2, 3
Δ = 0One repeated rootParabola touches x-axis oncex² − 4x + 4 = 0 → x = 2
Δ < 0Two complex conjugate rootsParabola never crosses x-axisx² + 1 = 0 → x = ±i

Algebra Best Practices (Pro Tips)

Do This

  • Use Vieta's formulas to verify. Check that root₁ + root₂ = −b/a and root₁ × root₂ = c/a. This catches sign errors and arithmetic mistakes instantly without substituting back into the original equation.

Avoid This

  • Don't forget to rearrange to standard form first. The formula requires ax² + bx + c = 0 (one side equals zero). An equation like 3x² = 5x − 2 must be rewritten as 3x² − 5x + 2 = 0 before identifying a=3, b=−5, c=2. Skipping this step produces wrong signs.

Frequently Asked Questions

What does the discriminant tell you?

The discriminant Δ = b² − 4ac tells you how many and what type of solutions exist. Positive → two real roots (parabola crosses x-axis twice). Zero → one repeated root (parabola touches x-axis). Negative → two complex conjugate roots (parabola never reaches x-axis).

What are complex roots?

When Δ < 0, the square root of a negative number produces imaginary terms (i = √−1). Roots appear as conjugate pairs: a + bi and a − bi. Complex roots are crucial in electrical engineering (AC circuit analysis), control theory, and signal processing, even though they have no position on the real number line.

How do I find the vertex of a parabola?

The vertex is at x = −b/(2a), y = c − b²/(4a). This point is the minimum (when a > 0, parabola opens upward) or maximum (when a < 0, parabola opens downward) of the quadratic function. The axis of symmetry is the vertical line x = −b/(2a).

When should I factor instead of using the formula?

Factor when the discriminant is a perfect square and the roots are simple integers or fractions (e.g., x² − 5x + 6 = (x−2)(x−3)). The quadratic formula always works but is overkill for simple cases. If Δ is not a perfect square, the formula is faster and more reliable than trial-and-error factoring.

Related Math Calculators