PSAT MATH • ALGEBRA 2

Systems of Polynomial Equations

Learn to solve systems where at least one equation is a polynomial of degree two or higher.

Historical Context & Motivation

When you first learned to solve systems of equations, you probably worked with two straight lines and found where they intersect. But the real world is rarely that simple. The path of a basketball follows a curve, not a straight line—and when you need to find where that curved path meets a boundary or another curve, you need a system of polynomial equations. Mathematicians have been tackling these kinds of problems for thousands of years, developing techniques that eventually became the algebra you use today.

~300 BCE
Greek Geometric Intersections
Ancient Greek mathematicians like Euclid and Apollonius studied the intersections of conic sections—circles, ellipses, and parabolas—using purely geometric methods. These were essentially systems of polynomial equations solved without algebra.
~850 CE
Al-Khwarizmi's Algebraic Methods
The Persian mathematician al-Khwarizmi introduced systematic methods for solving quadratic equations, laying the groundwork for the algebraic approach to polynomial systems we use today. The word "algebra" comes from the title of his famous book.
1637
Descartes and Coordinate Geometry
René Descartes merged algebra with geometry by introducing the coordinate plane. This breakthrough allowed polynomial equations to be visualized as curves and their solutions to be interpreted as intersection points.
1750s
Elimination and Substitution Formalized
Mathematicians like Euler and Bézout developed formal procedures for eliminating variables from systems of equations. Bézout's theorem described the maximum number of solutions two polynomial curves could share.

Today, systems of polynomial equations appear everywhere: modeling projectile motion, optimizing business revenue, and even in the algorithms behind your phone's GPS. The central question this lesson addresses is: how do you find the points where polynomial curves meet each other or meet lines? On the PSAT, you will encounter these problems primarily as systems pairing a linear equation with a quadratic equation, though the techniques extend to higher-degree polynomials as well.

Core Principles & Definitions

Before diving into solution techniques, let's establish the key ideas. A polynomial equation is an equation involving variables raised to whole-number powers—like x² + 3x − 5 = 0 or y = x³ − 2x. A system of polynomial equations is a set of two or more such equations that must be satisfied simultaneously. A solution to the system is any ordered pair (x, y) that makes every equation in the system true at the same time.

1

Degree of the System

The degree of a polynomial is its highest exponent. In a system, the highest degree among all equations determines the system's complexity. A linear-quadratic system pairs degree 1 with degree 2.
2

Number of Solutions

A line can intersect a parabola at 0, 1, or 2 points. Two quadratics can intersect at up to 4 points. The number of solutions depends on how the curves relate to each other geometrically.
3

Substitution Strategy

The most common approach: solve one equation for a variable, then substitute that expression into the other equation. This reduces the system to a single equation in one variable.
4

Elimination Strategy

When both equations share a common term (like y or y²), subtract one equation from the other to eliminate that variable. This is especially useful when both equations are already solved for y.
5

Graphical Interpretation

Every solution to a system corresponds to an intersection point on the graph. No intersection means no real solution. Tangency (just touching) means exactly one solution.
KEY TAKEAWAY
Think of solving a system of polynomial equations like finding the exact spots where two roads cross on a map. If one road is straight (a line) and the other curves (a parabola), they might cross twice, touch once at a bend, or never meet at all. Substitution is your GPS—it takes information from one equation and plugs it into the other so you can pinpoint those exact crossing coordinates.

Visual Explanation

Intersections of a Line and a Parabola

The diagram below shows the three possible outcomes when a line meets a parabola: two intersection points (the line cuts through the parabola), one tangent point (the line just touches the parabola), and no intersection (the line misses entirely). Understanding these cases graphically will help you interpret the discriminant when solving algebraically.

The violet parabola represents a quadratic equation, and the colored lines represent different linear equations. The discriminant of the resulting quadratic (after substitution) determines which case applies.

Mathematical Framework

The most common system you will see on the PSAT pairs a linear equation with a quadratic equation. The standard approach is substitution: solve the linear equation for one variable, then replace that variable in the quadratic equation. This produces a single polynomial equation in one variable that you can solve using factoring, the quadratic formula, or completing the square.

GENERAL LINEAR-QUADRATIC SYSTEM
y = mx + b and y = ax² + bx + c
Here m is the slope and b is the y-intercept of the line; a, b, and c are the coefficients of the quadratic. (Note: the 'b' in each equation may differ—watch context carefully.)
SUBSTITUTION RESULT
mx + b = ax² + bx + c → ax² + (b − m)x + (c − b) = 0
After setting the two expressions for y equal to each other, you rearrange to get a standard-form quadratic in x. Solve this quadratic to find the x-coordinates of the intersection points.
DISCRIMINANT TEST
D = B² − 4AC
For the resulting quadratic Ax² + Bx + C = 0, the discriminant D tells you the number of solutions. If D > 0 → two real solutions; if D = 0 → one solution (tangent); if D < 0 → no real solutions.
QUADRATIC FORMULA
x = (−B ± √(B² − 4AC)) / (2A)
Once you have the quadratic in standard form, use this formula if the equation doesn't factor neatly. Then substitute each x-value back into the linear equation to find the corresponding y-values.
💡 PSAT Tip
On the PSAT, the question might ask for the number of solutions rather than the solutions themselves. In that case, you only need the discriminant—you don't need to solve the quadratic all the way through. This saves valuable time!

Detailed Breakdown — Solution Scenarios

Systems of polynomial equations on the PSAT appear in several configurations. The most common is a linear-quadratic system, but you may also encounter quadratic-quadratic systems where both equations are degree 2. The table below summarizes the key configurations, their maximum number of solutions, and the primary solving strategy for each.

Common system types and their properties
System TypeExampleMax SolutionsPreferred Strategy
Linear–Lineary = 2x + 1 and y = −x + 41Substitution or Elimination
Linear–Quadraticy = x + 1 and y = x² − 32Substitution (solve linear for y)
Quadratic–Quadraticy = x² and y = −x² + 44Elimination (subtract equations)
Linear–Cubic (rare on PSAT)y = 2x and y = x³ − x3Substitution, then factor
This flowchart shows the five-step substitution process applied to a sample linear-quadratic system. Each step reduces the complexity until you reach numerical solutions.

Notice how the process always funnels down to a single-variable equation. Whether you use factoring, the quadratic formula, or even graphing depends on the specific numbers involved. On the PSAT, the numbers are usually chosen so that the quadratic factors neatly—so always try factoring first before reaching for the quadratic formula.

Worked Example

Let's work through a complete example of the type you would see on the PSAT. We'll solve the system step by step and verify our answer.

Solve the system: y = x + 3 and y = x² + x − 5
1
Step 1 — Set the expressions for y equalSince both equations equal y, we can set the right-hand sides equal to each other: x + 3 = x² + x − 5.
2
Step 2 — Rearrange to standard formSubtract x + 3 from both sides to move everything to one side: x + 3 − x − 3 = x² + x − 5 − x − 3, which simplifies to 0 = x² − 8.
x² − 8 = 0
3
Step 3 — Solve for xAdd 8 to both sides: x² = 8. Take the square root of both sides: x = ±√8 = ±2√2. So x = 2√2 ≈ 2.83 or x = −2√2 ≈ −2.83.
x = 2√2 or x = −2√2
4
Step 4 — Back-substitute to find yUse the simpler equation y = x + 3. When x = 2√2: y = 2√2 + 3. When x = −2√2: y = −2√2 + 3.
(2√2, 2√2 + 3) and (−2√2, −2√2 + 3)
5
Step 5 — VerifyCheck the first solution in the quadratic: y = (2√2)² + (2√2) − 5 = 8 + 2√2 − 5 = 3 + 2√2. This matches y = 2√2 + 3 from the linear equation. ✓ The system has two solutions, confirming that the discriminant (D = 32 > 0) correctly predicted two intersection points.

Comparing Solution Strategies

You have several tools for solving systems of polynomial equations. Each one works best in certain situations. The table below compares the three main strategies so you can choose the fastest path on test day.

Comparison of strategies for solving polynomial systems
StrategyBest Used When…Limitations
SubstitutionOne equation is already solved for a variable (e.g., y = mx + b). This is the go-to method for linear-quadratic systems.Can get messy if neither equation is easily isolable. Requires careful distribution and sign handling.
EliminationBoth equations share a common term like y or x² that can cancel. Particularly effective for quadratic-quadratic systems.Doesn't work well if the equations have very different structures. You may still need substitution after eliminating.
GraphingYou need a quick estimate or the question only asks how many solutions exist. Also useful for checking your algebraic answer.Not precise unless solutions are integers. Time-consuming to draw by hand. Best used with a calculator or as a mental check.
STRATEGY SELECTION
Think of these strategies like tools in a toolbox. Substitution is your everyday screwdriver—it works in most situations and should be your default. Elimination is a power drill—faster for specific jobs like quadratic-quadratic systems. Graphing is the tape measure—great for estimating, but not for precision work.

Connection to Advanced Topics

The techniques you learn here for systems of polynomial equations are a foundation for much more advanced mathematics. In precalculus and calculus, these ideas extend to systems involving exponential, logarithmic, and trigonometric functions. In multivariable calculus, you'll optimize functions subject to constraints—which is essentially solving systems in three or more dimensions. The table below shows how the concepts you're learning now connect to what comes next.

How PSAT-level concepts connect to advanced mathematics
PSAT / Algebra 2 ConceptAdvanced Extension
Linear-quadratic system (2 equations, 2 unknowns)Systems of 3+ equations in 3+ unknowns (linear algebra, matrices)
Discriminant to count solutionsBézout's theorem: max intersections = product of degrees
Substitution methodGröbner bases for solving multivariate polynomial systems
Graphical interpretation of solutionsAlgebraic geometry: studying solution sets as geometric objects

You don't need to worry about these advanced topics for the PSAT, but it's worth knowing that the skills you're building—setting equations equal, eliminating variables, and interpreting solutions graphically—are the same core skills used by engineers, economists, and scientists every day. Mastering them now gives you a serious head start.

Practice Problems

PROBLEM 1CONCEPTUAL
A line and a parabola form a system of equations. After substituting the linear expression into the quadratic, you obtain the equation 3x² − 6x + 3 = 0. Without solving, how many intersection points does the system have? Explain your reasoning.
PROBLEM 2BASIC CALCULATION
Solve the system: y = 3x − 2 and y = x² − 4x + 1.
PROBLEM 3INTERMEDIATE
For what value of k does the system y = 2x + k and y = x² have exactly one solution?
PROBLEM 4APPLIED
A ball is thrown upward from a 5-foot-high platform. Its height after t seconds is h = −16t² + 32t + 5. A balloon rises steadily at h = 10t + 5. At what time(s) are the ball and balloon at the same height, and what is that height?
PROBLEM 5CRITICAL THINKING
Consider the system y = x² − 2x + c and y = x² + 4x − 7. For how many values of c does this system have exactly one solution? Find those values.

Lesson Summary

A system of polynomial equations consists of two or more equations—at least one of which has degree 2 or higher—that must be solved simultaneously. The primary technique is substitution: isolate one variable in the simpler equation, plug that expression into the more complex equation, and solve the resulting single-variable polynomial. For linear-quadratic systems (the most common on the PSAT), this always produces a quadratic equation you can solve by factoring or the quadratic formula.

The discriminant (D = B² − 4AC) tells you the number of solutions without solving: D > 0 means two solutions, D = 0 means one tangent solution, and D < 0 means no real solutions. For quadratic-quadratic systems, use elimination by subtracting one equation from the other to reduce the degree. Always back-substitute your x-values into the simpler original equation to find the corresponding y-values, and verify at least one solution in both equations.

Varsity Tutors • PSAT Math • Systems of Polynomial Equations