Solving Quadratic Systems Algebraically- Complete Methods Guide

What Is a Quadratic System?

A quadratic system is two or more equations where at least one is quadratic. The most common setup involves one linear equation and one quadratic equation. You might also see two quadratic equations, but that's rarer in standard coursework.

The goal is finding the points where these curves intersect. Algebraically, this means finding all (x, y) pairs that satisfy both equations simultaneously.

Graphically, you're looking for intersection points between a parabola and a line (or two parabolas). The math tells you where those intersections are without drawing anything.

Two Methods That Actually Work

You have two main algebraic approaches. Neither is better in all cases. Know both.

Substitution — The Reliable Workhorse

Substitution works by isolating one variable in one equation and plugging it into the other. It's straightforward and rarely leads you astray.

When to use it: When one variable has a coefficient of 1 or -1. When one equation is already solved for a variable. When the system looks messy and you need a clean starting point.

Elimination — Faster When Conditions Align

Elimination means adding or subtracting equations to cancel out a variable. You manipulate the equations so one variable vanishes when you combine them.

When to use it: When both equations are in standard form. When coefficients of one variable are already equal or opposites. When substitution would create a messy fraction-heavy equation.

Getting Started: Solving by Substitution

Here's the process, step by step.

Step 1: Isolate a variable in the linear equation if possible. If the quadratic equation is simpler, solve it for one variable instead.

Step 2: Substitute that expression into the other equation. You'll get an equation in one variable.

Step 3: Solve the resulting equation. If it's quadratic, get everything on one side and factor (or use the quadratic formula).

Step 4: Plug each solution back into the isolated expression to find the corresponding values.

Step 5: Write your answer as coordinate pairs.

Example: Line Intersecting a Parabola

Solve this system:

Equation 1: y = x² + 2x - 3
Equation 2: y = 3x + 1

Both equations are already solved for y. Set them equal:

x² + 2x - 3 = 3x + 1

Move everything to one side:

x² - x - 4 = 0

Factor or use the quadratic formula. This doesn't factor nicely, so:

x = [-(-1) ± √(1 + 16)] / 2
x = [1 ± √17] / 2

x = (1 + √17) / 2 ≈ 2.56
x = (1 - √17) / 2 ≈ -1.56

Now find y for each x using y = 3x + 1:

For x ≈ 2.56: y ≈ 3(2.56) + 1 ≈ 8.68
For x ≈ -1.56: y ≈ 3(-1.56) + 1 ≈ -3.68

Solutions: (2.56, 8.68) and (-1.56, -3.68)

That's it. Two intersection points found algebraically.

Solving by Elimination

Elimination requires a bit more setup but can be faster when applicable.

Step 1: Write both equations in standard form (ax² + bx + c = 0 or ax + by = c).

Step 2: Multiply one or both equations so a variable has matching coefficients (or opposites).

Step 3: Add or subtract the equations to eliminate that variable.

Step 4: Solve for the remaining variable.

Step 5: Back-substitute to find the eliminated variable.

Example: Two Quadratic Equations

Solve:

Equation 1: x² + y² = 25
Equation 2: x² - y = 5

Notice the x² terms match. Subtract Equation 2 from Equation 1:

(x² + y²) - (x² - y) = 25 - 5

x² cancels out:

y² + y = 20

Rearrange:

y² + y - 20 = 0

Factor:

(y + 5)(y - 4) = 0

y = -5 or y = 4

Plug back into Equation 2 (x² - y = 5):

For y = -5: x² - (-5) = 5 → x² + 5 = 5 → x² = 0 → x = 0
For y = 4: x² - 4 = 5 → x² = 9 → x = ±3

Solutions: (0, -5), (3, 4), and (-3, 4)

Three intersection points. A circle and a parabola can intersect at up to four points.

Substitution vs. Elimination: When to Use What

Most students default to substitution because it's more intuitive. That's fine for simpler problems. But look at your specific system before committing.

Method Best When Avoid When
Substitution One variable isolated; coefficients are small; equations look messy Both equations are quadratic with no isolated variable
Elimination Matching coefficients exist; both equations in standard form; symmetric equations Equations are already solved for y in terms of x

In practice, substitution handles about 80% of problems you'll encounter. Elimination shines when you're working with circles, ellipses, or other conic sections where symmetry makes coefficients match naturally.

Common Mistakes That Will Cost You Points

What About the Quadratic Formula?

You might wonder when to use the quadratic formula versus factoring. Use the formula when:

Factoring is faster when it works. But if you spend more than 30 seconds trying to factor something and it's not happening, switch to the formula. That's not giving up—that's efficient.

Practice Problem to Try

Solve this system before checking the answer:

y = x² - 6x + 8
y = 2x - 4

Set equal: x² - 6x + 8 = 2x - 4

x² - 8x + 12 = 0

(x - 2)(x - 6) = 0

x = 2 or x = 6

Find y: y = 2(2) - 4 = 0; y = 2(6) - 4 = 8

Solutions: (2, 0) and (6, 8)

Graphically, this makes sense—a parabola opening upward crossing a downward-sloping line at two points.

The Bottom Line

Quadratic systems aren't complicated once you understand the mechanics. Substitution works for most problems. Elimination works faster when coefficients align. Know both, check your answers, and don't overthink it.

Most students struggle not because the math is hard, but because they second-guess themselves or skip steps. Write out every step. Verify every solution. That's it.