Solve quadratic equations and find roots automatically.
Solve quadratic equations of the form ax² + bx + c = 0 using the quadratic formula.
x = [-b ± √(b² - 4ac)] / 2aQuadratic equations are essential in physics, engineering, and economics. They describe the path of a projectile, the shape of a satellite dish, and the point where a business breaks even.
Our solver calculates the discriminant (b² - 4ac). This number tells you how many solutions exist. If D > 0, there are two real roots. If D = 0, there is exactly one. If D < 0, the roots are complex (imaginary).
x² - 5x + 6 = 0 -> x = 2, 3