Quadratic Solving Methods- Three Main Approaches
What You're Actually Solving
A quadratic equation is anything that looks like ax² + bx + c = 0. The goal is finding where the parabola crosses the x-axis. That's it. Nothing fancy.
You have three real options. Each works. Each has drawbacks. Here's the breakdown.
Method 1: Factoring 🔢
Factoring means rewriting the quadratic as (x + m)(x + n) = 0. Then you solve each piece separately.
How It Works
You need two numbers that multiply to give c and add to give b.
Example: x² + 5x + 6 = 0
- What multiplies to 6? 2 × 3
- What adds to 5? 2 + 3
- So: (x + 2)(x + 3) = 0
- Solutions: x = -2 or x = -3
The Problem
Most quadratics don't factor cleanly. Try factoring 2x² + 3x - 7. You can't. The numbers don't work out to integers, or anything rational. You're stuck.
Factoring is fast when it works. It just doesn't always work.
Method 2: Quadratic Formula 📐
This is the universal solver. Plug in your numbers. Get your answers. Works every time.
The Formula
For ax² + bx + c = 0:
x = (-b ± √(b² - 4ac)) / 2a
How It Works
Example: 2x² + 7x - 4 = 0
- a = 2, b = 7, c = -4
- Discriminant: 7² - 4(2)(-4) = 49 + 32 = 81
- √81 = 9
- x = (-7 ± 9) / 4
- x = (-7 + 9)/4 = 2/4 = 0.5
- x = (-7 - 9)/4 = -16/4 = -4
The Catch
The discriminant (b² - 4ac) tells you what you're dealing with:
- Positive: Two real solutions
- Zero: One solution (double root)
- Negative: No real solutions (complex numbers)
You have to do the arithmetic. Mess up the signs, and you're wrong. But the formula never lies about whether solutions exist.
Method 3: Completing the Square 📊
This method rewrites the equation so you can take a square root directly. It's the foundation for the quadratic formula itself.
How It Works
Example: x² + 6x + 5 = 0
- Move constant: x² + 6x = -5
- Take half of b (6/2 = 3), square it (9)
- Add 9 to both sides: x² + 6x + 9 = -5 + 9
- Rewrite: (x + 3)² = 4
- Take square root: x + 3 = ±2
- x = -1 or x = -5
When to Use It
Completing the square is essential when you're dealing with vertex form or working with conic sections. Parabola problems. Graphing problems. Anywhere the shape matters.
It's also the only practical method when the coefficient of x² isn't 1.
Example: 2x² + 8x - 10 = 0
- Divide by 2 first: x² + 4x - 5 = 0
- Now complete the square
Which Method Should You Actually Use?
Don't overthink this. Here's the decision logic:
Quick Reference
| Method | Speed | Reliability | Best For |
|---|---|---|---|
| Factoring | Fastest | Limited | Simple quadratics with small integers |
| Quadratic Formula | Moderate | Always works | General purpose, exams, unknowns |
| Completing the Square | Slowest | Always works | Graphing, vertex problems, derivation |
Factoring wins when numbers cooperate. The quadratic formula wins everything else. Completing the square wins when you're doing anything beyond just finding roots.
Getting Started: Practical Approach
Step 1: Calculate the discriminant first. Before you commit to a method, check b² - 4ac. If it's negative, stop. No real solutions exist. If it's a perfect square, factoring might work.
Step 2: Try factoring. Look for two numbers that multiply to c and add to b. If you find them in under 30 seconds, factor. If not, move on.
Step 3: Use the quadratic formula. This is your workhorse. Plug in a, b, and c. Do the arithmetic carefully. Check your signs.
Step 4: Use completing the square for graph problems. If you're asked for the vertex, axis of symmetry, or anything involving the parabola's shape, complete the square to get vertex form: a(x - h)² + k = 0.
Common Mistakes to Avoid
- Forgetting to divide by a when it's not 1
- Squaring negative numbers incorrectly (b² is always positive)
- Dropping the ± sign after taking square roots
- Not simplifying your final answers
The quadratic formula handles everything. Memorize it. Write it down every time until it's automatic. The formula is your backup when factoring fails, and it tells you immediately whether solutions exist.