What the Quadratic Formula Solves
Any equation that can be written as ax² + bx + c = 0 (with a ≠ 0) is a quadratic equation. The quadratic formula gives you the values of x that make the equation true, every time, no matter what a, b, and c are.
The Microapp calculator does the arithmetic instantly and shows the formula step-by-step with your values plugged in — useful for homework where you need to show your work, not just the answer.
• Discriminant: (−3)² − 4(1)(2) = 9 − 8 = 1 (positive → two real roots)
• Formula: x = (3 ± √1) / 2 = (3 ± 1) / 2
• Solutions: x₁ = (3+1)/2 = 2, x₂ = (3−1)/2 = 1
The Three Cases
The discriminant b² − 4ac controls everything. Three scenarios:
| Discriminant | What it means geometrically | Example |
|---|---|---|
| D > 0 | Parabola crosses the x-axis twice → two distinct real roots | x² − 5x + 6 = 0 → x = 2, 3 |
| D = 0 | Parabola touches x-axis at one point → one repeated real root | x² + 4x + 4 = 0 → x = −2 (twice) |
| D < 0 | Parabola doesn't cross x-axis → two complex conjugate roots | x² + 2x + 5 = 0 → x = −1 ± 2i |
Where Quadratic Equations Show Up
Projectile motion. The height of a thrown ball over time is quadratic: h(t) = −16t² + v₀t + h₀ (in feet, with gravity ≈ 32 ft/s²). Solving h(t) = 0 tells you when the ball hits the ground.
Maximizing area or revenue. If revenue R(x) = (price − x)(quantity + cx), expanding gives a quadratic in x. The vertex of the parabola — found via x = −b/2a — tells you the price that maximizes revenue.
Geometry. The formula for the area of a circle (A = πr²), the volume of a sphere as a function of radius, and many other shape formulas are quadratic or higher-order in their key variable.
Engineering and physics. Beam deflection, electrical circuit analysis, simple harmonic motion at small angles — quadratics appear everywhere a physical system has a single dominant restoring force.
Common Pitfalls
Sign errors with negative b. The formula has −b. If b = −5, then −b = +5. The double-negative is the most common student mistake. Use parentheses when computing: −(−5) = 5.
Order of operations on the discriminant. Compute b² FIRST (which makes any negative b become positive), THEN subtract 4ac. Skipping the order produces a wrong sign.
Forgetting the 2a in the denominator. The whole numerator gets divided by 2a, not just one part. Use parentheses around the numerator when calculating by hand.
Using the formula when factoring is faster. If the equation factors cleanly (like x² − 5x + 6 = (x−2)(x−3) = 0), factoring is faster than the formula. Use the formula when factoring isn't obvious or possible.
Rounding too aggressively. If you round √7 to 2.65 in the middle of the formula, your final answer can drift. Carry full precision until the final step (this calculator does that).
Where the Formula Came From (Briefly)
Apply "completing the square" to the general form ax² + bx + c = 0:
- Divide everything by a: x² + (b/a)x + c/a = 0
- Move c/a to the right: x² + (b/a)x = −c/a
- Add (b/2a)² to both sides to complete the square on the left: x² + (b/a)x + (b/2a)² = (b/2a)² − c/a
- Left side is now (x + b/2a)²; right side simplifies to (b² − 4ac) / 4a²
- Take the square root of both sides: x + b/2a = ±√(b² − 4ac) / 2a
- Solve for x: x = (−b ± √(b² − 4ac)) / 2a
So the quadratic formula isn't magic — it's just the result of doing completing-the-square on the general form once and writing down the answer. Babylonian mathematicians knew this around 2000 BCE.
Related Tools
For triangle geometry where the Pythagorean theorem leads into quadratic problems, the Pythagorean Theorem calculator is a related stepping stone. For coordinate geometry distance computations, the Distance Formula handles 2D and 3D. For percentage-of-a-value calculations that often appear alongside quadratic word problems, see the Percentage Calculator.