Solve Complex Quadratic Equation- Methods and Examples
What Are Complex Quadratic Equations?
A complex quadratic equation is any equation that takes the form ax² + bx + c = 0, where the discriminant (b² - 4ac) is negative. This means you'll end up with square roots of negative numbers — and that's where the imaginary unit i comes in.
i = √(-1). That's it. Everything else is just math built on top of that simple fact.
Most students encounter these in algebra II or pre-calculus. The good news: you already know how to solve regular quadratics. Complex ones use the exact same methods. You just have to know how to handle the imaginary part.
The Standard Form
Every quadratic equation needs to start here:
ax² + bx + c = 0
Where:
- a is the coefficient of x² (cannot be zero)
- b is the coefficient of x
- c is the constant term
If your equation isn't in this form, rearrange it first. Everything on one side, zero on the other. Don't skip this step — it prevents half your mistakes.
Three Methods That Actually Work
1. The Quadratic Formula — The Universal Solution
This works for every quadratic equation, including ones with complex solutions. Memorize it:
x = (-b ± √(b² - 4ac)) / 2a
The part under the square root is the discriminant. When it's negative, you get complex roots. That's when you swap √(-1) for i and continue.
2. Completing the Square
Useful when you need to see the vertex form or when the quadratic formula feels too mechanical. It works, but it requires more steps. You end up with the same answer.
3. Factoring — Only Sometimes Useful
Factoring works when the roots are nice integers or rational numbers. With complex roots, you'll often get expressions like (x - 3i)(x + 3i) = 0. This is fast when it applies, but don't force it. If you can't factor it cleanly, move to the quadratic formula.
Comparing the Three Methods
| Method | Speed | Reliability | Best For |
|---|---|---|---|
| Quadratic Formula | Fast | Always works | Any quadratic equation |
| Completing the Square | Medium | Always works | Vertex form, deriving the formula |
| Factoring | Fastest when it works | Limited | Simple, nice roots |
Solved Examples
Example 1: Using the Quadratic Formula
Solve: x² + 4x + 13 = 0
Step 1: Identify a, b, c.
a = 1, b = 4, c = 13
Step 2: Plug into the formula.
x = (-4 ± √(16 - 52)) / 2
x = (-4 ± √(-36)) / 2
Step 3: Handle the negative under the square root.
√(-36) = √(36) × √(-1) = 6i
Step 4: Simplify.
x = (-4 ± 6i) / 2
x = -2 + 3i or x = -2 - 3i
Done. Two complex conjugate roots. The real part is -2, the imaginary part is ±3.
Example 2: Completing the Square
Solve: x² - 6x + 10 = 0
Step 1: Move the constant to the other side.
x² - 6x = -10
Step 2: Take half of b, square it, add to both sides.
Half of -6 is -3. Square that: 9.
x² - 6x + 9 = -10 + 9
Step 3: Rewrite as a perfect square.
(x - 3)² = -1
Step 4: Take the square root of both sides.
x - 3 = ±√(-1) = ±i
Step 5: Solve for x.
x = 3 + i or x = 3 - i
Example 3: Factoring with Complex Numbers
Solve: x² + 9 = 0
This one is almost too simple. Rearrange it:
x² = -9
Take the square root:
x = 3i or x = -3i
Or factor it as (x - 3i)(x + 3i) = 0 and expand to verify. Both methods give the same answer.
How to Solve Any Complex Quadratic Equation
Follow this process every time. No exceptions.
- Get everything on one side. Make sure the equation equals zero.
- Identify a, b, and c. Write them down. Double-check your signs.
- Calculate the discriminant. b² - 4ac. If it's negative, you're dealing with complex roots.
- Apply the quadratic formula. It's the most reliable method for complex solutions.
- Simplify √(negative number). Split it into √(positive) × i.
- Reduce if possible. Divide numerator and denominator by any common factors.
Common Mistakes to Avoid
- Forgetting to divide by 2a. The formula has a denominator. Don't leave it out.
- Screwing up the ±. The ± gives you two answers. Always.
- Simplifying incorrectly under the square root. √(-16) is 4i, not 16i.
- Dropping the i entirely. The answer must include i. √(-4) = 2i, not 2.
What About Graphing?
Complex roots mean the parabola doesn't cross the x-axis. It sits entirely above or below the axis, depending on whether a is positive or negative. The vertex is at the real part of the root, shifted vertically.
You won't find these intercepts on a standard graph. That's fine. The math still works.
The Bottom Line
Complex quadratic equations aren't harder than regular ones. They just require one extra step: handling the negative under the square root. Learn the quadratic formula. Practice converting √(-n) to i√(n). Get those two skills solid and you can solve any quadratic equation thrown at you. 📐