Calculadora Fórmula Cuadrática

La Calculadora de Fórmula Cuadrática resuelve ecuaciones de segundo grado (ax² + bx + c = 0) usando la fórmula clásica: x = (−b ± √(b² − 4ac)) / 2a. Muestra las dos raíces (cuando el discriminante es positivo), una raíz doble (discriminante cero) o raíces complejas (discriminante negativo).

Enter the coefficients of ax² + bx + c = 0 and the calculator solves for x using the quadratic formula. Handles real and complex roots.

Reading the discriminant

D > 0: two real solutions (parabola crosses x-axis twice). D = 0: one repeated real solution (parabola touches x-axis once). D < 0: two complex solutions (parabola doesn't cross x-axis).

Cómo usar

  1. 1

    Ingresa los coeficientes a, b, c (a debe ser ≠ 0).

  2. 2

    Ve las raíces calculadas + el discriminante (Δ = b² − 4ac).

  3. 3

    Discriminante positivo: dos raíces reales. Cero: raíz doble. Negativo: raíces complejas.

Preguntas frecuentes

Ratings & Reviews

Rate this tool

Sign in to rate and review this tool.

Loading reviews…

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.

Worked example. Solve x² − 3x + 2 = 0 (so a=1, b=−3, c=2):
• 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:

DiscriminantWhat it means geometricallyExample
D > 0Parabola crosses the x-axis twice → two distinct real rootsx² − 5x + 6 = 0 → x = 2, 3
D = 0Parabola touches x-axis at one point → one repeated real rootx² + 4x + 4 = 0 → x = −2 (twice)
D < 0Parabola doesn't cross x-axis → two complex conjugate rootsx² + 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:

  1. Divide everything by a: x² + (b/a)x + c/a = 0
  2. Move c/a to the right: x² + (b/a)x = −c/a
  3. Add (b/2a)² to both sides to complete the square on the left: x² + (b/a)x + (b/2a)² = (b/2a)² − c/a
  4. Left side is now (x + b/2a)²; right side simplifies to (b² − 4ac) / 4a²
  5. Take the square root of both sides: x + b/2a = ±√(b² − 4ac) / 2a
  6. 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.