Systems of Linear Equations Explained
A single linear equation describes one line. Two equations together describe two lines, and solving the system means finding every point where those lines meet — if they meet at all. This idea scales from simple two-variable word problems to the massive systems that run airline scheduling and structural engineering software.
What a Solution to a System Means
A solution to a system of two equations in x and y is a pair of values that makes both equations true simultaneously. Graphically, each linear equation is a straight line, and a solution is a point where the lines cross. Because two distinct straight lines can relate to each other in only three ways — crossing once, running parallel, or lying exactly on top of each other — a system has exactly one solution, no solution, or infinitely many solutions, with no other possibilities.
Solving by Substitution
Substitution works best when one equation is already solved for a variable, or can easily be. Take the system y = 2x + 1 and 3x + y = 11. Since the first equation gives y directly, substitute it into the second: 3x + (2x + 1) = 11, which simplifies to 5x + 1 = 11, so x = 2. Substituting back gives y = 2(2) + 1 = 5. The solution is (2, 5), and you can check it by plugging both values into the original second equation: 3(2) + 5 = 11. Correct.
Solving by Elimination
Elimination is often faster when both equations are already in standard form (ax + by = c). Take 2x + 3y = 12 and 4x − 3y = 6. The y terms have opposite coefficients, so adding the two equations directly eliminates y: 6x = 18, giving x = 3. Substituting into the first equation gives 2(3) + 3y = 12, so 3y = 6 and y = 2. When coefficients don't already cancel, multiply one or both equations by a constant first so that one variable's coefficients become opposites, then add.
Solving by Graphing
Graphing both lines on the same axes gives a visual solution: the intersection point is the answer. This method is the most intuitive for building understanding but the least precise by hand, since reading exact coordinates off a hand-drawn graph is error-prone unless the solution happens to fall on whole-number gridlines. It remains useful, however, for quickly seeing whether a system has one solution, no solution (parallel lines), or infinite solutions (identical lines) before committing to algebra.
No Solution and Infinite Solutions
If two equations simplify to the same slope but different y-intercepts, the lines are parallel and never meet — the system has no solution. Algebraically, this shows up as a contradiction like 0 = 7 partway through solving. If the two equations are actually the same line written differently (for example, y = 2x + 1 and 2y = 4x + 2), every point on the line satisfies both equations, so there are infinitely many solutions. Algebraically this shows up as an identity like 0 = 0.
Word Problems: Setting Up the System
The hardest part of most system-of-equations word problems is translating English into equations, not solving them. Suppose a movie theater sells adult tickets for $12 and child tickets for $7, and one showing brings in $1,050 from 100 tickets total. Let a = adult tickets and c = child tickets. The two facts translate directly: a + c = 100 (total tickets) and 12a + 7c = 1050 (total revenue). Solving by substitution (c = 100 − a, then 12a + 7(100 − a) = 1050) gives a = 70 adult tickets and c = 30 child tickets.
Summary
A system of linear equations asks where two or more lines intersect, and it can be solved by substitution, elimination, or graphing depending on how the equations are arranged. Exactly one, zero, or infinitely many solutions are possible, corresponding to intersecting, parallel, or identical lines. These techniques build directly on the material in linear equations and graphs and the problem-translation skills covered in algebra word problems, and they form the foundation for the matrix methods used to solve much larger systems in engineering and computer science.