Quadratic Solutions- Four Methods Explained

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 x² term is what makes it "quadratic" — that squared variable is the whole point.

These equations show up everywhere. Physics, engineering, finance, computer graphics — if you're solving for something that curves, you're probably dealing with a quadratic. The question isn't whether you'll need this. It's which method will get you the answer fastest.

Method 1: Factoring

Factoring means rewriting the quadratic as a product of two binomials. If you can do this, finding the solutions is trivial — just set each binomial equal to zero.

How it works:

You need two numbers that multiply to give ac and add to give b. Then you rewrite the middle term, group, and factor.

Example:

x² + 5x + 6 = 0

You need two numbers that multiply to 6 and add to 5. Those numbers are 2 and 3.

(x + 2)(x + 3) = 0

x = -2 or x = -3

When to use it: When the numbers cooperate. Small coefficients, easy multiplication. When it works, it's the fastest method. When it doesn't work, move on immediately — don't waste time forcing it.

Method 2: Quadratic Formula

The quadratic formula solves any quadratic equation. Any of them. Plug in a, b, and c, do the arithmetic, and you'll get your answers.

The formula:

x = (-b ± √(b² - 4ac)) / 2a

The discriminant is the stuff under the square root: b² - 4ac. This tells you what kind of answers you're getting:

Example:

2x² + 7x + 3 = 0

a = 2, b = 7, c = 3

x = (-7 ± √(49 - 24)) / 4

x = (-7 ± √25) / 4

x = (-7 ± 5) / 4

x = -3 or x = -0.5

When to use it: This is your default. Can't factor it? Fractions involved? Ugly numbers? Use the formula. It's not elegant, but it works every time.

Method 3: Completing the Square

Completing the square rewrites the equation so you can take a square root directly. It converts the quadratic into vertex form: a(x - h)² = k.

The process:

  1. Move c to the other side
  2. Divide everything by a if a ≠ 1
  3. Take half of b/a, square it, add to both sides
  4. Factor the left side into a squared binomial
  5. Solve for x

Example:

x² + 6x + 5 = 0

x² + 6x = -5

(6/2)² = 9. Add 9 to both sides:

x² + 6x + 9 = 4

(x + 3)² = 4

x + 3 = ±2

x = -1 or x = -5

When to use it: When you need vertex form for graphing. When working with conic sections in analytic geometry. When the problem specifically asks for it. Otherwise, the quadratic formula is usually faster.

Method 4: Graphing

Graph the quadratic and see where it crosses the x-axis. Those crossing points are your solutions.

How it works:

Plot y = ax² + bx + c. Find the x-intercepts. That's it.

The problem: You need technology for accurate results. Pencil-and-paper graphing rarely gives you exact values — you'll get approximations at best.

When to use it: Visual learners. Checking your answers. Understanding the relationship between the equation and its graph. Not for getting precise solutions.

Method Comparison

MethodSpeedAccuracyWorks WhenBest For
FactoringFastestExactClean numbersSimple quadratics
Quadratic FormulaMediumExactAlwaysGeneral use
Completing the SquareSlowestExactAlwaysVertex form, derivation
GraphingVariesApproximateAlwaysVisualization, checking

How to Choose the Right Method

Look at the coefficients first.

If b is 0, you have a pure quadratic (ax² + c = 0). Just isolate x² and take the square root. No formula needed.

If c is 0, factor out x: x(ax + b) = 0. One solution is always x = 0.

If a = 1 and b is even, completing the square is clean.

Otherwise? Use the quadratic formula. It's not clever, but it's reliable. Stop trying to factor 3,847x² + 1,293x - 892 = 0. Just plug and chug.

Getting Started: Step-by-Step

Here's how to solve any quadratic you encounter:

  1. Write it in standard form. ax² + bx + c = 0. Move everything to one side.
  2. Check if it's factorable. Look for small integers. Can you find two numbers that multiply to ac and add to b? If yes, factor and solve. If not, go to step 3.
  3. Use the quadratic formula. Identify a, b, c. Plug into x = (-b ± √(b² - 4ac)) / 2a. Calculate both solutions.
  4. Check your work. Plug each answer back into the original equation. It should equal zero.

That's it. No magic. No secret sauce. Factoring when it's easy, the formula when it's not, and completing the square when the problem demands vertex form.