4.2 Solving Quadratic Equations by Multiple Methods
Key Takeaways
- A quadratic equation $ax^2 + bx + c = 0$ ($a \neq 0$) can be solved by factoring, extracting square roots, completing the square, or the quadratic formula.
- The Zero-Product Property ($AB = 0 \iff A = 0 \text{ or } B = 0$) forms the foundation of solving quadratic equations by factoring.
- The Square Root Property $(x - h)^2 = k \implies x = h \pm \sqrt{k}$ requires incorporating both positive and negative roots ($\pm$).
- Vieta's formulas provide an instantaneous SAT shortcut: the sum of roots is $-\frac{b}{a}$, and the product of roots is $\frac{c}{a}$, bypassing the need to solve for individual roots.
- On the Digital SAT, graphing $y = ax^2 + bx + c$ in Desmos and clicking the $x$-intercept gray dots reveals real solutions in seconds.
4.2 Solving Quadratic Equations by Multiple Methods
Quick Summary: A quadratic equation is a second-degree polynomial equation of the form $ax^2 + bx + c = 0$ (where $a \neq 0$). Solving a quadratic equation means finding all values of $x$ (called roots, zeros, or solutions) that satisfy the equation. On the Digital SAT, choosing the fastest method—factoring, square roots, completing the square, or the quadratic formula—saves critical test time.
The Four Solution Methods Overview
+-----------------------------+
| ax^2 + bx + c = 0 |
+--------------+--------------+
|
+------------------------------+------------------------------+
| | |
v v v
+-----------------+ +-----------------+ +-----------------+
| 1. FACTORING | | 2. SQUARE ROOTS | | 3. QUAD FORMULA |
| Fastest when | | Fastest when | | Always works; |
| easily factored | | b = 0 or | | best for messy |
| over integers | | (x - h)^2 = k | | radicals |
+-----------------+ +-----------------+ +-----------------+
Method 1: Factoring & The Zero-Product Property
The Zero-Product Property states that if the product of two or more algebraic factors equals zero, at least one factor must equal zero:
Step-by-Step Factoring Workflow
- Zero Out: Move all terms to one side so the equation equals zero: $ax^2 + bx + c = 0$.
- GCF: Factor out any common monomial greatest common factor.
- Decompose: Factor the quadratic expression into linear binomials $(p_1 x + q_1)(p_2 x + q_2) = 0$.
- Solve: Set each linear factor equal to zero and solve for $x$.
Worked Example 1: Solving by Factoring
- Product $ac = 2 \times (-15) = -30$, Sum $b = -7$. Factors: $-10$ and $+3$.
- Split middle term: $2x^2 - 10x + 3x - 15 = 0$.
- Group: $2x(x - 5) + 3(x - 5) = 0 \implies (2x + 3)(x - 5) = 0$.
- Set factors to zero:
Roots: $x = -\frac{3}{2}$ and $x = 5$.
Method 2: Taking Square Roots (Square Root Property)
When a quadratic equation has no linear term ($b = 0$) or is expressed in completed square form $(x - h)^2 = k$:
[!CAUTION] The Missing Plus-Minus Trap: Never forget the $\pm$ symbol when taking the square root of both sides. For example, $x^2 = 25 \implies x = \pm 5$ ($x = 5$ and $x = -5$). Omitting the negative root is one of the most common SAT errors.
Worked Example 2: Square Root Property
- Isolate the squared term:
- Take the square root of both sides:
- Split into two cases:
Roots: $x = 8$ and $x = 0$.
Method 3: Completing the Square
Completing the square transforms any quadratic $ax^2 + bx + c = 0$ into vertex/squared form $(x - h)^2 = k$. This is especially useful when finding circle equations or rewriting quadratic functions into vertex form.
Protocol for $x^2 + bx + c = 0$ ($a = 1$)
- Move the constant $c$ to the right side: $x^2 + bx = -c$.
- Take half the coefficient of $x$, square it, and add it to both sides: $\left(\frac{b}{2}\right)^2$.
- Factor the left side as a perfect square: $\left(x + \frac{b}{2}\right)^2 = -c + \left(\frac{b}{2}\right)^2$.
- Apply the square root property.
Worked Example 3: Completing the Square
- Move constant: $x^2 - 8x = -5$
- Add $\left(\frac{-8}{2}\right)^2 = (-4)^2 = 16$ to both sides:
- Take square roots:
Method 4: The Quadratic Formula
For any quadratic equation $ax^2 + bx + c = 0$ where $a \neq 0$, the solutions are given by:
Worked Example 4: Quadratic Formula
Here $a = 2, b = 5, c = -4$.
SAT Power Shortcut: Vieta's Formulas (Sum & Product of Roots)
Many SAT questions ask for "the sum of the solutions" or "the product of the solutions" rather than the individual roots themselves. Solving the entire equation is completely unnecessary!
For any quadratic equation $ax^2 + bx + c = 0$ with roots $r_1$ and $r_2$:
Proof of Vieta's Sum Formula:
Worked Example 5: Instant Sum of Roots
Question: What is the sum of the solutions to $4x^2 - 28x + 13 = 0$?
- Traditional Method: Use quadratic formula, obtain $x = \frac{28 \pm \sqrt{576}}{8}$, calculate both roots, then add them. (Takes 45 seconds).
- Vieta's Shortcut: $\text{Sum} = -\frac{b}{a} = -\frac{-28}{4} = \frac{28}{4} = 7$. (Takes 3 seconds).
Worked Example 6: Sum of Squares of Roots
Question: If $r_1$ and $r_2$ are the roots of $x^2 - 6x + 4 = 0$, what is $r_1^2 + r_2^2$?
- Using the algebraic identity: $r_1^2 + r_2^2 = (r_1 + r_2)^2 - 2r_1 r_2$.
- Sum of roots: $r_1 + r_2 = -\frac{-6}{1} = 6$.
- Product of roots: $r_1 r_2 = \frac{4}{1} = 4$.
- Therefore: $r_1^2 + r_2^2 = (6)^2 - 2(4) = 36 - 8 = 28$.
Method Selection Matrix for the Digital SAT
| Equation Structure | Recommended Method | Why It Is Fastest |
|---|---|---|
| $ax^2 + bx = 0$ (No constant $c$) | Factor out $x$ | Gives $x(ax + b) = 0 \implies x = 0, -b/a$ instantly. |
| $a(x-h)^2 = k$ or $ax^2 - c = 0$ | Square Root Property | Direct algebraic inversion without expanding. |
| $x^2 + bx + c = 0$ with clean integer factors | Factoring | Mental factoring in under 10 seconds. |
| Question asks for "Sum of solutions" | Vieta's Formula ($-\frac{b}{a}$) | Bypasses finding individual roots entirely. |
| Question asks for "Product of solutions" | Vieta's Formula ($\frac{c}{a}$) | Direct calculation without solving. |
| Radicals in answer choices or non-factorable | Quadratic Formula | Deterministic and immune to factoring dead-ends. |
Digital SAT Desmos Workflow for Quadratic Roots
- Type the Equation: Enter
y = 2x^2 - 7x - 15. - Identify $x$-Intercepts: Desmos automatically generates gray dots where the curve crosses the $x$-axis ($y = 0$).
- Read the Coordinates: Click the gray dots to inspect the roots $(-1.5, 0)$ and $(5, 0)$.
- Fraction Conversion: In Desmos, type
-1.5on a new line and click the fraction toggle icon to get $-\frac{3}{2}$. - Direct Root Equation: Alternatively, type
0 = 2x^2 - 7x - 15into Desmos. Vertical dashed lines will appear at the exact root locations $x = -1.5$ and $x = 5$.
Common Pitfalls & Exam Traps
- Dividing by $x$ and losing a root: In $x^2 = 5x$, dividing both sides by $x$ gives $x = 5$, completely losing the solution $x = 0$. Always factor: $x(x - 5) = 0 \implies x = 0, 5$.
- Forgetting $\pm$ when taking square roots: $(x - 3)^2 = 16 \implies x - 3 = \pm 4$, giving $x = 7$ and $x = -1$.
- Sign confusion in Quadratic Formula: If $b = -6$, then $-b = -(-6) = +6$. Also, $(-6)^2 = +36$, never $-36$.
- Vieta's Formula sign: The sum of roots has a negative sign ($-\frac{b}{a}$), while the product of roots does not ($\frac{c}{a}$).
What is the positive solution to the equation $3x^2 - 5x - 12 = 0$?
What is the sum of the solutions to the quadratic equation $5x^2 - 35x + 19 = 0$?
If $2(x - 3)^2 = 50$, what are all possible values of $x$?