Solution of Quadratic Equation- Complete Guide

What Is a Quadratic Equation?

A quadratic equation is any equation that can be written in the form ax² + bx + c = 0, where a, b, and c are constants, and a ≠ 0. The highest power of x is 2, which is what makes it "quadratic" — from the Latin quadratus, meaning square.

These equations pop up everywhere: physics, engineering, finance, computer graphics. If you're solving any problem involving parabolic motion, area calculations, or optimization, you're probably dealing with a quadratic.

The Standard Form

Every quadratic equation follows this format:

ax² + bx + c = 0

Here's what each part means:

Example

In the equation 2x² + 5x - 3 = 0:

How to Solve Quadratic Equations

You have four main methods. Each works, but some are faster depending on the problem.

1. Factoring

Factoring works when the equation can be broken down into two binomials. You find two numbers that multiply to give ac and add to give b.

Example: Solve x² + 5x + 6 = 0

Find two numbers that multiply to 6 (ac) and add to 5. Those numbers are 2 and 3.

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

Set each factor to zero:

Factoring is fastest when the numbers work out cleanly. But many quadratics don't factor nicely — that's when you need other methods.

2. Quadratic Formula

This formula works for every quadratic equation:

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

Just plug in a, b, and c. No guessing, no trial and error.

Example: Solve 2x² + 5x - 3 = 0

a = 2, b = 5, c = -3

x = (-5 ± √(25 - 4(2)(-3))) / 2(2)

x = (-5 ± √(25 + 24)) / 4

x = (-5 ± √49) / 4

x = (-5 ± 7) / 4

3. Completing the Square

This method rewrites the equation in vertex form: a(x - h)² = k

Steps:

  1. Move c to the right side
  2. Divide everything by a (if a ≠ 1)
  3. Take half of b, square it, add to both sides
  4. Factor the left side as a perfect square
  5. Solve for x

Example: Solve x² + 6x + 5 = 0

x² + 6x = -5

Take half of 6 (which is 3), square it (9), add to both sides:

x² + 6x + 9 = -5 + 9

(x + 3)² = 4

x + 3 = ±2

Completing the square is useful when you need the vertex form or when the equation doesn't factor.

4. Graphing

Graph the equation y = ax² + bx + c and find where it crosses the x-axis. Those x-intercepts are your solutions.

This method shows you the number and type of solutions visually. It's great for understanding what's happening, but it's not precise unless you use graphing software.

The Discriminant: What It Tells You

The expression under the square root in the quadratic formula is called the discriminant:

D = b² - 4ac

It tells you what kind of solutions you'll get before you solve:

Example: For 2x² + 5x - 3 = 0

D = 25 - 4(2)(-3) = 25 + 24 = 49

49 > 0, so we have two distinct real solutions: x = 0.5 and x = -3. ✓

Comparison: Which Method Should You Use?

Method Speed Reliability Best For
Factoring Fast Only if it factors nicely Simple equations with small integers
Quadratic Formula Medium Always works Any quadratic equation
Completing the Square Slow Always works Vertex form, deriving the formula
Graphing Varies Approximate only Visual understanding, finding roots quickly

How to Get Started: A Practical Approach

Here's the process I use every time:

Step 1: Check if it factors

Look at the equation. Can you find two numbers that multiply to ac and add to b? If yes, factor and solve. Takes 30 seconds if it works.

Step 2: Calculate the discriminant

If factoring doesn't work, compute D = b² - 4ac. This tells you what you're dealing with before you do heavy calculations.

Step 3: Apply the quadratic formula

Plug your values into x = (-b ± √D) / 2a. This is your reliable fallback when factoring fails.

Step 4: Simplify

Break down the square root if possible. Check if your solutions satisfy the original equation.

Common Mistakes to Avoid

When You'll Actually Use This

Quadratic equations aren't just textbook exercises. You'll encounter them in:

The quadratic formula specifically is one of those tools you'll use repeatedly throughout math, science, and technical fields. Memorize it. It's worth knowing cold.