How to solve a system of equations with three variables is a fundamental skill in algebra that appears in many fields such as physics, engineering, and economics. Day to day, mastering this technique allows you to find the unique point where three planes intersect in three‑dimensional space, or to determine whether such a point does not exist or is infinite. Below you will find a clear, step‑by‑step guide covering the most reliable methods—elimination, substitution, and matrix (Gaussian) approaches—along with practical examples, common pitfalls, and a FAQ section to reinforce your understanding.
And yeah — that's actually more nuanced than it sounds.
Understanding Systems of Three Equations
A system of linear equations with three variables typically looks like this:
[ \begin{cases} a_1x + b_1y + c_1z = d_1 \ a_2x + b_2y + c_2z = d_2 \ a_3x + b_3y + c_3z = d_3 \end{cases} ]
Here (x), (y), and (z) are the unknowns, and the coefficients (a_i, b_i, c_i) and constants (d_i) are real numbers. The goal is to find values for (x), (y), and (z) that satisfy all three equations simultaneously And that's really what it comes down to..
There are three possible outcomes:
- Unique solution – a single ordered triple ((x, y, z)) where the three planes intersect at one point.
- No solution – the planes are parallel or intersect in such a way that no common point exists (the system is inconsistent).
- Infinitely many solutions – the planes intersect along a line or coincide, giving a whole set of solutions (the system is dependent).
Recognizing which case you are dealing with early on saves time and helps you choose the most efficient method.
Method 1: Elimination (Addition/Subtraction)
The elimination method works by adding or subtracting equations to cancel out one variable, reducing the three‑equation system to two equations with two variables, and then to a single equation with one variable.
Steps
- Choose a variable to eliminate – look for coefficients that are opposites or can be made opposites by multiplying an equation by a constant.
- Create two new equations that no longer contain the chosen variable.
- Repeat the elimination on the resulting two‑equation system to eliminate a second variable, leaving a single‑variable equation.
- Back‑substitute the found value into previous equations to obtain the remaining variables.
- Check the solution in all original equations.
Example
Solve the system:
[ \begin{cases} 2x + 3y - z = 5 \quad (1)\ 4x - y + 2z = 6 \quad (2)\
- x + 2y + 3z = 4 \quad (3) \end{cases} ]
Step 1 – Eliminate (x).
Multiply (1) by 2 to match the (4x) in (2):
[ 4x + 6y - 2z = 10 \quad (1') ]
Subtract (2) from (1'):
[ (4x+6y-2z) - (4x - y + 2z) = 10 - 6 \ \Rightarrow 7y - 4z = 4 \quad (4) ]
Now eliminate (x) using (1) and (3). Multiply (3) by 2:
[ -2x + 4y + 6z = 8 \quad (3') ]
Add (1) and (3'):
[ (2x+3y - z) + (-2x+4y+6z) = 5+8 \ \Rightarrow 7y + 5z = 13 \quad (5) ]
Step 2 – Eliminate (y) from (4) and (5).
Subtract (4) from (5):
[ (7y+5z) - (7y-4z) = 13-4 \ \Rightarrow 9z = 9 ;\Rightarrow; z = 1 ]
Step 3 – Back‑substitute.
Insert (z=1) into (4):
[ 7y - 4(1) = 4 ;\Rightarrow; 7y = 8 ;\Rightarrow; y = \frac{8}{7} ]
Insert (y) and (z) into (1):
[ 2x + 3\left(\frac{8}{7}\right) - 1 = 5 \ 2x + \frac{24}{7} - 1 = 5 \ 2x = 5 + 1 - \frac{24}{7} = 6 - \frac{24}{7} = \frac{42}{7} - \frac{24}{7} = \frac{18}{7} \ x = \frac{9}{7} ]
Solution: (\displaystyle \left(\frac{9}{7},; \frac{8}{7},; 1\right)) Easy to understand, harder to ignore..
Check quickly in (2) and (3) – both hold true, confirming the answer.
Method 2: Substitution
Substitution is useful when one equation already isolates a variable or can be easily rearranged to do so It's one of those things that adds up..
Steps
- Solve one equation for one variable (e.g., (x = \text{expression in } y, z)).
- Substitute that expression into the other two equations, yielding a system of two equations with two variables.
- Repeat the substitution to reduce to a single‑variable equation.
- Back‑substitute to find the remaining variables.
- Verify the solution.
Example (same system)
From (3) solve for (x):
[
- x + 2y + 3z = 4 ;\Rightarrow; x = 2y + 3z - 4 \quad (6) ]
Substitute (6) into (1) and (2) Surprisingly effective..
*Into (1):