Skip to main content
Calkulon
العودة إلى الأدلة
3 min read6 الخطوات

How to Calculate Cubic Roots Using Cardano's Formula: Step-by-Step Guide

Learn to solve cubic equations manually using Cardano's formula. Understand the transformation, discriminant, and find all three roots step-by-step.

تخطي العمليات الحسابية — استخدم الآلة الحاسبة

تعليمات خطوة بخطوة

1

Prepare Your Equation: Identify Coefficients

First things first, identify the coefficients `a`, `b`, `c`, and `d` from your standard cubic equation: `ax³ + bx² + cx + d = 0`. **Example**: For `x³ - 3x² + 3x - 2 = 0`, * `a = 1` * `b = -3` * `c = 3` * `d = -2`

2

Transform to the Depressed Cubic Form

Cardano's formula works best with a 'depressed' cubic, which has no `y²` term (`y³ + py + q = 0`). We achieve this by substituting `x = y - b/(3a)` into your original equation. This substitution will eliminate the `x²` term and give you a new equation in terms of `y`, with new coefficients `p` and `q`. The formulas for `p` and `q` are: * `p = (3ac - b²) / (3a²)` * `q = (2b³ - 9abc + 27a²d) / (27a³)` **Example**: For `x³ - 3x² + 3x - 2 = 0` (where `a=1, b=-3, c=3, d=-2`): First, find the substitution: `x = y - (-3)/(3*1) = y + 1`. Now, substitute `x = y + 1` into the original equation: `(y+1)³ - 3(y+1)² + 3(y+1) - 2 = 0` Expand the terms: `(y³ + 3y² + 3y + 1) - 3(y² + 2y + 1) + 3(y+1) - 2 = 0` `y³ + 3y² + 3y + 1 - 3y² - 6y - 3 + 3y + 3 - 2 = 0` Combine like terms: `y³ + (3 - 3)y² + (3 - 6 + 3)y + (1 - 3 + 3 - 2) = 0` `y³ + 0y² + 0y - 1 = 0` `y³ - 1 = 0` So, for our depressed cubic `y³ + py + q = 0`, we have `p = 0` and `q = -1`.

3

Calculate the Discriminant (Δ) and Analyze Roots

Now that you have your depressed cubic `y³ + py + q = 0`, calculate its discriminant `Δ` using the formula: `Δ = q²/4 + p³/27` The value of `Δ` will tell you about the nature of your roots: * `Δ > 0`: One real root, two complex conjugate roots. * `Δ = 0`: Three real roots, at least two are equal. * `Δ < 0`: Three distinct real roots (this is the 'casus irreducibilis' case). **Example**: For `y³ - 1 = 0` (where `p=0, q=-1`): `Δ = (-1)²/4 + (0)³/27` `Δ = 1/4 + 0` `Δ = 1/4` Since `Δ = 1/4 > 0`, we expect one real root and two complex conjugate roots for `y` (and thus for `x`).

4

Apply Cardano's Formula for One Root

Now for the main event! Cardano's formula gives us one of the roots for `y`: `y = ³√( -q/2 + √Δ ) + ³√( -q/2 - √Δ )` Let's calculate the two parts separately to make it easier: * Let `A = -q/2 + √Δ` * Let `B = -q/2 - √Δ` Then, `y1 = ³√A + ³√B` **Example**: For `y³ - 1 = 0` (where `p=0, q=-1, Δ=1/4`): `A = -(-1)/2 + √(1/4) = 1/2 + 1/2 = 1` `B = -(-1)/2 - √(1/4) = 1/2 - 1/2 = 0` Now, plug these into the formula for `y1`: `y1 = ³√1 + ³√0` `y1 = 1 + 0` `y1 = 1` So, we've found one real root for the depressed cubic: `y1 = 1`.

5

Find the Remaining Roots Using Polynomial Division

Once you have one root for `y` (let's call it `y1`), you can find the other two by performing polynomial division. If `y1` is a root of `y³ + py + q = 0`, then `(y - y1)` is a factor. Dividing the cubic by this factor will yield a quadratic equation, which you can then solve using the quadratic formula. **Example**: We found `y1 = 1` for `y³ - 1 = 0`. Divide `(y³ - 1)` by `(y - 1)`: ``` y² + y + 1 ____________ (y - 1)| y³ + 0y² + 0y - 1 -(y³ - y²) __________ y² + 0y -(y² - y) _________ y - 1 -(y - 1) ________ 0 ``` The result of the division is `y² + y + 1 = 0`. Now, solve this quadratic equation using the quadratic formula `y = (-b ± √(b² - 4ac)) / (2a)`: `y = (-1 ± √(1² - 4*1*1)) / (2*1)` `y = (-1 ± √(-3)) / 2` `y = (-1 ± i√3) / 2` So, the remaining two roots for `y` are: `y2 = -1/2 + i√3/2` `y3 = -1/2 - i√3/2`

6

Convert Back to the Original Variable (x)

Remember, we solved for `y`, but our original equation was in terms of `x`! Use the substitution you made in Step 2 (`x = y - b/(3a)`) to convert your `y` roots back into `x` roots. **Example**: We used `x = y + 1`. * For `y1 = 1`: `x1 = 1 + 1 = 2` * For `y2 = -1/2 + i√3/2`: `x2 = (-1/2 + i√3/2) + 1 = 1/2 + i√3/2` * For `y3 = -1/2 - i√3/2`: `x3 = (-1/2 - i√3/2) + 1 = 1/2 - i√3/2` And there you have it! The three roots for `x³ - 3x² + 3x - 2 = 0` are `x1 = 2`, `x2 = 1/2 + i√3/2`, and `x3 = 1/2 - i√3/2`.

How to Calculate Cubic Roots Using Cardano's Formula: A Step-by-Step Guide

Welcome, math adventurers! Ever wondered how to tackle those tricky cubic equations, the ones that look like ax³ + bx² + cx + d = 0? While quadratic equations have the reliable quadratic formula, cubics have their own elegant (though a bit more complex) solution: Cardano's Formula. This guide will walk you through the manual steps to find the roots of a cubic equation, helping you understand the magic behind the numbers.

It might seem daunting at first, but with a clear breakdown and a friendly example, you'll be well on your way to mastering cubic equations. Let's dive in!

Prerequisites

Before we begin, make sure you're comfortable with:

  • Basic Algebra: Manipulating equations, expanding binomials, and solving linear equations.
  • Quadratic Formula: You'll use this to find the remaining roots after finding one.
  • Square Roots and Cube Roots: Understanding how to calculate them.
  • Complex Numbers (Basic): Familiarity with i (where i² = -1) will be helpful, as cubic equations can often have complex roots.

Understanding the Challenge: The Depressed Cubic

Cardano's formula is most elegantly applied to a depressed cubic equation, which is a cubic equation without an term. That looks like y³ + py + q = 0. Don't worry, we'll learn how to transform any standard cubic equation into this simpler form first!

The Discriminant for the Depressed Cubic

Just like the discriminant (b² - 4ac) tells us about the nature of roots for a quadratic, a similar discriminant Δ (often denoted D) for the depressed cubic y³ + py + q = 0 helps us predict the type of roots:

  • If Δ = q²/4 + p³/27 > 0: There is one real root and two complex conjugate roots.
  • If Δ = q²/4 + p³/27 = 0: All three roots are real, and at least two of them are equal.
  • If Δ = q²/4 + p³/27 < 0: All three roots are real and distinct (this is the famous 'casus irreducibilis', where the formula still involves complex numbers even for real roots!).

Worked Example: Let's Solve x³ - 3x² + 3x - 2 = 0

We'll use this example throughout the steps to illustrate the process. Here, a=1, b=-3, c=3, d=-2.

Common Pitfalls to Avoid

  • Algebraic Errors: The transformation to the depressed cubic involves a lot of expansion and simplification. Take your time and double-check your work.
  • Sign Errors: Be extremely careful with positive and negative signs, especially when calculating p, q, and plugging values into Cardano's formula.
  • Forgetting All Roots: A cubic equation always has three roots (counting multiplicity and complex roots). Don't stop after finding just one!
  • Misinterpreting Complex Numbers: If Δ < 0, the formula will involve cube roots of complex numbers to find real roots. This is mathematically correct but can be challenging to calculate manually without advanced techniques (like converting to polar form).

When to Use a Calculator for Convenience

As you can see, solving cubic equations by hand using Cardano's formula is a multi-step process that requires careful algebraic manipulation. It's a fantastic way to understand the underlying mathematics, but for practical applications, speed, or when dealing with very complicated numbers (especially complex cube roots), a dedicated cubic formula calculator is your best friend. It can quickly provide all three roots, including their full algebraic derivation and discriminant analysis, saving you time and reducing the chance of error.

Use manual calculation to build your understanding, and leverage calculators for efficiency and precision!

هل أنت مستعد للحساب؟

تخطي العمل اليدوي واحصل على نتائج فورية.

فتح الحاسبة

الإعدادات