chevron_left Elimination (Method of) chevron_right

Elimination (Method of)
Anna Kowalski
share
visibility122
calendar_month2025-10-15

The Elimination Method for Solving Simultaneous Equations

A straightforward technique to find the solution for two or more equations by removing one variable.
The elimination method is a fundamental algebraic technique used to solve systems of linear equations. By strategically adding or subtracting equations, one variable is eliminated, making it possible to solve for the remaining variable. This method is highly effective for problems involving two or more unknowns, such as finding the intersection point of two lines. Mastering variable elimination and understanding how to find a common coefficient are key to efficiently solving these simultaneous equations.

Core Concepts of the Elimination Method

At its heart, a system of equations is a set of two or more equations with the same variables. The solution to the system is the set of values that satisfies all equations simultaneously. The elimination method leverages a core principle of algebra: if you add or subtract equal amounts from both sides of a true equation, it remains true. When we have two equations, we can add or subtract them from each other to create a new, simpler equation.

The Golden Rule of Elimination: You can add or subtract the equations in a system if the coefficients of one variable are opposites (for addition) or the same (for subtraction). The goal is to make one variable cancel out, leaving a single equation with one unknown.

Let's consider a simple analogy. Imagine you know that one apple and one orange cost $3, and one apple and two oranges cost $5. If you subtract the first total from the second, the cost of the apple cancels out, and you're left with the cost of one orange: $2. This is the essence of elimination.

Step-by-Step Guide to Elimination

To reliably solve systems using elimination, follow this structured, multi-step process. We will illustrate with the system:

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

Step 1: Align the Equations. Write both equations one above the other, ensuring like terms (x, y, constants) are vertically aligned.

Step 2: Analyze the Coefficients. Examine the coefficients of the same variable in both equations. In our example, the coefficients of $y$ are $3$ and $-3$. Since they are already opposites, adding the equations will eliminate $y$.

Step 3: Add or Subtract the Equations. Add the left sides together and the right sides together.

EquationDescription
$2x + 3y = 12$First Equation
$+ (4x - 3y = 6)$Second Equation
$6x + 0y = 18$Result after Addition

Step 4: Solve for the Remaining Variable. The new equation is $6x = 18$. Dividing both sides by $6$ gives $x = 3$.

Step 5: Back-Substitute. Substitute the value of $x$ ($3$) back into either of the original equations to solve for $y$. Using the first equation: $2(3) + 3y = 12$, which simplifies to $6 + 3y = 12$. Subtracting $6$ gives $3y = 6$, and dividing by $3$ yields $y = 2$.

Step 6: Check Your Solution. Verify the solution $(3, 2)$ in both original equations. For $2x + 3y = 12$: $2(3) + 3(2) = 6 + 6 = 12$ ✓. For $4x - 3y = 6$: $4(3) - 3(2) = 12 - 6 = 6$ ✓.

When Coefficients Don't Directly Match

Often, the coefficients are not opposites or equal. In such cases, you must manipulate one or both equations before adding or subtracting. This involves finding the Least Common Multiple (LCM)[1] of the coefficients for the variable you wish to eliminate.

Consider the system:

$3x + 2y = 16$
$5x + y = 21$

The coefficients of $y$ are $2$ and $1$. The LCM of $2$ and $1$ is $2$. We can multiply the entire second equation by $2$ to make the coefficient of $y$ equal to $2$.

ActionEquation 1Equation 2
Original$3x + 2y = 16$$5x + y = 21$
Multiply Eq. 2 by 2$3x + 2y = 16$$10x + 2y = 42$
Subtract Eq. 1 from Eq. 2-$7x = 26$

Now, solve for $x$: $x = 26 / 7$. Then, back-substitute to find $y$. Substitute $x = 26/7$ into $5x + y = 21$: $5(26/7) + y = 21$, which is $130/7 + y = 21$. Converting $21$ to $147/7$ gives $y = (147 - 130)/7 = 17/7$. The solution is $(26/7, 17/7)$.

Practical Applications and Real-World Scenarios

The elimination method is not just an abstract mathematical exercise; it has numerous practical applications. Here are two detailed examples.

Example 1: Budgeting and Shopping. Suppose you are buying notebooks and pens. You know that 4 notebooks and 3 pens cost $22, and 2 notebooks and 5 pens cost $16. What is the price of each item?

Let $n$ be the price of a notebook and $p$ be the price of a pen. The system is:

$4n + 3p = 22$
$2n + 5p = 16$

To eliminate $n$, we can multiply the second equation by $2$ so the coefficients of $n$ match: $4n + 10p = 32$. Now, subtract the first equation from this new equation: $(4n + 10p) - (4n + 3p) = 32 - 22$, which simplifies to $7p = 10$. Thus, $p = 10/7 \approx 1.43$. A pen costs about $1.43. Substituting back, $4n + 3(10/7) = 22$ gives $4n + 30/7 = 22$, or $4n = 124/7$, so $n = 31/7 \approx 4.43$. A notebook costs about $4.43.

Example 2: Speed and Distance (Mixture Problems). A boat takes 3 hours to travel 24 km upstream and 2 hours to travel 24 km downstream. What is the speed of the boat in still water and the speed of the current?

Let $b$ be the boat's speed in still water (km/h) and $c$ be the current's speed (km/h). Upstream speed is $b - c$, and downstream speed is $b + c$. Using distance = speed $\times$ time:

$3(b - c) = 24$ → $3b - 3c = 24$
$2(b + c) = 24$ → $2b + 2c = 24$

To eliminate $c$, we can make the coefficients of $c$ the same. Multiply the first equation by 2 and the second by 3:

$6b - 6c = 48$
$6b + 6c = 72$

Now add the two equations: $12b = 120$, so $b = 10$ km/h. Substitute back: $2(10) + 2c = 24$ → $20 + 2c = 24$ → $2c = 4$ → $c = 2$ km/h. The boat's speed is 10 km/h, and the current's speed is 2 km/h.

Common Mistakes and Important Questions

Q: I often forget to multiply the entire equation, including the constant term. What can I do?

A: This is a very common error. Always treat the equation as a balanced scale. If you multiply one side by a number, you must multiply the entire other side by the same number. A good habit is to write the multiplication in parentheses. For example, multiplying $2x + y = 5$ by $3$ should be written as $3(2x + y) = 3(5)$, which becomes $6x + 3y = 15$.

Q: How do I decide which variable to eliminate first?

A: Look for the variable that has coefficients which are easiest to match. If one variable's coefficients are already opposites or the same, eliminate that one. Otherwise, choose the variable whose coefficients have the smallest LCM, as this usually requires simpler arithmetic. The goal is to minimize the amount of multiplication needed.

Q: What does it mean if both variables are eliminated and I get a statement like 0 = 0?

A: A true statement like $0 = 0$ means the two equations are actually the same line (or multiples of each other). This is called a dependent system, and it has infinitely many solutions. Every point on the line is a solution. Conversely, if you get a false statement like $0 = 5$, it means the lines are parallel and never intersect. This is an inconsistent system with no solution.

Conclusion
The elimination method is a powerful and systematic tool for solving systems of linear equations. Its strength lies in its direct approach of removing one variable to simplify the problem. From simple cases with ready-to-eliminate coefficients to more complex scenarios requiring strategic multiplication, mastering this technique builds a strong foundation for algebra. By consistently following the steps of aligning, analyzing, manipulating, solving, and checking, you can confidently tackle a wide array of mathematical and real-world problems involving simultaneous relationships.

Footnote

[1] LCM (Least Common Multiple): The smallest positive integer that is a multiple of two or more integers. For example, the LCM of 4 and 6 is 12.

[2] Dependent System: A system of equations that has an infinite number of solutions because the equations represent the same geometric line.

[3] Inconsistent System: A system of equations that has no solution because the equations represent parallel lines that never intersect.

Did you like this article?

home
grid_view
add
explore
account_circle