Study Guides

How to Solve Quadratic Equations: 4 Methods

A quadratic has at most two solutions, and one formula finds both every time. The hard part is picking the fastest of the four methods, so this guide adds a discriminant pre-check and a decision table that tells you which route is quickest for any equation.

Algebra 8 min read Updated Jun 2026

A quadratic equation has at most two real solutions, and one formula finds both every time: x = (−b ± √(b² − 4ac)) / 2a. The catch is that the formula is rarely the fastest route to the answer. Pick the wrong method and a 30-second problem turns into a five-minute slog.

Δ > 0
2
Two real roots · a perfect-square Δ factors cleanly
Δ = 0
1
One repeated real root
Δ < 0
0
No real roots · two complex solutions

That single number, the discriminant b² − 4ac, is the cheapest move in the whole problem. Compute it first and you know how many answers exist before you commit to any method.

What Makes an Equation Quadratic?

An equation is quadratic when the highest power of the variable is exactly 2. Standard form is ax² + bx + c = 0, where a, b, and c are constants and a ≠ 0. The squared term is non-negotiable.

If a were 0, the x² term would vanish and you would be left with a linear equation. That single condition explains one of the most common search-engine questions about quadratics.

Take 7x + 2x + 2. Combine like terms and it collapses to 9x + 2, which has no x² anywhere. It is linear, not quadratic, and it carries at most one solution rather than two. The same exponent logic that governs index laws for powers is what flags the difference at a glance.

Recognising the form matters because the squared term is also why quadratics describe curved paths. Physics problems like projectile motion resolve to a quadratic in time, and the two roots correspond to the two moments an object passes a given height.

How Do You Solve It Step by Step?

The quadratic formula solves every quadratic, factorable or not. Work it once carefully and the procedure transfers to any equation. Here it is applied to 2x² + 5x − 3 = 0.

  1. Write standard form. Move every term to one side so the other side equals zero. Here 2x² + 5x − 3 = 0 is already arranged, with a = 2, b = 5, c = −3.
  2. Identify a, b, and c with their signs. A dropped negative sign on c is the single most frequent first-step mistake. Keep c = −3, not 3.
  3. Compute the discriminant b² − 4ac. That is 5² − 4(2)(−3) = 25 + 24 = 49. A positive, perfect-square value signals two clean rational roots, so this one would also factor.
  4. Substitute into x = (−b ± √(b² − 4ac)) / 2a. This gives x = (−5 ± √49) / 4, which simplifies to x = (−5 ± 7) / 4.
  5. Split the ± into two calculations. The plus branch gives x = (−5 + 7) / 4 = 1/2. The minus branch gives x = (−5 − 7) / 4 = −3.
  6. Check both roots in the original equation. Substituting x = 1/2 returns 0.5 + 2.5 − 3 = 0, and x = −3 returns 18 − 15 − 3 = 0. Both confirm.

Six steps, two answers, zero guesswork. The formula never fails because it does not depend on the numbers being friendly. If you want to verify your own working line by line, the step-by-step quadratic equation solver shows each substitution.

Which Method Should You Use?

Four methods solve quadratics: factoring, the quadratic formula, completing the square, and graphing. They are not interchangeable in speed. The equation's shape tells you which one wins.

Equation looks like Fastest method Why
Small integers, a = 1, factors cleanly Factoring Reads off the roots in seconds with no formula
b = 0, form ax² + c = 0 Square-root method Isolate x² and take ±√ directly
Ugly numbers, will not factor Quadratic formula Works for every quadratic, irrational roots included
Need the vertex or a proof Completing the square Produces vertex form (x − h)² = k
Approximate roots or a picture Graphing x-intercepts are the real solutions
Match the equation's form to the method before solving. Source: AskSia editorial, June 2026.

The two methods students reach for most are factoring and the formula. The honest comparison is speed against reliability.

FACTORING
~4 steps
Fastest when Δ is a perfect square · fails on irrational roots
QUADRATIC FORMULA
every time
Solves all real coefficients · slightly slower setup

Quadratics also sit on a prerequisite chain. Run them through AskSia's Concept Map and you can see how factoring feeds completing the square, which in turn derives the formula itself. The four methods are one idea viewed from four angles.

What Does the Discriminant Tell You?

The discriminant is the part of the formula under the square root: b² − 4ac. Calculate it before anything else. It reveals both how many real solutions exist and which method will be quickest.

Discriminant b² − 4ac Roots What to do
Positive, perfect square Two distinct rational Try factoring first; it will work
Positive, not a perfect square Two distinct irrational Skip factoring, use the formula
Exactly zero One repeated real Factors as a perfect square
Negative No real roots Stop if real-only; else use complex numbers
A ten-second check that decides method and root count. Source: AskSia editorial, June 2026.

This is the pre-check most tutorials skip. They teach the methods in isolation and leave you to discover, mid-problem, that the equation does not factor. The discriminant tells you that in advance.

It matters on timed exams too. The quadratic formula is printed on the SAT reference sheet, but the discriminant is not, and knowing it saves the seconds spent trying to factor something that never will.

Common Mistakes by Students

Most lost marks on quadratics come from a small set of repeatable errors, not from misunderstanding the concept. Each one has a fix that takes seconds.

Method Common error Fix
Quadratic formula Reporting only one root, dropping the ± Always write both branches before simplifying
Quadratic formula Sign error on −b when b is negative Substitute each value inside brackets
Factoring Forcing a split that does not exist Check Δ is a perfect square first
Completing the square Adding (b/2)² to one side only Balance both sides of the equation
Any method Dividing by x and losing the x = 0 root Move all terms to one side, set equal to 0
The five errors that cost the most marks, and their fixes. Source: AskSia editorial, June 2026.

The last row is the quiet one. Dividing both sides by x feels efficient, but it deletes a valid solution. Always collect terms on one side instead.

Quadratics are the backbone of Algebra I and II and reappear on the SAT math section, so the same handful of errors costs points across years of coursework.

Frequently Asked Questions

How do you solve quadratic equations step by step?

Write the equation in standard form ax² + bx + c = 0, identify a, b, and c with their signs, then compute the discriminant b² − 4ac. Substitute the three values into x = (−b ± √(b² − 4ac)) / 2a, split the ± into a plus branch and a minus branch, and simplify each to get the two roots. For 2x² + 5x − 3 = 0, this gives x = 1/2 and x = −3. Always finish by substituting both answers back into the original equation; each should return 0. The six-step routine works on every quadratic, which is why it is worth drilling until it is automatic. Build a deck of five worked equations in AskSia's Flashcards and let the spaced-repetition schedule resurface them before your next test.

Is 7x + 2x + 2 a quadratic equation?

No. Combine the like terms 7x and 2x and the expression becomes 9x + 2, where the highest power of x is 1. A quadratic requires a term with x raised to the power of 2, so 9x + 2 is linear. Linear equations have at most one solution; here, setting 9x + 2 = 0 gives the single answer x = −2/9. The test for a quadratic is simple: after simplifying, is there a surviving x² term with a non-zero coefficient? If the answer is no, it is not quadratic, regardless of how many x terms appeared before you combined them. When you are unsure, simplify fully first, then look for the squared term.

What is the easiest method to solve a quadratic equation?

Factoring is the fastest when it works, often resolving in about four steps with no formula. It only works when the discriminant b² − 4ac is a perfect square, which means the roots are rational. When the numbers are awkward or the equation will not factor, the quadratic formula is easier overall because it never fails, even on irrational or complex roots. The reliable rule: compute the discriminant first. A perfect square points you to factoring; anything else points you to the formula. That ten-second check stops you from spending two minutes hunting for a factorization that does not exist. AskSia's AI tutor can show the same equation solved both ways so you can feel the difference.

What are the four ways to solve a quadratic equation?

The four standard methods are factoring, the quadratic formula, completing the square, and graphing. Factoring is quickest for clean rational roots. The quadratic formula, x = (−b ± √(b² − 4ac)) / 2a, solves any quadratic. Completing the square rewrites the equation as (x − h)² = k and is the route that derives the formula itself, useful when you need the vertex. Graphing locates the real solutions as the x-intercepts and is best for approximate answers or a visual check. They all reach the same roots; the difference is speed and what extra information each gives you. A fifth shortcut, the square-root method, applies only to the special form ax² + c = 0 where b is zero.

When does a quadratic have no real solutions?

A quadratic has no real solutions when its discriminant b² − 4ac is negative. A negative value sits under the square root in the formula, and no real number squares to a negative, so the two solutions become complex numbers involving i, the square root of −1. Graphically, this is the case where the parabola never crosses the x-axis. For example, x² + x + 1 = 0 has a discriminant of 1 − 4 = −3, so it has no real roots. If your course covers complex numbers, you still solve it with the same formula and report two complex conjugate roots. If it does not, a negative discriminant is your signal to write "no real solutions" and move on. Check this before solving with a step-by-step solver.

Recommended

Study faster with AskSia

Turn course materials into clear notes, practice questions, and review plans.

Try AskSia

Let's Get in Touch

AskSia on InstagramAskSia on TikTokAskSia on DiscordAskSia on FacebookAskSia on LinkedInAskSia on Reddit