Solve quadratic equations (ax² + bx + c = 0) with step-by-step solutions, discriminant analysis, and graph visualization.
Quadratic Formula: x = (-b ± √(b² - 4ac)) / 2a
Discriminant: Δ = b² - 4ac
Vertex: h = -b/(2a), k = f(h)
Axis of Symmetry: x = -b/(2a)
Nature of Roots based on Discriminant:
Quadratic equations (ax² + bx + c = 0) describe projectile motion - the path a thrown ball, a launched rocket, or a fired arrow follows under gravity is a parabola, which is exactly why physics problems involving trajectory calculations rely on the quadratic formula. Engineers use quadratic equations to design parabolic reflectors (satellite dishes, headlight reflectors, solar concentrators), and business analysts use them to model revenue curves where profit depends on price in a way that isn't linear.
The quadratic formula (x = [-b ± √(b² - 4ac)] / 2a) always works, but it isn't always the fastest method - factoring works quickly when the equation factors cleanly, and completing the square is useful for deriving other results, but the quadratic formula is the reliable fallback that solves any quadratic equation regardless of whether it factors nicely.
The part of the formula under the square root (b² - 4ac, called the discriminant) reveals the nature of the solutions before fully solving: a positive discriminant means two real solutions, zero means exactly one real solution (a repeated root), and a negative discriminant means the solutions are complex (involving imaginary numbers), which is a fast way to check what kind of answer to expect.
A quadratic equation is a second-degree polynomial equation in the form ax² + bx + c = 0, where a ≠ 0. It always has two solutions (roots), which may be real or complex numbers.
The discriminant (Δ = b² - 4ac) determines the nature of the roots. If positive, there are two real roots. If zero, there's one repeated real root. If negative, the roots are complex numbers with imaginary parts.
The vertex is the point where the parabola changes direction. For a quadratic in standard form, the vertex coordinates are (h, k) where h = -b/(2a) and k is the value of the function at h. It represents the maximum or minimum point.
To graph: find the vertex, plot the y-intercept (where x=0, y=c), find the x-intercepts (roots), plot a few additional points, and draw a smooth curve through them. The parabola opens upward if a>0 and downward if a<0.
Complex roots occur when the discriminant is negative. They are expressed in the form a ± bi, where i is the imaginary unit (√-1). Complex roots always come in conjugate pairs and represent points where the parabola doesn't intersect the x-axis.
A negative discriminant means the equation has no real solutions - the solutions are complex numbers involving imaginary components.
Yes, the quadratic formula solves any quadratic equation, even ones that don't factor neatly, making it the most reliable general method.
Projectile motion, parabolic reflector design, and certain revenue or profit modeling scenarios are common real-world applications.