Learn multiple methods for solving quadratic equations, a fundamental algebra skill tested frequently on the SAT.
Equations of the form ax² + bx + c = 0, where a ≠ 0.
When ax² + bx + c can be factored into (dx + e)(fx + g) = 0
Steps:
Example: Solve x² - 5x + 6 = 0
1. Factor: (x - 2)(x - 3) = 0
2. Solutions: x - 2 = 0 → x = 2
x - 3 = 0 → x = 3
Works for any quadratic equation:
x = [-b ± √(b² - 4ac)]/(2a)
Example: Solve 2x² + 3x - 5 = 0
a = 2, b = 3, c = -5
x = [-3 ± √(9 - 4(2)(-5))]/4
= [-3 ± √49]/4
= (-3 ± 7)/4
Solutions: x = 1 and x = -2.5
Useful when quadratic formula is difficult to apply:
Example: Solve x² + 6x - 7 = 0
1. x² + 6x = 7
2. Add (6/2)² = 9: x² + 6x + 9 = 16
3. (x + 3)² = 16
4. x + 3 = ±4
5. x = -3 ± 4 → x = 1 or x = -7
What are the solutions to the equation 3x² - 7x - 6 = 0?
Consider these approaches:
Solution using factoring:
1. Find two numbers that multiply to -18 and add to -7: -9 and 2
2. Rewrite middle term: 3x² - 9x + 2x - 6 = 0
3. Factor by grouping: (3x² - 9x) + (2x - 6) = 0
3x(x - 3) + 2(x - 3) = 0
(3x + 2)(x - 3) = 0
4. Solutions: 3x + 2 = 0 → x = -2/3
x - 3 = 0 → x = 3
The correct answer is A) x = -2/3 and x = 3.