Lesson 2 / 5 · 12 min read
Quadratic Equations
Factor, use the quadratic formula, and read the discriminant.
What is a quadratic?
A quadratic equation has the form:
ax2+bx+c=0(a=0)
Its graph is a parabola — a U-shape (opens up if a>0, down if a<0).
Method 1: Factoring
If you can write ax2+bx+c as a product (x−r1)(x−r2), then the solutions are x=r1 and x=r2 (zero product property).
Example. Solve x2−5x+6=0.
Find two numbers that multiply to 6 and add to −5: those are −2 and −3.
(x−2)(x−3)=0⟹x=2 or x=3
Method 2: The quadratic formula
When factoring doesn't work cleanly, use the quadratic formula. It always works:
x=2a−b±b2−4ac
Example. Solve 2x2+3x−2=0. Here a=2, b=3, c=−2.
x=4−3±9+16=4−3±5
So x=42=21 or x=4−8=−2.
The discriminant
The piece under the square root, b2−4ac, is the discriminant. It tells you how many real solutions the equation has before you finish solving:
| Discriminant | Real solutions |
|---|---|
| b2−4ac>0 | 2 distinct real solutions |
| b2−4ac=0 | 1 repeated real solution |
| b2−4ac<0 | 0 real solutions (2 complex) |
Key takeaways
- Try factoring first — it's fastest when it works.
- The quadratic formula never fails for ax2+bx+c=0.
- The discriminant predicts how many real solutions exist.