The Idea Every Method Quietly Depends On
A linear equation is a balance scale. Whatever you do to one pan, you must do to the other, or the scale tips and the answer is wrong. Every technique below, from the two-line one-variable solve to the graphical method, is really just this one rule applied carefully.
Once you trust the balance idea, solving stops being a bag of tricks. It becomes one move, applied in order, until the variable is alone on one side.
What Does It Mean to Solve a Linear Equation?
A linear equation is an equation where the variable appears only to the first power, with no squares, roots, or products of variables. Solving it means finding the value of the variable that makes the left side equal the right side. That value is called the solution.
For a single variable, the goal is to isolate the variable on one side. For two or more variables, you need a system of equations, and the solution is the set of values that satisfies all of them at once. Everything here builds on linear equations as a foundation.
How Do You Solve a Linear Equation in One Variable?
The balance method drives the whole thing: perform the same operation on both sides until the variable is alone. The order rarely changes.
Simplify each side, clearing brackets and combining like terms.
Move all variable terms to one side and all constants to the other, doing the same operation to both sides.
Divide (or multiply) both sides by the coefficient of the variable.
Check the answer by substituting it back into the original equation.
Take $2x + 3 = 11$. Solve it one step at a time:
$$2x + 3 = 11,$$
$$2x = 8,$$
$$x = 4.$$
Why do you do the same thing to both sides? Because the equals sign is a promise that the two sides are equal, and only an identical change to each side keeps that promise true. Subtract $3$ from just the left and the balance breaks, so the new equation no longer has the same solution as the old one.
What Are the Methods for Solving Systems of Linear Equations?
When two variables appear, one equation is not enough; you need two equations and a method that uses both. The main options:
Method | How it works | Best when |
|---|---|---|
Substitution | Solve one equation for a variable, then substitute into the other | One variable already has coefficient $1$ |
Elimination | Add or subtract the equations to cancel a variable | Coefficients line up or scale easily |
Graphical | Plot both lines; the intersection point is the solution | You want to see the solution |
Cross-multiplication | Apply a fixed formula to the coefficients | Two-variable systems in standard form |
Matrix / determinants | Use matrices or Cramer's rule | Three or more variables |
The substitution method and the elimination method are the two you will reach for most in school, while the graphical method is the one that makes the solution visible as a crossing point. For larger systems of equations, matrices and Cramer's rule take over.
Examples of Solving Linear Equations
The set runs from a clean one-variable solve, through the sign-flip trap, and across substitution, elimination, the graphical method, and fractions. The first instinct when a term crosses the equals sign is to carry it over unchanged, and the sign flip is the step that most often gets dropped.
Example 1
Solve $3x - 6 = 0$.
$$3x - 6 = 0,$$
$$3x = 6,$$
$$x = 2.$$
Final answer: $x = 2$. Check: $3(2) - 6 = 0$.
Example 2
Solve $5x + 3 = 2x + 12$.
Wrong attempt. A student moves $2x$ to the left but keeps its sign, writing $5x + 2x + 3 = 12$, which gives $7x = 9$ and $x = \tfrac{9}{7}$.
Test it against the original. If $x = \tfrac{9}{7}$, the left side is $5(\tfrac{9}{7}) + 3 = \tfrac{66}{7}$, while the right side is $2(\tfrac{9}{7}) + 12 = \tfrac{102}{7}$. The two sides do not match, so the answer is wrong.
Correct method. Subtract $2x$ from both sides, so the moved term changes sign:
$$5x + 3 = 2x + 12,$$
$$5x - 2x + 3 = 12,$$
$$3x + 3 = 12,$$
$$3x = 9,$$
$$x = 3.$$
Final answer: $x = 3$. Check: $5(3) + 3 = 18$ and $2(3) + 12 = 18$.
Example 3
Solve the system by substitution: $x + y = 6$ and $2x + 4y = 20$.
From the first equation, express $y$:
$$y = 6 - x.$$
Substitute into the second equation:
$$2x + 4(6 - x) = 20,$$
$$2x + 24 - 4x = 20,$$
$$-2x = -4,$$
$$x = 2.$$
Back-substitute:
$$y = 6 - 2 = 4.$$
Final answer: $x = 2$, $y = 4$. Check: $2(2) + 4(4) = 20$.
Example 4
Solve the system by elimination: $2x + y = 11$ and $x + 3y = 18$.
Multiply the first equation by $3$ so the $y$ terms match:
$$6x + 3y = 33.$$
Subtract the second equation from this:
$$6x + 3y - (x + 3y) = 33 - 18,$$
$$5x = 15,$$
$$x = 3.$$
Substitute back into the first equation:
$$2(3) + y = 11,$$
$$y = 5.$$
Final answer: $x = 3$, $y = 5$. Check: $3 + 3(5) = 18$.
Example 5
Solve graphically: $x + y = 8$ and $y = x + 2$.
Set the two expressions for $y$ equal, since both lines share the same solution point:
$$x + 2 = 8 - x,$$
$$2x = 6,$$
$$x = 3.$$
Find $y$:
$$y = 3 + 2 = 5.$$
Final answer: the lines cross at $(3, 5)$, so $x = 3$, $y = 5$. Plotting both lines confirms a single intersection point.
Example 6
Solve the equation with fractions: $\dfrac{x}{2} + \dfrac{x}{3} = 5$.
Multiply every term by the least common denominator, $6$:
$$6 \cdot \dfrac{x}{2} + 6 \cdot \dfrac{x}{3} = 6 \cdot 5,$$
$$3x + 2x = 30,$$
$$5x = 30,$$
$$x = 6.$$
Final answer: $x = 6$. Check: $\dfrac{6}{2} + \dfrac{6}{3} = 3 + 2 = 5$.
Where Is Solving Linear Equations Used?
"How do you find the point where two changing quantities meet?"
Solving linear equations is how you find break-even points, mixing ratios, and rates of change. A business finds the output where revenue equals cost by solving a linear equation; a chemist finds the volume that gives a target concentration the same way. The moment two quantities are compared and you want the value that makes them equal, you are solving a linear equation.
Where it earns its keep:
Modelling and prediction. Straight-line relationships (distance and time, cost and quantity) are linear equations, and solving them answers "when" and "how much".
Systems in the real world. Two constraints at once, a budget and a calorie target, supply and demand, become a system solved by substitution or elimination.
Linear regression and optimisation. Fitting a best line through data and finding optimal solutions both rest on solving linear systems, the foundation the OpenStax College Algebra treatment builds toward.
That last use is the destination worth seeing early: the same balance move you use on $2x + 3 = 11$ scales up, through matrices, to the linear systems that power data science and machine learning.
Common Mistakes with Solving Linear Equations
Mistake 1: Not changing the sign when moving a term across the equals sign
Where it slips in: Transposing a term from one side to the other.
Don't do this: Carry a term over the equals sign while keeping its original sign.
The correct way: Moving a term across is really subtracting (or adding) it to both sides, so its sign flips. The rusher who writes $5x + 2x + 3 = 12$ instead of $5x - 2x + 3 = 12$ has skipped that flip, exactly the slip in Example 2.
Mistake 2: Applying an operation to only one side
Where it slips in: Multiplying, dividing, or subtracting during a solve.
Don't do this: Multiply the left side by a number and forget the right side, or clear a fraction on one term only.
The correct way: Every operation touches both sides in full. When clearing fractions, multiply every term on both sides by the least common denominator, not just the fractional ones.
Mistake 3: Skipping the check
Where it slips in: After reaching a value for the variable.
Don't do this: Write the answer and move on without substituting it back.
The correct way: Put the solution into the original equation and confirm both sides are equal. The second-guesser who verifies once catches sign errors and arithmetic slips that a fresh solve would repeat.
Conclusion
Solving linear equations means finding the variable value that keeps both sides equal.
The balance method drives every technique: do the same operation to both sides until the variable is alone.
One variable needs one equation; systems of two variables use substitution, elimination, or the graphical method.
Larger systems move to cross-multiplication, matrices, or Cramer's rule.
The costliest mistakes are forgetting to flip a sign when transposing, changing only one side, and skipping the check.
To take solving linear equations further with a teacher, explore Bhanzu's algebra tutor, get focused help with algebra, or join math classes online.
Practice These to Solidify Your Understanding
Solve $4x - 7 = 2x + 5$ in one variable, showing each step on its own line.
Solve the system $x + 2y = 7$ and $3x - y = 7$ by elimination.
Solve $\dfrac{x}{4} + \dfrac{x}{6} = 5$ by clearing the fractions first.
If Problem 1 comes out wrong, recheck the sign on the term you moved across, then see Mistake 1. Want a live Bhanzu trainer to walk through solving linear equations step by step? Book a free demo class.
Read More
Was this article helpful?
Your feedback helps us write better content
