Quadratic Definition- Understanding Quadratic Equations
What Is a Quadratic Equation?
A quadratic equation is any equation that can be rearranged in the form ax² + bx + c = 0, where a, b, and c are constants, and a ≠ 0. The "2" in the exponent is what makes it quadratic — the highest power of x is squared.
If you see an x² term in an equation, you're dealing with a quadratic. That's the whole point. Everything else about quadratics is just figuring out what x actually equals.
The Standard Form
Every quadratic equation looks like this:
ax² + bx + c = 0
Breaking it down:
- a = coefficient of x² (controls the "width" and direction of the parabola)
- b = coefficient of x (controls where the vertex sits horizontally)
- c = constant term (where the parabola crosses the y-axis)
Yes, a must be non-zero. If a = 0, you don't have a quadratic anymore — you have a linear equation. That's a different problem entirely.
How to Identify a Quadratic Equation
Not every equation with an x in it is quadratic. Check for these requirements:
- The equation must contain an x² term
- The x² term must be the highest power of x
- The equation can be rearranged to equal zero
Examples of quadratic equations:
- x² - 5x + 6 = 0 ✓
- 2x² + 3x - 7 = 0 ✓
- x² = 9 (rearranges to x² - 9 = 0) ✓
Examples that are NOT quadratic:
- x + 3 = 0 (no x² term — linear)
- x³ - 4x = 0 (x³ is the highest power — cubic)
- x⁴ + 2x² - 1 = 0 (technically has x⁴ — not standard quadratic form)
Types of Quadratic Equations
Pure Quadratic
When b = 0, you get ax² + c = 0. No x term, just x². Example: x² - 16 = 0. These are straightforward — just isolate x² and take the square root.
Complete Quadratic
When all three terms (a, b, and c) are present. Example: x² + 5x + 6 = 0. This is what most people mean when they say "quadratic equation."
Imaginary Solutions
Some quadratics have no real solutions. When the discriminant (more on that later) is negative, you get imaginary numbers. x² + 4 = 0 has no real solution because no real number squared equals -4. That's fine — just know it happens.
How to Solve Quadratic Equations
There are three main methods. Pick the one that works best for your specific equation.
1. Factoring
Factor the quadratic into two binomials, then set each equal to zero. This only works when the equation factors nicely.
Example: x² + 5x + 6 = 0
Find two numbers that multiply to 6 and add to 5. Those numbers are 2 and 3.
(x + 2)(x + 3) = 0
Set each factor to zero: x + 2 = 0 or x + 3 = 0
Solutions: x = -2 or x = -3
Factoring is fast when it works. The problem is that many quadratics don't factor neatly into integers.
2. Completing the Square
Rewrite the equation so a perfect square trinomial can be isolated and solved. This method always works, but it's slower than factoring.
Steps:
- Move c to the right side
- Divide by a if needed
- Take half of b, square it, and add to both sides
- Factor the left side as a square
- Solve for x
This method is useful when you need to find the vertex of a parabola or when the equation doesn't factor.
3. Quadratic Formula
The quadratic formula works for every quadratic equation. Memorize it:
x = (-b ± √(b² - 4ac)) / 2a
Plug in a, b, and c from your equation. Do the arithmetic. That's it.
Comparing the Methods
| Method | Speed | Reliability | Best Used When |
|---|---|---|---|
| Factoring | Fast | Only works for nice numbers | Small integers, perfect squares |
| Completing the Square | Medium | Always works | Vertex form, graph analysis |
| Quadratic Formula | Medium | Always works | Everything else |
If you're stuck on a problem and factoring isn't obvious, just use the quadratic formula. It's not a race.
The Discriminant: What It Tells You
The part under the square root in the quadratic formula is called the discriminant: b² - 4ac
It tells you what kind of solutions you'll get before you solve:
- Positive (b² - 4ac > 0): Two distinct real solutions
- Zero (b² - 4ac = 0): One repeated real solution
- Negative (b² - 4ac < 0): Two imaginary solutions
Check the discriminant first. It'll save you from grinding through arithmetic on problems with no real answers.
Getting Started: Solving a Quadratic Equation
Let's walk through an example step by step.
Problem: 2x² + 4x - 6 = 0
Step 1: Identify a, b, and c.
a = 2, b = 4, c = -6
Step 2: Check the discriminant.
b² - 4ac = 16 - 4(2)(-6) = 16 + 48 = 64 (positive — two real solutions)
Step 3: Plug into the quadratic formula.
x = (-4 ± √64) / 2(2)
x = (-4 ± 8) / 4
Step 4: Solve both possibilities.
x = (-4 + 8) / 4 = 4/4 = 1
x = (-4 - 8) / 4 = -12/4 = -3
Solutions: x = 1 or x = -3
Verify by plugging back in: 2(1)² + 4(1) - 6 = 0 ✓ and 2(-3)² + 4(-3) - 6 = 18 - 12 - 6 = 0 ✓
Common Mistakes
- Forgetting to set the equation equal to zero first. You can't factor or use the formula if the right side isn't 0.
- Losing the negative sign on b. The formula is -b, not +b.
- Not checking for extraneous solutions. Plug your answers back in. Always.
- Assuming factoring is the only method. It's not. Use whatever works.
Where Quadratics Show Up
Quadratic equations appear in more places than most people realize:
- Physics: Projectile motion uses s = -16t² + vt + s₀
- Business: Profit functions, cost minimization
- Engineering: Parabolic arches, reflective surfaces
- Computer graphics: Bezier curves, rendering
If you're studying math, you'll see quadratics constantly. If you're not, the logic of setting up an equation and solving for unknowns still applies everywhere.