MATH 2 • ALGEBRA & FUNCTIONS

Solving Linear-Quadratic Systems Algebraically — I can solve a system of a linear and a quadratic equation algebraically (substitution) and interpret solutions.

Use substitution to find where a line meets a parabola and discover what the number of solutions tells you.

Historical Context & Motivation

For thousands of years, mathematicians have been fascinated by the places where different curves cross each other. Ancient Greek scholars studied the intersections of lines and circles to solve construction problems, while Persian and Arab mathematicians developed sophisticated algebraic methods to handle equations involving squares. The idea of combining two different types of equations into a single system and solving them together has been a cornerstone of algebra ever since.

~300 BCE
Euclid & Conic Sections
Greek mathematicians studied how lines intersect circles, ellipses, and parabolas using geometric constructions — the earliest form of solving linear-quadratic systems.
~825 CE
Al-Khwarizmi's Algebra
The Persian mathematician al-Khwarizmi wrote systematic methods for solving quadratic equations, giving us the word "algebra" from the Arabic al-jabr.
1637
Descartes & Coordinate Geometry
René Descartes linked algebra to geometry by introducing the coordinate plane, making it possible to visualize where equations intersect as points on a graph.
1800s
Modern Systems of Equations
Algebraic methods for solving systems — including substitution and elimination — became standard tools taught in schools and used in engineering, physics, and economics.

The central question this lesson addresses is straightforward but powerful: given a straight line and a curved parabola, how do we find their exact intersection points using algebra alone? And what does it mean when they meet at two points, one point, or not at all? These questions show up everywhere — from predicting when a rocket's path crosses a safety boundary to figuring out break-even points in business models.

Core Principles & Definitions

Before diving into the algebra, let's lock down the key vocabulary you'll need. A system of equations is a set of two or more equations that share the same variables. A linear equation graphs as a straight line, while a quadratic equation graphs as a U-shaped curve called a parabola. When we solve a linear-quadratic system, we are finding every (x, y) pair that satisfies both equations simultaneously.

1

Substitution Method

Isolate one variable in the linear equation and plug that expression into the quadratic equation, reducing the system to a single equation in one variable.
2

Resulting Quadratic

After substitution, you always get a quadratic equation to solve. Use factoring, the quadratic formula, or completing the square to find the x-values.
3

Back-Substitution

Once you find x-values, substitute each one back into the linear equation (it's simpler) to find the corresponding y-value. Each (x, y) pair is a solution.
4

Number of Solutions

The discriminant of the resulting quadratic tells you the count: positive → two solutions, zero → one solution (tangent), negative → no real solutions.
KEY TAKEAWAY
Think of it like a GPS route (the line) crossing a hill (the parabola). The route might cut across the hill in two places, just skim the top at one point, or pass alongside without ever touching it. Substitution lets you calculate exactly where — or whether — those crossings happen.

Visualizing the Three Cases

The diagram below shows a single parabola with three different lines, each illustrating one of the possible outcomes. Understanding these cases visually will help you interpret your algebraic results.

The cyan line crosses the parabola at two points (two solutions). The amber line just touches the parabola at one point (tangent — one solution). The dashed pink line misses the parabola entirely (no real solutions).

Each intersection point corresponds to an (x, y) solution of the system. When you solve a linear-quadratic system algebraically, the discriminant of the resulting quadratic equation tells you which case you're in. A positive discriminant means two real solutions, a discriminant of zero means exactly one, and a negative discriminant means no real intersections.

The Algebraic Method Step by Step

A linear-quadratic system has the general form shown below. The goal is to use substitution to reduce the system from two equations in two variables down to a single quadratic equation in one variable.

GENERAL LINEAR-QUADRATIC SYSTEM
y = ax² + bx + c (quadratic) y = mx + d (linear)
Here a, b, c are the quadratic coefficients, m is the slope of the line, and d is the y-intercept of the line.
STEP 1 — SET EQUAL (SUBSTITUTE)
ax² + bx + c = mx + d
Since both equations equal y, set the right-hand sides equal to each other. This eliminates y.
STEP 2 — REARRANGE TO STANDARD FORM
ax² + (b − m)x + (c − d) = 0
Move all terms to one side so you have a standard quadratic equation equal to zero. Factor, use the quadratic formula, or complete the square to solve for x.
DISCRIMINANT CHECK
D = (b − m)² − 4a(c − d)
D > 0 → two intersection points. D = 0 → one tangent point. D < 0 → no real intersection.
⚠️ Don't Forget Step 3!
After finding the x-values, substitute each one back into the linear equation (it's easier to compute) to get the matching y-values. A solution is not complete until you have the full (x, y) pair.

Understanding the Discriminant & Solution Count

The discriminant is the expression under the square root in the quadratic formula: b² − 4ac. For linear-quadratic systems, the discriminant of the resulting quadratic (after substitution) is the key to interpreting how many times the line meets the parabola. The diagram below breaks down all three cases side by side.

Each panel shows the same parabola (violet) with a different line. The discriminant D of the resulting quadratic after substitution determines whether you get two, one, or zero intersection points.
Discriminant-to-solution mapping for linear-quadratic systems
Discriminant ValueNumber of SolutionsGeometric Meaning
D > 0Two distinct real solutionsThe line cuts through the parabola at two points
D = 0Exactly one real solutionThe line is tangent to the parabola (just touches it)
D < 0No real solutionsThe line and parabola never meet

Worked Example

Let's walk through a complete example to see every step of the substitution method in action.

Solve the System: y = x² − 3x + 1 and y = x − 2
1
Step 1 — Write the SystemWe have two equations: the quadratic y = x² − 3x + 1 and the linear y = x − 2. Both are already solved for y, which makes substitution straightforward.
2
Step 2 — Substitute (Set Equal)Since both expressions equal y, set them equal to each other: x² − 3x + 1 = x − 2.
3
Step 3 — Rearrange to Standard FormMove all terms to the left side by subtracting x and adding 2: x² − 3x + 1 − x + 2 = 0, which simplifies to x² − 4x + 3 = 0.
x² − 4x + 3 = 0
4
Step 4 — Solve the QuadraticFactor the quadratic: x² − 4x + 3 = (x − 1)(x − 3) = 0. Setting each factor equal to zero gives x = 1 and x = 3.
x = 1 or x = 3
5
Step 5 — Back-Substitute for yPlug each x-value into the linear equation y = x − 2 (it's simpler). When x = 1: y = 1 − 2 = −1. When x = 3: y = 3 − 2 = 1.
(1, −1) and (3, 1)
6
Step 6 — Verify (Optional but Smart)Check (1, −1) in the quadratic: (1)² − 3(1) + 1 = 1 − 3 + 1 = −1 ✓. Check (3, 1): (3)² − 3(3) + 1 = 9 − 9 + 1 = 1 ✓. Both solutions satisfy both equations.
7
Step 7 — InterpretThe discriminant of x² − 4x + 3 is (−4)² − 4(1)(3) = 16 − 12 = 4, which is positive. This confirms there are two intersection points, consistent with our two solutions.
Solution: (1, −1) and (3, 1) — two intersection points

Common Mistakes & Helpful Tips

Students often run into a few predictable mistakes when solving linear-quadratic systems. Knowing these pitfalls ahead of time can save you a lot of frustration on homework and tests.

Common pitfalls and strategies for avoiding them
Common MistakeWhy It HappensHow to Avoid It
Forgetting to find y-valuesAfter solving for x, students stop too earlyAlways back-substitute each x into the linear equation to get the matching y
Sign errors when rearrangingMoving terms across the equals sign without switching signsSubtract the entire linear expression from both sides in one step: ax² + bx + c − (mx + d) = 0
Plugging x back into the wrong equationUsing the quadratic instead of the linear gives the same answer but more room for arithmetic errorUse the linear equation for back-substitution — it's simpler and faster
Claiming "no solution" too quicklyConfusing a negative discriminant with a computational errorIf D < 0, double-check your rearrangement. If it's correct, then "no real solution" is the valid answer
💡 PRO TIP
Always verify your solutions by plugging them back into both original equations. If an answer doesn't satisfy one of the equations, you've made an arithmetic mistake somewhere. This habit catches errors before you turn in your work.

Connections to Advanced Topics

The substitution technique you've learned here is not just a one-time tool — it extends naturally to many more advanced mathematical settings. The table below shows how this concept connects to topics you'll encounter later in your math journey.

How linear-quadratic systems connect to future math courses
This LessonFuture Extension
Linear-quadratic systems (line + parabola)Quadratic-quadratic systems (two parabolas or a circle and a parabola)
Discriminant determines solution countIn precalculus and calculus, you analyze intersections of any two curves using similar reasoning
Substitution methodSystems of nonlinear equations in multiple variables (multivariable calculus, linear algebra)
Finding intersection points algebraicallyOptimization and constraint problems in economics, physics, and engineering

In physics, finding where a projectile's parabolic trajectory crosses a certain height (a horizontal line) is literally a linear-quadratic system. In economics, finding the break-even points where a linear cost function equals a quadratic revenue function uses the same algebra. Mastering this technique now builds a foundation for problem-solving across many disciplines.

Practice Problems

PROBLEM 1CONCEPTUAL
A student solves a linear-quadratic system and gets a resulting quadratic equation with a discriminant of −7. What does this tell you about the system? Explain in terms of both the algebra and the graph.
PROBLEM 2BASIC CALCULATION
Solve the system: y = x² + 2x − 3 and y = 2x + 1.
PROBLEM 3INTERMEDIATE
Solve the system: y = 2x² − 5x + 4 and y = 3x − 2. State how many solutions the system has and verify your answer.
PROBLEM 4APPLIED
A ball is launched upward and its height in feet after t seconds is h = −16t² + 48t + 4. A drone flies at a constant height of h = 36 feet. At what times does the ball reach the drone's height? What do your answers mean in context?
PROBLEM 5CRITICAL THINKING
For the system y = x² and y = mx, determine all values of m for which the system has exactly two solutions. Then determine the value(s) of m for which it has exactly one solution. Explain your reasoning.

Lesson Summary

To solve a linear-quadratic system algebraically, use substitution — set the linear expression equal to the quadratic expression to eliminate one variable. This produces a single quadratic equation that you solve by factoring, the quadratic formula, or completing the square. Then back-substitute each x-value into the linear equation to find the corresponding y-value.

The discriminant of the resulting quadratic reveals how many solutions exist: D > 0 gives two intersection points, D = 0 gives one tangent point, and D < 0 means no real intersection. Each solution is an ordered pair (x, y) representing a point where the line meets the parabola. Always verify by substituting back into both original equations.

Varsity Tutors • Math 2 • Solving Linear-Quadratic Systems Algebraically