How to Use the Quadratic Formula (Clear Step-by-Step Method)

Knowing the quadratic formula and using it correctly are two different skills. Here's the exact order of steps, the sign trap that catches almost everyone, and how to check your answer before you trust it.

By Petrus Sheya

August 5, 2026 · 4 min read

Why do so many people get the quadratic formula wrong, even after they've memorized it?

Almost never because they forgot the formula. It's because of what happens around it: misreading a sign before you plug in, or skipping the check at the end. The formula itself is just arithmetic. Getting a right answer is a process, and a process has steps you can get wrong in order.

Think of it like following a recipe. You can know the recipe by heart and still ruin the dish, because you measured an ingredient wrong or skipped the taste test at the end. Same here. Let's walk through the process one step at a time, and catch the exact spots where it usually breaks.


Step 1: get the equation into standard form first

The formula only works on an equation shaped like ax2+bx+c=0ax^2 + bx + c = 0, everything on one side, in decreasing powers of xx, set equal to zero. Most textbook equations don't start out looking like that.

Take x2=5x6x^2 = 5x - 6. If you read aa, bb, cc straight off this without rearranging, you'll grab the wrong numbers. Move everything to one side first: x25x+6=0x^2 - 5x + 6 = 0. Now a=1a = 1, b=5b = -5, c=6c = 6, and those signs are exactly what the formula expects.

The equation isn't in standard form yet. Toggle the reading and watch how a missed sign quietly solves the wrong parabola.

x² = 5x − 6
standard formx² − 5x + 6 = 0
a, b, c read off1, 5, -6
roots you'd get-6.00, 1.00

Flip between the naive reading and the rearranged one above. Same equation, same formula, but one sign flip sends you to a completely different pair of roots. Rearranging first isn't a formality, it's where most mistakes actually happen.


Step 2: plug in and follow the formula, in order

Once aa, bb, cc are correct, the rest is mechanical. Here's the formula:

x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

Break it into small steps and it stops feeling like a wall of symbols. Compute the discriminant first, then its square root, then build both roots, then simplify. Do the steps out of order and you'll make an arithmetic slip. Do them in order and it's just filling in blanks.

One equation, five steps, in order. Press play, or drag through them yourself.

2x² + 5x − 3 = 0
1
Identify a, b, c
a = 2, b = 5, c = -3
2
Compute the discriminant
3
Take the square root
4
Build both roots
5
Simplify
discriminant49
roots-3.00, 0.50

Watch 2x2+5x3=02x^2 + 5x - 3 = 0 get solved one step at a time. Nothing here is a leap, each line uses only the number from the line before it. The formula isn't one big computation. It's five small ones, done in sequence.


Step 3: know what kind of answer to expect

Before you grind through a square root by hand, look at just the piece under the radical, b24acb^2 - 4ac. We call it the discriminant, and it tells you what your answer is going to look like before you finish solving.

If it's a perfect square, like 4949 or 1616, your roots come out as clean whole numbers or simple fractions. If it's positive but not a perfect square, you're getting an irrational answer, a decimal that never ends or a square root you leave unsimplified. If it's negative, there's no real square root to take at all, so stop, there's no real solution.

Before you reach for a calculator, the discriminant alone tells you whether the square root will land on a whole number.

x² − 5x + 6 = 0b² − 4ac = 1√1 = 1
discriminant1
verdictclean, whole-number roots

Slide through the examples. Same formula every time, but the discriminant alone tells you whether you're about to land on a tidy integer or a messy decimal. Check the discriminant before you reach for a calculator. It saves you from assuming you made an error when the answer was just never going to be a whole number.


Step 4: always check your answer by plugging it back in

You've got two numbers from the formula. Are they actually right? The only way to know for sure is to substitute each one back into the original equation and see if it gives zero.

This is the taste test. If your root is correct, plugging it in makes every term cancel out exactly. If you made an arithmetic slip anywhere upstream, this is where you catch it, before you write the answer down as final.

Drag the point along the curve. The residual only hits zero exactly at a true root, everywhere else it's a nonzero leftover.

2x² + 5x − 3 at this x-6.000
statusnot a root

Drag the point along the curve. Away from a root, plugging in xx leaves a nonzero leftover. Right at x=0.5x = 0.5 or x=3x = -3, that leftover collapses to exactly zero. A root isn't just a number the formula spit out. It's a number that makes the original equation true, and you can verify that yourself in ten seconds.


The short version

Using the quadratic formula well comes down to four habits, not one formula. Rearrange the equation into ax2+bx+c=0ax^2+bx+c=0 before you read off aa, bb, cc, since that's where sign errors sneak in. Work the formula in order: discriminant, square root, both roots, simplify. Check the discriminant first to know if you're expecting a clean number or a decimal, so an ugly answer doesn't make you think you failed. And always plug your final answer back into the original equation to confirm it actually works.

Get those four habits right, and the formula itself was never the hard part.


All visualizations are interactive React components running entirely in your browser. The step walkthrough uses requestAnimationFrame to auto-advance. No libraries beyond React.