Polynomial equations form the core of algebraic mathematics, structural engineering, and systems optimization. Solving them precisely gives us the exact coordinates where functional curves intersect the neutral $x$-axis (the mathematical roots).

1. Quadratic Equations

A quadratic equation structurally defines a parabola. Depending on the known properties of the system, it can be written in multiple mathematical formats:

To find the roots from the Standard Form, we utilize the Quadratic Formula, which relies heavily on the Discriminant ($\Delta$). The discriminant tells us geometrically how the parabola interacts with the x-axis.

$$ \Delta = b^2 - 4ac $$

$$ x = \frac{-b \pm \sqrt{\Delta}}{2a} $$
Example: The Discriminant in Action

Consider the standard equation: $x^2 - 5x + 6 = 0$

Here, the coefficients are $a = 1$, $b = -5$, and $c = 6$.

Let's calculate the discriminant: $\Delta = (-5)^2 - 4(1)(6) = 25 - 24 = 1$.

Because $\Delta > 0$, the math dictates the parabola will cross the x-axis at exactly two distinct real points. Plugging $\Delta$ into the quadratic formula gives us $x = \frac{5 \pm 1}{2}$, resulting in the roots $x_1 = 3$ and $x_2 = 2$.

2. Cubic Equations (Cardano's Method)

Unlike quadratics, cubic equations define an "S-shaped" curve. Because they are of an odd degree (power of 3), the curve goes from $-\infty$ to $+\infty$, guaranteeing that it will cross the $x$-axis at least once. The standard analytical form is:

$$ ax^3 + bx^2 + cx + d = 0 $$

In 1545, Gerolamo Cardano published a rigorous analytical method to solve these equations. His approach works by converting the standard cubic into a simpler "depressed cubic" by intentionally eliminating the $x^2$ term using the geometric shift substitution $x = t - \frac{b}{3a}$.

$$ t^3 + pt + q = 0 $$

Just like quadratics, the discriminant of this depressed cubic ($\Delta_{cubic}$) dictates the nature of the roots:

Example: Casus Irreducibilis

Consider the cubic equation: $x^3 - 6x^2 + 11x - 6 = 0$

If we apply Cardano's method, we calculate a discriminant $\Delta < 0$. Historically, mathematicians struggled here because the intermediate math requires calculating the square root of a negative number, even though we know all three final roots are purely real.

Our solver automatically applies a modern Trigonometric Substitution to elegantly bypass the complex arithmetic, correctly identifying that the curve intersects the axis at $x_1 = 1$, $x_2 = 2$, and $x_3 = 3$.

Open Calculator