When Two Lines Meet
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:
Substitute into the second equation:
Back-substitute: .
Solution: .
Elimination works by adding or subtracting multiples of the equations to cancel a variable:
The terms are already opposite in sign. Add the equations:
Substitute: .
Solution: .
Detecting the other cases algebraically
When you get a false statement like during solving, the system is inconsistent — the lines are parallel and there's no solution.
When you get a true statement like , the equations are dependent — the lines are the same and there are infinitely many solutions.
Both have slope . The y-intercepts differ, so the lines are parallel.
Substituting: . 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.