Solving Linear Quadratic Systems- Methods and Examples

What Linear Quadratic Systems Actually Are

A linear quadratic system is simply one linear equation paired with one quadratic equation. You're looking for the points where a straight line and a parabola intersect. That's it. Two equations, two unknowns, and the solutions are the coordinates where both equations are satisfied simultaneously.

These systems show up in physics, engineering, economics, and anywhere optimization problems exist. If you've ever wondered where a projectile hits a linear path or how to find break-even points, you're dealing with linear quadratic systems.

There are three main ways to solve them. Each has strengths depending on the specific problem you're working with.

Method 1: Substitution

Substitution works by isolating one variable in the linear equation and plugging it into the quadratic equation. This is your go-to method when the linear equation is already solved for a variable or can be easily rearranged.

How Substitution Works

Take this system:

y = 2x + 3
x² + y² = 25

Step 1: The first equation already has y isolated. Substitute 2x + 3 for y in the second equation:

x² + (2x + 3)² = 25

Step 2: Expand and simplify:

x² + 4x² + 12x + 9 = 25
5x² + 12x + 9 - 25 = 0
5x² + 12x - 16 = 0

Step 3: Solve the quadratic using the quadratic formula:

x = (-12 ± √(144 - 4(5)(-16))) / (2 × 5)
x = (-12 ± √(144 + 320)) / 10
x = (-12 ± √464) / 10
x = (-12 ± 2√116) / 10
x = (-6 ± √116) / 5

Step 4: Find y values by substituting back into y = 2x + 3. You'll get two solutions, meaning the line intersects the parabola at two points.

When Substitution Is the Best Choice

Method 2: Elimination

Elimination works by adding or subtracting the equations after multiplying them by constants. This aligns terms so one variable cancels out. It's less intuitive for linear quadratic systems than for two linear equations, but it has its uses.

How Elimination Works

Take this system:

2x + y = 7
x² - y = 3

Step 1: Notice the coefficients of y are already +1 and -1. Adding the equations will eliminate y:

(2x + y) + (x² - y) = 7 + 3
x² + 2x = 10

Step 2: Rearrange into standard quadratic form:

x² + 2x - 10 = 0

Step 3: Apply the quadratic formula:

x = (-2 ± √(4 + 40)) / 2
x = (-2 ± √44) / 2
x = (-2 ± 2√11) / 2
x = -1 ± √11

Step 4: Substitute back into 2x + y = 7 to find the corresponding y values.

When Elimination Works Best

Method 3: Graphing

Graphing gives you a visual picture of the intersection points. It's not precise for exact answers, but it's invaluable for understanding what's happening and checking your algebra.

How Graphing Works

For the system:

y = x² - 4
y = 2x - 1

Step 1: Graph the parabola y = x² - 4 (opens upward, vertex at (0, -4), y-intercept at -4)

Step 2: Graph the line y = 2x - 1 (slope 2, y-intercept at -1)

Step 3: Identify intersection points visually. The line crosses the parabola at approximately x ≈ -1.3 and x ≈ 2.3.

Step 4: Verify by substituting into both equations. The intersections are at (-1 - √2, -3 - 2√2) and (-1 + √2, -3 + 2√2).

When Graphing Is Useful

Comparing the Three Methods

Method Best For Precision Speed Drawback
Substitution Linear eq. solved for a variable Exact Medium Can lead to messy expansion
Elimination Opposite coefficients; simple quadratics Exact Fast when applicable Doesn't always align cleanly
Graphing Visualization; quick estimates Approximate Fast No exact algebraic answers

Getting Started: A Practical Approach

Here's how to tackle any linear quadratic system problem:

  1. Identify the equations — Which one is linear? Which is quadratic? The linear equation should be your starting point for substitution.
  2. Check if the linear equation is solved — If y = mx + b, you can substitute immediately. If not, solve for one variable first.
  3. Substitute into the quadratic — Replace the isolated variable with its expression from the linear equation.
  4. Solve the resulting quadratic — Use factoring if it factors cleanly, or the quadratic formula if it doesn't. Expect 0, 1, or 2 real solutions.
  5. Back-substitute to find the other variable — Plug each x-value (or y-value) back into the linear equation to get the complete coordinate pair.
  6. Check your answers — Substitute both coordinates into both original equations to verify they work.

Common Mistakes to Avoid

Example: Complete Walkthrough

Problem: Solve the system
y = x² - 5x + 3
y = 3x - 7

Solution:

The linear equation is already solved for y. Substitute 3x - 7 for y in the quadratic:

3x - 7 = x² - 5x + 3

Rearrange to standard form:

0 = x² - 5x + 3 - 3x + 7
0 = x² - 8x + 10

Apply the quadratic formula:

x = (8 ± √(64 - 40)) / 2
x = (8 ± √24) / 2
x = (8 ± 2√6) / 2
x = 4 ± √6

Find y-values using y = 3x - 7:

For x = 4 + √6: y = 3(4 + √6) - 7 = 12 + 3√6 - 7 = 5 + 3√6
For x = 4 - √6: y = 3(4 - √6) - 7 = 12 - 3√6 - 7 = 5 - 3√6

Solutions: (4 + √6, 5 + 3√6) and (4 - √6, 5 - 3√6)

When There's Only One Solution

If the quadratic discriminant equals zero, the line is tangent to the parabola. You get exactly one intersection point. This happens when the line just touches the curve without crossing it.

For example, with y = x² and y = 2x - 1, substituting gives:

2x - 1 = x²
0 = x² - 2x + 1
0 = (x - 1)²

The discriminant is 0. The only solution is x = 1, y = 1. The line touches the parabola at its vertex.

When There's No Solution

If the discriminant is negative, the quadratic has no real roots. The line and parabola don't intersect. Graphically, the line passes entirely above or below the parabola.

This isn't an error—it's a valid answer. Some linear quadratic systems have zero, one, or two solutions. Always check what the discriminant tells you.

Bottom Line

Substitution is the most reliable method for most problems. Graphing helps you visualize and check your work. Elimination works when coefficients conveniently align.

Practice with systems where the linear equation is already solved, then move to problems requiring rearrangement. Master the quadratic formula—you'll use it constantly. The steps don't change: substitute, simplify, solve, check.