1 Quadratics — Factoring, the Formula, and the Discriminant
A quadratic equation has the form ax² + bx + c = 0 with a ≠ 0. Three standard solution methods:
- Factoring: rewrite as (x − r₁)(x − r₂) = 0 and set each factor to zero. Works neatly when integer roots exist.
- Completing the square: add and subtract (b/2a)² to write the left side as a perfect square.
- Quadratic formula: x = (−b ± √(b² − 4ac)) / (2a). Always works.
The discriminant Δ = b² − 4ac determines the nature of roots:
- Δ > 0 → two distinct real roots
- Δ = 0 → one repeated real root x = −b/(2a)
- Δ < 0 → no real roots (two complex conjugate roots)
Example: solve 2x² − 7x + 3 = 0 Δ = (−7)² − 4(2)(3) = 49 − 24 = 25 x = (7 ± √25) / 4 = (7 ± 5) / 4 x₁ = 12/4 = 3, x₂ = 2/4 = 1/2