Quadratic Equation Solver
Enter the coefficients of a quadratic equation ax² + bx + c = 0. The solver reports the vertex and axis of symmetry, computes the discriminant Δ = b² − 4ac to classify the roots, and applies the quadratic formula x = (−b ± √Δ) / (2a), showing every substitution.
Frequently asked questions
What is the discriminant?
It is Δ = b² − 4ac. Positive gives two real roots, zero gives one repeated root, and negative gives complex conjugate roots.
Does it find the vertex?
Yes. The vertex is at (−b/2a, c − b²/4a), and the axis of symmetry is the vertical line through its x-coordinate.
Can it handle complex roots?
Yes. When the discriminant is negative the roots are returned in the form x = p ± qi.