Solving Quadratic Equations- Best Methods Compared
What Quadratic Equations Actually Are
A quadratic equation is any equation that can be written as ax² + bx + c = 0, where a, b, and c are numbers and a is never zero. The "²" (squared) part is what makes it quadratic.
Examples:
- x² + 5x + 6 = 0
- 2x² - 4x - 8 = 0
- 3x² = 12
That's it. No fancy definitions. If you have an x² term and nothing higher (no x³), you're dealing with a quadratic equation.
The Four Methods: What You're Working With
There are four main ways to solve these equations. Each works. Each has situations where it's the obvious choice and situations where it's a terrible idea. Here's the breakdown.
1. Factoring
Factoring means rewriting the equation as a product of two binomials. If you can do it, it's the fastest method by far.
Example: x² + 5x + 6 = 0 becomes (x + 2)(x + 3) = 0
Then x + 2 = 0 or x + 3 = 0, giving you x = -2 or x = -3.
When it works: When the numbers cooperate. You need integers that multiply to give c and add to give b. Small, clean numbers are ideal.
When it fails: When the numbers don't factor nicely. Try factoring x² + 4x + 1 = 0. You can't. This is where people get stuck.
2. Quadratic Formula
This is the universal solution. It works for every quadratic equation, no exceptions.
The formula:
x = (-b ± √(b² - 4ac)) / 2a
Plug in a, b, and c from your equation. Do the arithmetic. You get the answer. It's not elegant, but it works.
Example: For x² + 5x + 6 = 0, you get a=1, b=5, c=6.
x = (-5 ± √(25 - 24)) / 2 = (-5 ± 1) / 2
Solutions: x = -2 or x = -3
When it works: Always. Every single time. No exceptions.
3. Completing the Square
This method rearranges the equation into a perfect square trinomial. It's more steps than the formula, but it teaches you how the formula was derived.
Steps:
- Move the constant term to the other side
- Divide the coefficient of x by 2, square it, add it to both sides
- Factor the perfect square
- Solve using square roots
It's useful when you need vertex form for graphing, or when the quadratic formula gives you messy numbers.
4. Graphing
Graph the equation y = ax² + bx + c. The x-values where the graph crosses the x-axis are your solutions.
Problem: Unless you have a graphing calculator, this gives you approximate answers at best. It's not precise for exact solutions.
When it helps: Visualizing the problem. Seeing how many roots exist. Understanding the shape of the parabola.
Method Comparison
| Method | Speed | Accuracy | Always Works | Best For |
|---|---|---|---|---|
| Factoring | Fastest | Exact | No | Clean integer solutions |
| Quadratic Formula | Medium | Exact | Yes | Any quadratic equation |
| Completing the Square | Slow | Exact | Yes | Vertex form, deriving the formula |
| Graphing | Varies | Approximate | Yes | Visualization, approximate roots |
Which Method Should You Actually Use?
Here's the practical answer:
- Can you factor it in 10 seconds? → Factor it. Done.
- Can't factor it or takes too long? → Use the quadratic formula. It's always right.
- Need to graph or find vertex form? → Complete the square.
- Need a quick visual or approximate answer? → Graph it.
The quadratic formula is your backup plan. Factoring is your first choice if the numbers work out. Most textbooks teach you to try factoring first, then switch to the formula when factoring fails.
The Discriminant: Knowing What You're Getting Into
The part under the square root in the quadratic formula is called the discriminant: b² - 4ac.
It tells you what kind of answers you'll get:
- Positive (b² - 4ac > 0): Two real solutions
- Zero (b² - 4ac = 0): One repeated solution
- Negative (b² - 4ac < 0): Two complex solutions (involving i)
Check this before you start solving. It tells you what to expect.
Getting Started: A Practical Example
Let's solve 2x² + 7x - 4 = 0 using the quadratic formula.
Step 1: Identify a, b, c
a = 2, b = 7, c = -4
Step 2: Plug into the formula
x = (-7 ± √(7² - 4(2)(-4))) / 2(2)
Step 3: Simplify under the square root
x = (-7 ± √(49 + 32)) / 4
x = (-7 ± √81) / 4
Step 4: Solve both possibilities
x = (-7 + 9) / 4 = 2/4 = 0.5
x = (-7 - 9) / 4 = -16/4 = -4
Check: 2(0.5)² + 7(0.5) - 4 = 0 ✓ and 2(-4)² + 7(-4) - 4 = 0 ✓
Solutions are x = 0.5 and x = -4.
The Bottom Line
You have four tools. Use the right one for the job:
Factoring for quick wins with clean numbers. Quadratic formula when factoring doesn't work or you can't be bothered to hunt for factors. Completing the square when you need vertex form or are working through algebra proofs. Graphing for visualization and rough estimates.
The quadratic formula works every time. That's why it's taught last and expected to be remembered forever. Factoring is faster when it works, but the formula is your guarantee when it doesn't.
Know both. Use the formula when you need to. It's not cheating—it's math.