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:
- a = coefficient of x² (controls the "width" and direction of the parabola)
- b = coefficient of x (determines where the vertex sits horizontally)
- c = constant term (where the parabola crosses the y-axis)
Example
In the equation 2x² + 5x - 3 = 0:
- a = 2
- b = 5
- c = -3
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:
- x + 2 = 0 → x = -2
- x + 3 = 0 → x = -3
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
- x = (-5 + 7)/4 = 2/4 = 0.5
- x = (-5 - 7)/4 = -12/4 = -3
3. Completing the Square
This method rewrites the equation in vertex form: a(x - h)² = k
Steps:
- Move c to the right side
- Divide everything by a (if a ≠ 1)
- Take half of b, square it, add to both sides
- Factor the left side as a perfect square
- 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
- x = -3 + 2 = -1
- x = -3 - 2 = -5
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:
- D > 0 → Two distinct real solutions
- D = 0 → One repeated real solution
- D < 0 → Two complex solutions (no real x-intercepts)
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
- Forgetting to set the equation to zero first. You can't factor or use the formula if there's something on the right side.
- Losing the negative sign on b. In the formula, it's -b, not just b.
- Dividing by 2a incorrectly. The entire numerator goes over 2a, not just one part.
- Not checking your solutions. Plug them back into the original equation to verify.
When You'll Actually Use This
Quadratic equations aren't just textbook exercises. You'll encounter them in:
- Projectile motion — finding when a ball reaches a certain height
- Area problems — calculating dimensions when you know the total area
- Business — profit maximization, break-even analysis
- Engineering — designing parabolic arches, satellite dishes
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.