SAT MATH • ALGEBRA 2

Quadratic Equations

Master the equations that model projectile motion, area, and countless SAT problems.

Historical Context & Motivation

Humans have wrestled with equations involving squared unknowns for thousands of years. Ancient civilizations needed to calculate areas of land, design architectural structures, and predict the paths of thrown objects — all problems that naturally lead to expressions where a variable is raised to the second power. The quadratic equation is the mathematical tool that emerged from these practical needs, and it remains one of the most frequently tested concepts on the SAT.

~2000 BCE
Babylonian Clay Tablets
Babylonian mathematicians solved problems equivalent to quadratic equations using geometric methods on clay tablets, calculating areas and lengths without modern algebraic notation.
~300 BCE
Euclid's Geometric Algebra
In ancient Greece, Euclid solved quadratic problems by constructing geometric figures, treating 'squaring' as literally building a square on a line segment.
~825 CE
Al-Khwarizmi's Systematic Methods
The Persian mathematician al-Khwarizmi published methods for solving all types of quadratic equations, giving us the word 'algebra' from his book title.
1637
Descartes & Modern Notation
René Descartes introduced the use of x for unknowns and superscript notation for exponents, giving us the ax² + bx + c = 0 form we use today.

The central question that quadratic equations answer is: For what values of the unknown does a second-degree polynomial equal zero? This deceptively simple question unlocks solutions to problems in physics, engineering, economics, and — most immediately for you — a significant number of SAT math questions.

Core Principles & Definitions

A quadratic equation is any equation that can be written in the form ax² + bx + c = 0, where a, b, and c are real numbers and a ≠ 0. The requirement that a ≠ 0 is essential because without the x² term, the equation would be linear, not quadratic. The word 'quadratic' comes from the Latin quadratus, meaning 'square,' reflecting the fact that the highest power of the variable is 2.

1

Standard Form

The standard form is ax² + bx + c = 0. Every quadratic equation can be rearranged into this form, where a is the leading coefficient, b is the linear coefficient, and c is the constant term.
2

Solutions (Roots)

The values of x that make the equation true are called roots, zeros, or solutions. A quadratic has at most two real solutions.
3

The Discriminant

The expression b² − 4ac, called the discriminant, tells you how many real solutions exist: positive means two, zero means one (a repeated root), and negative means none.
4

Three Solution Methods

You can solve quadratics by factoring, by using the quadratic formula, or by completing the square. Each has its advantages depending on the situation.
KEY TAKEAWAY
KEY TAKEAWAY

Visual Explanation — The Parabola

The graph of a quadratic function y = ax² + bx + c is a parabola — a smooth, symmetric U-shaped curve. When you set the equation equal to zero, you're asking where this curve crosses the x-axis. These crossing points are the solutions to the equation. The diagram below shows three parabolas with different discriminant values so you can see how the number of solutions relates to the shape and position of the curve.

The cyan parabola crosses the x-axis at two points (D > 0), the amber parabola touches it at exactly one point (D = 0), and the pink parabola never reaches the x-axis (D < 0).

Notice that each parabola is symmetric about a vertical line called the axis of symmetry. The highest or lowest point on the parabola is the vertex. When a > 0, the parabola opens upward (like a cup), and when a < 0, it opens downward (like an upside-down cup). On the SAT, recognizing which case applies helps you quickly determine how many solutions to expect.

Mathematical Framework

There are three primary methods for solving quadratic equations. Each one is useful in different contexts, and the SAT may reward you for choosing the most efficient method for a given problem. Let's examine each approach with its key formula.

STANDARD FORM
ax² + bx + c = 0
where a ≠ 0 is the coefficient of x², b is the coefficient of x, and c is the constant.
QUADRATIC FORMULA
x = (−b ± √(b² − 4ac)) / (2a)
The ± symbol means you compute two values: one with addition and one with subtraction. The expression under the radical, b² − 4ac, is the discriminant (D). This formula works for every quadratic equation — it's your safety net.
FACTORED FORM
a(x − r₁)(x − r₂) = 0
When the quadratic factors nicely, you can write it as a product of two binomials. The solutions are x = r₁ and x = r₂. By the zero product property, if a product equals zero, then at least one of its factors must be zero.
VERTEX FORM
a(x − h)² + k = 0
Found by completing the square. The vertex of the parabola is at (h, k), and the axis of symmetry is the vertical line x = h. This form is especially useful for identifying the maximum or minimum value of the function.
SAT TIP

Detailed Breakdown — Three Solving Methods

Let's examine each solution method in more depth. The diagram below provides a decision flowchart that helps you choose the most efficient method for a given SAT problem, followed by a comparison table.

This decision flowchart guides you from the standard form through a series of checks. If the equation factors easily, factor it. If the problem asks about the vertex, complete the square. Otherwise, the quadratic formula is your reliable go-to.
Comparison of three quadratic solving methods
MethodBest When…Key AdvantageWatch Out For
FactoringCoefficients are small integers and factor pairs are obviousFastest method; no messy arithmeticNot all quadratics factor over the integers
Quadratic FormulaAny quadratic — especially those with irrational or complex rootsAlways works; gives exact answersArithmetic errors under the radical; watch your signs
Completing the SquareProblem asks for vertex, min/max, or axis of symmetryConverts to vertex form; reveals the geometryMore steps; easy to lose track of added constants

Worked Example

Let's solve a quadratic equation using all three methods so you can see how they connect. We'll solve: 2x² − 7x + 3 = 0.

Method 1 — Factoring

1
Step 1 — Identify a, b, and cHere a = 2, b = −7, and c = 3. Compute the product a × c = 2 × 3 = 6.
2
Step 2 — Find two numbers that multiply to a × c and add to bWe need two numbers that multiply to 6 and add to −7. Those numbers are −1 and −6, since (−1)(−6) = 6 and (−1) + (−6) = −7.
Factor pair: −1 and −6
3
Step 3 — Rewrite the middle term and factor by groupingSplit −7x into −x − 6x: 2x² − x − 6x + 3 = 0. Group: x(2x − 1) − 3(2x − 1) = 0. Factor out (2x − 1): (2x − 1)(x − 3) = 0.
(2x − 1)(x − 3) = 0
4
Step 4 — Apply the Zero Product PropertySet each factor equal to zero: 2x − 1 = 0 gives x = 1/2, and x − 3 = 0 gives x = 3.
x = 1/2 or x = 3

Method 2 — Quadratic Formula

1
Step 1 — Substitute into the formulax = (−(−7) ± √((−7)² − 4(2)(3))) / (2 × 2) = (7 ± √(49 − 24)) / 4
2
Step 2 — Simplify the discriminantThe discriminant is 49 − 24 = 25. Since 25 > 0, we confirm two distinct real roots.
D = 25 (positive → two real roots)
3
Step 3 — Compute both solutionsx = (7 + 5) / 4 = 12/4 = 3, and x = (7 − 5) / 4 = 2/4 = 1/2. Both results match the factoring method.
x = 3 or x = 1/2 ✓
CHECK YOUR WORK

Strengths, Limitations & SAT Strategy

On the SAT, time management is critical. You typically have about 90 seconds per math question, so choosing the right method can make or break your pacing. The table below summarizes the speed and reliability of each approach for different SAT question types.

SAT strategy guide for quadratic equation questions
SAT Question TypeRecommended MethodWhy
"What are the solutions of x² − 5x + 6 = 0?"FactoringSmall integers factor quickly; fastest path to the answer
"How many real solutions does 3x² + 2x + 5 = 0 have?"Discriminant onlyYou don't need the actual roots — just compute b² − 4ac
"What is the minimum value of f(x) = x² + 6x + 11?"Completing the squareConverts to vertex form, directly revealing the minimum at the vertex
"Solve 2x² − 3x − 7 = 0"Quadratic formulaCoefficients don't factor neatly; formula handles irrational roots
"If (x − p)(x − q) = 0 and p + q = 7, find p × q"Vieta's formulasSum and product of roots relate directly to coefficients: p + q = −b/a, pq = c/a
KEY TAKEAWAY
KEY TAKEAWAY

Connection to Advanced Topics

Quadratic equations are a gateway to several advanced mathematical topics you'll encounter in precalculus and beyond. Understanding them well now gives you a head start on these concepts and also helps you recognize patterns that appear in more challenging SAT questions.

How quadratic concepts extend into advanced math
Quadratic ConceptAdvanced ExtensionWhere You'll See It
Factoring quadraticsFactoring higher-degree polynomials (cubics, quartics)Precalculus; polynomial division
Discriminant (b² − 4ac)Complex / imaginary numbers when D < 0Algebra 2; electrical engineering
Vertex formOptimization using calculus (finding max/min with derivatives)AP Calculus; physics
Sum/product of roots (Vieta's)Symmetric polynomials and advanced algebraMath competitions; college algebra
Graphing parabolasConic sections (ellipses, hyperbolas, circles)Precalculus; analytic geometry

On the SAT specifically, quadratic equations frequently appear in disguise. You might see them in problems about projectile motion (a ball's height as a function of time), area optimization (finding the dimensions that maximize a rectangular area), or systems of equations where one equation is linear and the other is quadratic. Recognizing the quadratic structure hidden in a word problem is half the battle.

Practice Problems

Test your understanding with these five problems, arranged from conceptual to challenging. Try each one on paper before revealing the answer.

PROBLEM 1CONCEPTUAL
What is the minimum value of f(x) = 3x² + 5x − 2?(A) −25/12 (B) −37/12 (C) −49/12 (D) −61/12
2
What are the solutions to x² − 5x + 6 = 0?
3
Use the quadratic formula to solve 2x² + 3x − 5 = 0. Which of the following gives both solutions?
4
A ball is launched upward from a platform 48 feet above the ground. Its height h in feet after t seconds is modeled by h(t) = −16t² + 32t + 48. At what time does the ball hit the ground?
5
For which of the following values of k does the equation x² + kx + 9 = 0 have exactly one real solution?
Varsity Tutors • SAT Math • Quadratic Equations