Simultaneous Linear Equations: Methods & Examples

#Algebra
TL;DR
Simultaneous linear equations are two (or more) linear equations that share the same unknowns and are solved together to find the values that satisfy all of them at once. You can solve them four ways: substitution, elimination, cross-multiplication, and graphing. A pair can have one solution, no solution, or infinitely many, and the coefficient ratios tell you which before you start.
BT
Bhanzu TeamLast updated on September 9, 202613 min read

What Are Simultaneous Linear Equations?

Simultaneous linear equations are a set of two or more linear equations in the same variables, solved together so that one pair of values makes every equation true at the same time. A single linear equation in two unknowns, such as $x + y = 5$, has endless solutions. Pair it with a second equation and the possibilities usually collapse to one.

Take this pair:

$$x + y = 5, \qquad x - y = 1$$

On their own, each line allows countless $(x, y)$ points. Together, only $x = 3$ and $y = 2$ satisfy both. That shared answer is the solution of the system, and finding it is what "solving simultaneously" means.

A quick vocabulary note. "Linear" means every variable appears only to the first power, so no $x^2$, no $xy$, no $\sqrt{y}$. Each equation graphs as a straight line, which is exactly why the graphical picture is so clean. For a refresher on a single equation first, see linear equations in two variables.

How Do You Solve Simultaneous Linear Equations By Substitution?

To solve by substitution, make one variable the subject of one equation, then put that expression into the other equation so only one unknown is left.

Solve the system:

$$3x + y = 9, \qquad y = 2x - 1$$

The second equation already gives $y$ on its own, so substitute it into the first:

$3x + (2x - 1) = 9$

$5x - 1 = 9$

$5x = 10$

$x = 2$

Now put $x = 2$ back into $y = 2x - 1$:

$y = 2(2) - 1 = 3$

Final answer: $x = 2$, $y = 3$, written as the ordered pair $(2, 3)$.

Substitution is the natural choice when one variable already stands alone, or when its coefficient is $1$ so isolating it costs nothing. For a step-by-step drill on this technique, see the substitution method.

How Do You Solve Simultaneous Linear Equations By Elimination?

To solve by elimination, add or subtract the two equations so that one variable cancels, leaving a single equation in the other variable.

Solve the system:

$$3x + 2y = 12, \qquad 3x - 2y = 0$$

The $y$-terms are already opposite ($+2y$ and $-2y$), so adding the equations cancels $y$:

$(3x + 2y) + (3x - 2y) = 12 + 0$

$6x = 12$

$x = 2$

Substitute $x = 2$ into the first equation:

$3(2) + 2y = 12$

$6 + 2y = 12$

$2y = 6$

$y = 3$

Final answer: $(2, 3)$.

When the coefficients do not match, scale one or both equations first. To eliminate $x$ from $2x + 3y = 13$ and $x - y = -1$, multiply the second equation by $2$ so both carry $2x$, then subtract. The rule to hold onto: whatever you multiply an equation by, multiply every term. For more practice, see the elimination method.

How Do You Solve Simultaneous Linear Equations By Cross-Multiplication?

Cross-multiplication is a formula method for a pair written in standard form. Write both equations as $a_1x + b_1y + c_1 = 0$ and $a_2x + b_2y + c_2 = 0$, then apply:

$$\frac{x}{b_1c_2 - b_2c_1} = \frac{y}{c_1a_2 - c_2a_1} = \frac{1}{a_1b_2 - a_2b_1}$$

Solve the same system as before, $2x + 3y = 13$ and $x - y = -1$, first rewritten in standard form:

$$2x + 3y - 13 = 0, \qquad x - y + 1 = 0$$

So $a_1 = 2$, $b_1 = 3$, $c_1 = -13$ and $a_2 = 1$, $b_2 = -1$, $c_2 = 1$. Substitute:

$$\frac{x}{(3)(1) - (-1)(-13)} = \frac{y}{(-13)(1) - (1)(2)} = \frac{1}{(2)(-1) - (1)(3)}$$

$$\frac{x}{3 - 13} = \frac{y}{-13 - 2} = \frac{1}{-2 - 3} ;\Rightarrow; \frac{x}{-10} = \frac{y}{-15} = \frac{1}{-5}$$

From the first and last fractions, $x = \dfrac{-10}{-5} = 2$. From the middle and last, $y = \dfrac{-15}{-5} = 3$.

Final answer: $(2, 3)$, matching the earlier methods. Cross-multiplication earns its keep when the numbers are awkward and you want a direct formula rather than step-by-step rearranging. It is a close cousin of the determinant approach in Cramer's rule.

How Do You Solve Simultaneous Linear Equations Graphically?

To solve graphically, plot both equations as straight lines on the same axes. The point where they cross is the solution, because that point lies on both lines at once.

For $x + y = 5$ and $x - y = 1$, plot each line using two points, then read off the intersection at $(3, 2)$.

The graphical method is the slowest for exact answers, since reading a fractional intersection off a grid is imprecise. Its real value is conceptual: it shows why a system has one solution, none, or infinitely many. That link between picture and answer is worth building early, so it helps to be fluent at graphing linear equations.

Can You Solve The Same System Two Ways And Get The Same Answer?

Yes, and doing it once is the fastest way to trust the methods. A correct system has one solution, so every valid method must land on it.

Take $2x + 3y = 13$ and $x - y = -1$.

By substitution: rearrange the second equation to $x = y - 1$, then substitute into the first.

$2(y - 1) + 3y = 13$

$2y - 2 + 3y = 13$

$5y = 15$

$y = 3, \quad x = 2$

By elimination: multiply the second equation by $2$ to get $2x - 2y = -2$, then subtract it from the first.

$(2x + 3y) - (2x - 2y) = 13 - (-2)$

$5y = 15$

$y = 3, \quad x = 2$

Both routes give $(2, 3)$, the same point the cross-multiplication section reached. The methods are not rivals. They are different paths to one meeting point, and you pick whichever keeps the arithmetic clean.

How Many Solutions Can Simultaneous Linear Equations Have?

A pair of linear equations has exactly one of three outcomes, and you can predict which by comparing the coefficients before solving. Write the system as $a_1x + b_1y + c_1 = 0$ and $a_2x + b_2y + c_2 = 0$.

  • Unique solution (consistent, independent). The lines cross at one point. This happens when $\dfrac{a_1}{a_2} \neq \dfrac{b_1}{b_2}$. The gradients differ, so the lines must meet somewhere.

  • No solution (inconsistent). The lines are parallel and never meet. This happens when $\dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} \neq \dfrac{c_1}{c_2}$. Same slope, different intercept.

  • Infinitely many solutions (consistent, dependent). The two equations describe the same line, so every point on it works. This happens when $\dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} = \dfrac{c_1}{c_2}$.

Table: The coefficient-ratio test for the number of solutions.

Ratio condition

Lines

Number of solutions

$\frac{a_1}{a_2} \neq \frac{b_1}{b_2}$

Intersecting

Exactly one

$\frac{a_1}{a_2} = \frac{b_1}{b_2} \neq \frac{c_1}{c_2}$

Parallel

None

$\frac{a_1}{a_2} = \frac{b_1}{b_2} = \frac{c_1}{c_2}$

Coincident

Infinitely many

Checking the ratios first saves wasted effort. If you start solving a parallel pair, the variables vanish and you end with a false statement like $0 = 4$, the algebraic signal that there is no solution.

How Do You Solve A Simultaneous Linear Equations Word Problem?

Most exam questions arrive as sentences, not equations. The skill is translation: turn each English condition into one equation, then solve the pair.

Two adult tickets and three child tickets to a science museum cost $16. One adult ticket and one child ticket together cost $7. Find each price.

First, name the unknowns in plain language. Let $a$ be the price of an adult ticket and $c$ the price of a child ticket. Now translate each sentence, using the table below as a guide.

Table: Turning the word problem's phrases into algebra.

English phrase

Algebraic translation

"Two adult tickets and three child tickets cost $16"

$2a + 3c = 16$

"One adult ticket and one child ticket cost $7"

$a + c = 7$

"the price of"

a variable ($a$ or $c$)

"cost / is / together make"

$=$

Solve by substitution. From $a + c = 7$, write $a = 7 - c$, then substitute into the first equation:

$2(7 - c) + 3c = 16$

$14 - 2c + 3c = 16$

$14 + c = 16$

$c = 2, \quad a = 5$

An adult ticket costs $5 and a child ticket costs $2. Check both conditions: $2(5) + 3(2) = 16$ and $5 + 2 = 7$. Both hold, so the answer is correct. For more of these, see applications of linear equations.

Why Do We Solve Simultaneous Linear Equations?

One equation with two unknowns is a promise, not an answer. It fixes a relationship between the variables but leaves endless possibilities open. A second equation adds a second condition, and the two conditions together usually pin the answer down.

That is the whole idea behind solving systems.

  • Two constraints, one meeting point. Each equation is a rule the answer must obey. Solving finds the single pair of values that obeys both rules, the place where two conditions agree.

  • Comparing two changing quantities. Break-even points, tipping points, and crossover moments are all questions of "when do these two quantities become equal?" Each quantity is a line, and the answer is where they cross.

  • Turning a story into a solvable object. Real situations rarely hand you one clean equation. They hand you several facts. Writing each fact as an equation and solving the set is how a messy situation becomes a definite answer.

The deeper reason is that most real questions involve more than one condition at a time. Cost depends on price and quantity. A journey depends on speed and time.

Simultaneous equations are the arithmetic of "several things must be true at once," which is why they outgrow the algebra classroom so quickly. They sit inside the broader idea of a system of equations.

Who Invented The Methods For Simultaneous Linear Equations?

Long before the equals sign existed, people were already solving simultaneous equations, just with rods laid out on a board instead of symbols on a page.

Two later mathematicians gave the subject its modern tools:

  • Gabriel Cramer (1704–1752, Switzerland) published the determinant formula now called Cramer's rule in 1750, giving a direct way to solve a system straight from its coefficients.

  • Carl Friedrich Gauss (1777–1855, Germany) formalised the systematic row-elimination method while computing the orbit of the asteroid Ceres, turning the ancient counting-board trick into the algorithm taught today.

Where Are Simultaneous Linear Equations Used In The Real World?

The same two-conditions-at-once idea runs under a surprising range of everyday decisions and professional tools.

  • Business and break-even analysis: setting a company's cost line equal to its revenue line finds the exact output where it stops losing money and starts profiting.

  • Mixtures and chemistry: combining two solutions of different strengths to hit a target concentration is a pair of equations, one for total volume and one for the active ingredient.

  • Nutrition and diet planning: choosing amounts of two foods to hit both a calorie target and a protein target is a two-equation system.

  • Electrical engineering: Kirchhoff's laws turn a circuit into simultaneous equations, and solving them gives the current in each branch.

  • Travel and logistics: comparing two pricing plans, two routes, or two speeds to find where they match is the crossover question systems were built to answer.

One idea, finding where two conditions agree, quietly powers pricing decisions, lab work, meal plans, and circuit boards. That reach across unrelated fields is what makes algebra worth the effort.

What Are The Most Common Simultaneous Linear Equations Mistakes?

These four errors cost the most marks on systems questions, and each one matches the misconceptions documented in exam-board revision guides and study booklets.

Sign errors when adding or subtracting in elimination.

Where it slips in:

A student subtracts one equation from another but forgets that subtracting a negative flips it to a plus, so $-(-2y)$ becomes $-2y$ instead of $+2y$.

Don't do this:

Do not rush the combine step, especially when negative coefficients are involved.

The correct way:

Rewrite subtraction as adding the opposite: change every sign in the equation being subtracted, then add straight down. One sign flip per term, checked once.

Substituting the found value back into the wrong place.

Where it slips in:

After finding $x$, a student plugs it into a rearranged or scaled version of an equation rather than an original one, carrying an earlier slip into the second answer.

Don't do this:

Do not substitute into an equation you have already multiplied or altered.

The correct way:

Put the first value back into one of the two original equations to find the second variable. The originals are the only lines you know are exactly true.

Not checking the answer in both equations.

Where it slips in:

A student verifies the solution in the equation they used last, sees it work, and stops, missing an error that only shows up in the other equation.

Don't do this:

Do not confirm against a single equation. One equation cannot catch a mistake that satisfies it by chance.

The correct way:

Substitute the pair into both original equations. A true solution makes both left-hand sides equal both right-hand sides. If either fails, the answer is wrong.

Forgetting to multiply every term when scaling an equation.

Where it slips in:

To match coefficients, a student multiplies the two variable terms by a number but leaves the constant on the right untouched.

Don't do this:

Do not scale part of an equation. Multiplying $x - y = -1$ by $2$ and writing $2x - 2y = -1$ breaks the equation.

The correct way:

Multiply every term on both sides by the same number, so $x - y = -1$ becomes $2x - 2y = -2$. Balance is only kept when the whole equation is scaled.

Practice Problems On Simultaneous Linear Equations

Solve each system, then check your answer in both equations. Answers follow each problem.

  1. Solve $x + y = 7$ and $x - y = 3$ by elimination.
    (Answer: $(5, 2)$.)

  2. Solve $y = x + 1$ and $2x + y = 10$ by substitution.
    (Answer: $(3, 4)$.)

  3. Solve $2x + 3y = 12$ and $x + y = 5$.
    (Answer: $(3, 2)$.)

  4. How many solutions does $2x + 4y = 6$ and $x + 2y = 3$ have?
    (Answer: Infinitely many. The ratios $\tfrac{2}{1} = \tfrac{4}{2} = \tfrac{6}{3}$ are equal, so the lines coincide.)

  5. How many solutions does $x + y = 4$ and $x + y = 9$ have?
    (Answer: None. Same slope, different constant, so the lines are parallel.)

  6. A rope $20$ m long is cut into two pieces, and one piece is $4$ m longer than the other. Find both lengths.
    (Answer: Let the pieces be $x$ and $y$; $x + y = 20$ and $x - y = 4$ give $(12, 8)$, so $12$ m and $8$ m.)

Where Should You Go Next After Simultaneous Linear Equations?

Solving two equations together opens straight onto the wider world of algebraic systems, and a few natural doors lead out from here.

  1. System of equations. Step up to three or more equations and three or more unknowns, where elimination becomes a systematic routine.

  2. Cramer's rule. Meet the determinant shortcut that solves a system directly from its coefficients, the modern face of the cross-multiplication idea.

  3. Applications of linear equations. Turn more real-world stories into equations and solve them, from mixtures to money to motion.

If your child is building these foundations, a live Bhanzu trainer teaches simultaneous linear equations starting from the "why" (two conditions meeting at one point) before any method, in the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are simultaneous linear equations?
They are two or more linear equations in the same variables, solved together to find the values that make every equation true at once. For two variables, the solution is the single point where the lines meet.
What are the four methods to solve simultaneous linear equations?
Substitution, elimination, cross-multiplication, and the graphical method. Substitution and elimination are the everyday workhorses, cross-multiplication is a direct formula for awkward numbers, and the graph shows the answer visually.
Can simultaneous equations have no solution?
Yes. When the two lines are parallel, they never meet, so there is no pair of values that fits both. Algebraically the variables cancel and you are left with a false statement such as $0 = 5$.
Which method is the fastest?
It depends on the system. Use substitution when a variable already stands alone or has a coefficient of $1$; use elimination when the coefficients line up for easy cancelling. The graphical method is best for understanding, not for exact fractional answers.
What is the difference between simultaneous equations and a single linear equation?
A single linear equation in two unknowns has infinitely many solutions, one for every point on its line. Simultaneous equations add a second condition, which usually narrows those infinite possibilities down to one shared point.
How do I check my answer is correct?
Substitute both values back into both original equations. If each equation's left side equals its right side, the solution is correct. Checking only one equation can miss an error, so always test both.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →