Simultaneous Equations — Methods and Examples

#Algebra
TL;DR
Simultaneous equations are two or more equations that share the same variables and are solved together to find values that satisfy all of them at once. This article covers the substitution, elimination, and graphing methods, when each is best, common mistakes, and six worked examples.
BT
Bhanzu TeamLast updated on July 18, 20269 min read

What Are Simultaneous Equations?

Simultaneous equations are a set of two or more equations that contain the same variables and must be satisfied at the same time. Solving them means finding the values of the variables that make every equation true together. For two equations in two variables, the solution is the single pair $(x, y)$ that fits both, and these are the workhorse case of linear equations taught in school.

The Three Methods at a Glance

There are three standard methods, and all three give the same answer. The skill is choosing the one that keeps the arithmetic simplest.

  • Substitution — solve one equation for a variable, then put that expression into the other.

  • Elimination — add or subtract the equations to cancel one variable.

  • Graphing — draw both lines and read the crossing point.

A variable is a letter standing for an unknown number; a coefficient is the number multiplying it. When the equations are written in standard form $Ax + By = C$, elimination usually lines up most cleanly.

Methods of Solving Simultaneous Equations

Each method is a fixed sequence of steps. Learn the shape of each one, then the worked examples below put them into action.

Substitution Method

  1. Rearrange one equation to make a single variable the subject (for example $y = \dots$).

  2. Substitute that expression into the other equation, leaving one variable.

  3. Solve the resulting single-variable equation.

  4. Put the value back into either original equation to find the second variable.

This method fits best when one equation is already solved for a variable, so there is nothing to rearrange.

Elimination Method

  1. Line the equations up so like terms sit in columns.

  2. If needed, multiply one or both equations so a variable's coefficients match.

  3. Add or subtract the equations to remove that variable — subtract when the matching signs agree, add when they are opposite.

  4. Solve the single-variable equation, then substitute back for the second variable.

Elimination is cleanest when the equations are in standard form $Ax + By = C$.

Graphing Method

  1. Rearrange each equation into a form you can plot, such as $y = mx + b$.

  2. Draw both lines on the same axes.

  3. Read the coordinates of the point where they cross — that pair is the solution.

Graphing shows the answer visually and reveals at a glance whether a solution exists, though it is less precise than the algebraic methods when the crossing point is not a whole number.

Examples of Simultaneous Equations

The examples move through all three methods, then to a word problem and the two special cases.

Example 1 - Solve by substitution:

$$y = 2x + 1$$ $$3x + y = 11$$

The first equation already gives $y$, so substitute it into the second.

$$3x + (2x + 1) = 11$$ $$5x + 1 = 11$$ $$5x = 10$$ $$x = 2$$

Put $x = 2$ back into the first equation.

$$y = 2(2) + 1$$ $$y = 5$$

Final answer: $x = 2$, $y = 5$.

Example 2 - Solve by elimination:

$$2x + 3y = 12$$ $$2x - y = 4$$

The instinct is to add the two equations to "get rid of a variable" — but adding here gives $4x + 2y = 16$, which cancels nothing, because both $x$-terms are positive. That is the wrong move: elimination needs matching terms with opposite signs, or a subtraction.

Since both equations have $2x$, subtract the second from the first instead.

$$(2x + 3y) - (2x - y) = 12 - 4$$ $$4y = 8$$ $$y = 2$$

Substitute $y = 2$ into the second equation.

$$2x - 2 = 4$$ $$2x = 6$$ $$x = 3$$

Final answer: $x = 3$, $y = 2$. This is the elimination method in full.

Example 3 - Solve by elimination when coefficients do not match:

$$3x + 2y = 16$$ $$5x - 4y = 12$$

Multiply the first equation by 2 so the $y$-terms become opposites.

$$6x + 4y = 32$$ $$5x - 4y = 12$$

Add the equations to cancel $y$.

$$11x = 44$$ $$x = 4$$

Substitute $x = 4$ into the first original equation.

$$3(4) + 2y = 16$$ $$2y = 4$$ $$y = 2$$

Final answer: $x = 4$, $y = 2$.

Example 4 - Solve by graphing:

$$y = x + 1$$ $$y = -x + 5$$

Both are already solved for $y$, so plot each line and find where they cross.

$$x + 1 = -x + 5$$ $$2x = 4$$ $$x = 2$$ $$y = 2 + 1 = 3$$

Final answer: the lines cross at $(2, 3)$.

Example 5 - A word problem. Two coffees and one tea cost $7. One coffee and one tea cost $5. Find the price of a coffee and a tea

Let $c$ be the coffee price and $t$ the tea price.

$$2c + t = 7$$ $$c + t = 5$$

Subtract the second from the first to eliminate $t$.

$$c = 2$$

Substitute into the second equation.

$$2 + t = 5$$ $$t = 3$$

Final answer: a coffee is $2 and a tea is $3.

Example 6 - Decide how many solutions this system has:

$$x + y = 4$$ $$2x + 2y = 10$$

Divide the second equation by 2.

$$x + y = 5$$

Now compare: $x + y$ cannot equal both 4 and 5. The lines have the same slope but different intercepts, so they are parallel.

Final answer: no solution.

When One Method Beats Another

The reason simultaneous equations matter is that real questions rarely give you one clean fact. They give you a relationship and a total — a distance and a speed, a budget and a headcount — and the answer only appears when both constraints are honoured at once.

Choosing the method well is where the time is saved:

  • Use substitution when one equation already has a variable by itself, like $y = 2x + 1$. Substitution is the natural fit — see the substitution method for the full walkthrough.

  • Use elimination when the equations sit in standard form and a variable's coefficients match or can be made to match.

  • Use graphing when you want to see the answer or check whether a solution exists at all.

The three special outcomes are worth reading off the graph, not just the algebra. If the gradients differ, there is one solution. If gradients match but intercepts differ, the lines are parallel and there is no solution. If both match, the lines lie on top of each other and there are infinitely many solutions — a case that has real stakes in engineering, where a structural system with fewer independent equations than unknowns cannot be pinned down to a single safe answer.

Special Cases: No Solution and Infinite Solutions

Not every system has a single answer. Two lines can meet once, never, or everywhere, and each outcome leaves a signature you can read.

Case

What the lines do

Algebraic sign

Number of solutions

Independent

Cross at one point

You solve to a unique $(x, y)$

Exactly one

Parallel

Never meet

Collapses to a false statement like $0 = 5$

None

Coincident

Lie on top of each other

Collapses to a true statement like $0 = 0$

Infinitely many

The quick test is to compare slopes and intercepts. Different slopes mean one solution. Same slope but different intercepts means the lines are parallel and there is no solution. Same slope and same intercept means they are the same line, so every point on it solves both equations.

Common Mistakes With Simultaneous Equations

Mistake 1: Adding when you should subtract

Where it slips in: using elimination when both matching terms have the same sign.

Don't do this: adding $2x + 3y = 12$ and $2x - y = 4$ hoping the $x$ cancels — it doubles instead.

The correct way: subtract to cancel like-signed terms, add to cancel opposite-signed ones. The habit that fixes this is checking the signs of the matching column before choosing add or subtract.

Mistake 2: Substituting into the equation you already used

Where it slips in: after finding the first variable, students plug it back into the rearranged equation instead of a fresh one.

Don't do this: re-using the same manipulated line, which can hide an earlier slip.

The correct way: substitute the found value into one of the original equations. Second-guessers especially benefit from this, because it gives an independent line to check against.

Mistake 3: Missing the "no solution" and "infinite solutions" cases

Where it slips in: grinding through algebra that collapses to $0 = 5$ or $0 = 0$.

Don't do this: declaring an error and starting over.

The correct way: read the collapse. $0 = 5$ means no solution (parallel lines); $0 = 0$ means infinitely many (same line). This same failure — a system that looks solvable but is not independent — is what makes some engineering models silently indeterminate.

Conclusion

  • Simultaneous equations are equations solved together for values that satisfy all of them at once.

  • The three methods — substitution, elimination, and graphing — all give the same answer.

  • Choose substitution for an isolated variable, elimination for standard form, graphing to visualise.

  • A system can have one solution, no solution (parallel lines), or infinitely many (identical lines).

  • The most common error is adding when you should subtract during elimination.

To take simultaneous equations further with a teacher, explore Bhanzu's algebra tutor, help with algebra, or math classes online. Work through the exercises below, and if the algebra collapses to a strange line, read it as a special case rather than a mistake. Want to solve systems with a live Bhanzu trainer? Book a free demo class.

Read More

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are simultaneous equations?
They are two or more equations sharing the same variables, solved together to find values that satisfy all of them at the same time.
Which method is best for solving simultaneous equations?
It depends on the setup. Substitution suits equations already solved for a variable; elimination suits standard-form equations; graphing suits checking or visualising.
Can simultaneous equations have no solution?
Yes. If the lines are parallel — same slope, different intercept — there is no pair that satisfies both, so the system has no solution.
What is the difference between simultaneous equations and a system of equations?
They mean the same thing. "Simultaneous equations" is the common term in UK and Indian schooling; "system of equations" is more common in US textbooks.
✍️ 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 →