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

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

The Catch

The discriminant (b² - 4ac) tells you what you're dealing with:

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

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

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

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.