Understanding Linear Systems
A linear equation in two variables has the form ax + by = c, where all variables appear only to the first power—never squared, cubed, or under a radical. When two or more such equations must be satisfied simultaneously, you have a system of linear equations.
A system of two equations in two unknowns looks like:
a₁x + b₁y = c₁
a₂x + b₂y = c₂
where a, b, and c are known coefficients. The solution is the pair (x, y) that satisfies both equations at once. Geometrically, you're finding the point where two lines intersect.
The Linear Combination Method
To eliminate one variable, find the least common multiple (LCM) of the coefficients you want to cancel. If eliminating x, compute the LCM of a₁ and a₂:
Let L = LCM(a₁, a₂)
m₁ = L ÷ a₁
m₂ = L ÷ a₂
Multiply equation 1 by m₁: (m₁ × a₁)x + (m₁ × b₁)y = m₁ × c₁
Multiply equation 2 by −m₂: (−m₂ × a₂)x + (−m₂ × b₂)y = −m₂ × c₂
Add the equations: (m₁ × b₁ − m₂ × b₂)y = m₁ × c₁ − m₂ × c₂
Solve for y, then substitute back to find x
L— Least common multiple of the leading coefficientsm₁— Multiplier for the first equationm₂— Multiplier for the second equationa₁, b₁, c₁— Coefficients of the first equationa₂, b₂, c₂— Coefficients of the second equation
Worked Example
Solve the system:
x − 4y = 1
−2x + 4y = 2
Step 1: Notice that the x coefficient in the first equation is 1 and in the second is −2. The LCM is 2. Multiply the first equation by 2:
2x − 8y = 2
Step 2: Now add this to the second equation:
(2x − 8y) + (−2x + 4y) = 2 + 2
−4y = 4
y = −1
Step 3: Substitute y = −1 into the first equation:
x − 4(−1) = 1
x + 4 = 1
x = −3
Verification: Check both original equations with (x, y) = (−3, −1). Both are satisfied. ✓
Common Pitfalls and Tips
Master these practical points to avoid errors when using the linear combination method.
- Sign errors when multiplying — When you multiply an entire equation by a negative number, every term—including the constant on the right—must change sign. A single missed negative will cascade through your work and produce the wrong answer.
- Finding the correct LCM — Always find the LCM of the coefficients you intend to eliminate, not just any common multiple. Using a larger multiple than necessary adds complexity without benefit and increases the chance of arithmetic mistakes.
- Forgetting to back-substitute — Once you solve for one variable, you must substitute its value into one of the original equations to find the other variable. Stopping after finding just one answer means your solution is incomplete.
- Incompatible or dependent systems — Not all systems have a unique solution. If the equations are scalar multiples of each other (dependent), you have infinitely many solutions. If they are parallel (inconsistent), you have no solution. Watch for these edge cases.
Vector Interpretation
In linear algebra, the language of linear combinations extends naturally to vectors. If a, b, and c are vectors, a vector d is a linear combination of them if:
d = x·a + y·b + z·c
where x, y, and z are scalars. This generalizes the method beyond systems of scalar equations. Solving a system of linear equations is equivalent to asking: what scalars make the constant vector expressible as a linear combination of the coefficient vectors?