When Two Lines Meet

System of two linear equations
-4-3-2-11234xy(2.0, 1.0)y = 1.0x − 1.0y = −1.0x + 3.0solution: x = 2.00, y = 1.00

A system of equations asks a deceptively simple question: is there a point that satisfies both equations at once?

When each equation is linear, each one describes a line. A point that satisfies both lies on both lines simultaneously. So solving the system means finding where the lines intersect — if they do at all.

Three possible outcomes

Two lines in the plane fall into one of three cases:

One intersection point. The lines cross at exactly one place. The system has exactly one solution.

No intersection. The lines are parallel — they have the same slope but different y-intercepts. They never meet. The system has no solution (it's inconsistent).

Infinitely many intersections. The lines are identical — same slope, same intercept, just written differently. Every point on one is on the other. The system has infinitely many solutions.

These aren't edge cases. They're the complete picture.

Two algebraic methods

Substitution works by solving one equation for one variable, then plugging into the other:

Substitution method

y=2x+13x+y=11y = 2x + 1 \qquad 3x + y = 11

Substitute y=2x+1y = 2x + 1 into the second equation:

3x+(2x+1)=11    5x=10    x=23x + (2x + 1) = 11 \implies 5x = 10 \implies x = 2

Back-substitute: y=2(2)+1=5y = 2(2) + 1 = 5.

Solution: (2,5)(2, 5).

Elimination works by adding or subtracting multiples of the equations to cancel a variable:

Elimination method

2x+3y=124x3y=62x + 3y = 12 \qquad 4x - 3y = 6

The yy terms are already opposite in sign. Add the equations:

6x=18    x=36x = 18 \implies x = 3

Substitute: 2(3)+3y=12    y=22(3) + 3y = 12 \implies y = 2.

Solution: (3,2)(3, 2).

Detecting the other cases algebraically

When you get a false statement like 0=50 = 5 during solving, the system is inconsistent — the lines are parallel and there's no solution.

When you get a true statement like 0=00 = 0, the equations are dependent — the lines are the same and there are infinitely many solutions.

A parallel system

y=3x+1y=3x+4y = 3x + 1 \qquad y = 3x + 4

Both have slope 33. The y-intercepts differ, so the lines are parallel.

Substituting: 3x+1=3x+4    1=43x + 1 = 3x + 4 \implies 1 = 4. False. No solution.

What the intersection point actually means

A system of equations is a model of constraints. Each equation rules out most of the plane — only a line satisfies it. The solution is what's left when you impose both constraints simultaneously.

In economics, two supply and demand curves intersect at the equilibrium price and quantity. In physics, two equations of motion intersect at the time and place of collision. In circuit analysis, Kirchhoff's laws are a system whose solution is the current in each branch.

The algebra of systems is the algebra of constraints — and it scales. A system with 100 variables and 100 equations uses the same idea, just in 100-dimensional space rather than a plane.

A preview: when lines don't behave

Not every system of equations involves lines. When the equations are non-linear — curves rather than lines — the geometry gets richer. Two circles can intersect at zero, one, or two points. A line and a parabola can intersect at zero, one, or two points.

But the core question is the same: find the values that satisfy all constraints at once. The techniques change; the concept doesn't.