Solving Linear Equations

Download as PDF

Welcome to the world of algebra! Solving linear equations is a foundational skill that unlocks more advanced math. Think of it as being a detective, where your mission is to find the value of an unknown variable, and we'll give you all the clues and tools you need.

Solving Linear Equations — an original Algebra911 reference diagram defining solving linear equations with its key formula and a worked example.
Solving Linear Equations: A Complete Guide

What Exactly Is a Linear Equation?

A linear equation is a mathematical statement that two expressions are equal, forming a straight line when graphed. At its heart, an equation is like a puzzle. It contains numbers, at least one variable (a letter like x or y that represents an unknown number), and an equals sign =. The "linear" part is a key descriptor: it means that the variable's highest power is one. You won't see exponents like x2 or y3 in a linear equation.

Let's break down the components:

  • Variable: A symbol (usually a letter) that stands in for a number we don't know yet. The goal of solving the equation is to find its value.
  • Constant: A fixed number that doesn't change.
  • Coefficient: A number that is multiplied by a variable. In the term 7x, the coefficient is 7.
  • Equals Sign: The centerpiece, indicating that the expression on the left side has the exact same value as the expression on the right side.

For example, 2x+3=11 is a linear equation. Here, x is the variable, 2 is its coefficient, and 3 and 11 are constants. It's linear because x is just x (or x1), not x2. In contrast, an equation like x24=5 is not linear because the variable x is squared. Understanding this distinction is the first step to mastering the process.

What Is the Golden Rule of Solving Equations?

Imagine a perfectly balanced scale. If you add a 5-pound weight to one side, it will tip. To keep it balanced, you must add an identical 5-pound weight to the other side. This is the single most important concept in algebra.

The Golden Rule of Solving Equations: Whatever you do to one side of the equation, you must do the exact same thing to the other side. This ensures the equation remains balanced and true.

Our primary goal is to isolate the variable—to get it all by itself on one side of the equals sign. To do this, we use inverse operations. Inverse operations are pairs of mathematical operations that undo each other.

  • Addition and Subtraction are inverse operations.
  • Multiplication and Division are inverse operations.

If a number is added to your variable term, you will subtract it from both sides. If your variable is multiplied by a number, you will divide both sides by that number. By applying these inverse operations systematically to both sides of the equation, you can peel away the numbers surrounding the variable until it's standing alone. Always remember the balance scale!

How Do You Solve Simple One-Step Equations?

One-step equations are the perfect starting point because they require only a single inverse operation to find the solution. Let's look at the four basic types.

1. Undoing Subtraction with Addition

If a number is subtracted from the variable, we add that same number to both sides. To solve x5=12, we need to undo the 5. The inverse is +5.

x5=12
x5+5=12+5
x=17

2. Undoing Addition with Subtraction

If a number is added to the variable, we subtract it from both sides. To solve y+8=20, we need to undo the +8. The inverse is 8.

y+8=20
y+88=208
y=12

3. Undoing Multiplication with Division

If the variable is multiplied by a number (its coefficient), we divide both sides by that number. To solve 6z=42, we need to undo the multiplication by 6.

6z=42
6z6=426
z=7

4. Undoing Division with Multiplication

If the variable is divided by a number, we multiply both sides by that number. To solve a4=9, we need to undo the division by 4.

a4=9
a4×4=9×4
a=36

In each case, we identified the one operation being performed on the variable and then applied its inverse to both sides to isolate it.

How Do You Solve Two-Step Equations?

Two-step equations involve two operations, like 3x+5=17. To solve these, we essentially follow the order of operations (PEMDAS) in reverse. Think of it as unwrapping a gift: you undo the last thing that was done first. For solving, this means we handle addition and subtraction before we handle multiplication and division.

The Strategy for Two-Step Equations:

  1. Identify the constant term on the same side as the variable. Undo it by adding or subtracting it on both sides of the equation.
  2. Identify the coefficient of the variable. Undo it by multiplying or dividing it on both sides of the equation.
  3. Always check your answer by plugging it back into the original equation.
Example 1

Solve the equation 4x5=11.

Step 1: Undo the subtraction.
The variable term is 4x. The constant being subtracted is 5. The inverse operation is addition. We will add 5 to both sides of the equation.

4x5=11
4x5+5=11+5
4x=16

Step 2: Undo the multiplication.
The variable x is being multiplied by 4. The inverse operation is division. We will divide both sides by 4.

4x4=164
x=4

Step 3: Check your answer.
Substitute 4 back into the original equation for x to see if it makes a true statement.

4(4)5=11
165=11
11=11

It's a true statement! Our solution x=4 is correct.

What's the Strategy for Variables on Both Sides?

Sometimes, the variable you're trying to solve for appears on both sides of the equals sign, like in 5k4=2k+11. The goal is still the same: isolate the variable. To do this, you first need to gather all the variable terms on one side of the equation and all the constant terms on the other.

It doesn't matter whether you move the variables to the left or the right, but a helpful tip is to move the variable term with the smaller coefficient. This often helps you avoid working with negative coefficients.

The Strategy for Variables on Both Sides:

  1. Choose a side for the variables. Subtract or add one of the variable terms so that it cancels out on one side and appears on the other.
  2. Now that all variables are on one side, get all the constant terms to the opposite side using addition or subtraction.
  3. You now have a simple one-step equation. Solve for the variable using multiplication or division.
Example 2

Solve the equation 7m+4=3m8.

Step 1: Collect variable terms on one side.
We have 7m on the left and 3m on the right. Since 3m is the smaller term, let's subtract 3m from both sides to keep our variable term positive.

7m+4=3m8
7m3m+4=3m3m8
4m+4=8

Step 2: Collect constant terms on the other side.
Now that the variables are on the left, we need to move the constants to the right. We will subtract 4 from both sides.

4m+44=84
4m=12

Step 3: Isolate the variable.
The variable m is being multiplied by 4. We'll divide both sides by 4.

4m4=124
m=3

Step 4: Check your answer.
Substitute 3 for m in the original equation.

7(3)+4=3(3)8
21+4=98
17=17

The statement is true, so our solution is correct.

How Do You Solve Equations with Parentheses?

When you see parentheses in an equation, it's often a signal to use the distributive property. This property tells us how to multiply a single term by a group of terms inside parentheses. The rule is to multiply the term outside the parentheses by every term inside the parentheses.

a(b+c)=ab+ac

Once you've applied the distributive property, the parentheses will be gone, and you'll be left with an equation that you already know how to solve, which might have variables on both sides or be a simple two-step equation.

The Strategy for Equations with Parentheses:

  1. Scan the equation for any parentheses.
  2. Apply the distributive property to eliminate them. Be very careful with positive and negative signs.
  3. Combine any like terms on each side of the equation.
  4. Proceed to solve the equation using the methods we've already covered.
Example 3

Solve the equation 4(x2)+3=19.

Step 1: Apply the distributive property.
Multiply the 4 by both terms inside the parentheses: x and 2.

4(x)4(2)+3=19
4x8+3=19

Step 2: Combine like terms.
On the left side, we have two constant terms, 8 and +3. Let's combine them.

4x5=19

Step 3: Solve the resulting two-step equation.
Now we have a familiar two-step equation. First, add 5 to both sides.

4x5+5=19+5
4x=24

Next, divide both sides by 4.

4x4=244
x=6

Step 4: Check your answer.
Substitute 6 for x in the original equation.

4(62)+3=19
4(4)+3=19
16+3=19
19=19

Perfect! The solution x=6 is correct.

What Happens When the Variables Disappear?

Occasionally, you'll be solving an equation and something strange happens: the variable terms on both sides cancel each other out completely! When this occurs, you are left with a simple statement with only numbers. This statement will either be true or false, and that tells you something special about the solution.

Case 1: No Solution

If the variables cancel out and you are left with a false statement, it means there is no value of x that could ever make the original equation true. The answer is "no solution."

Consider the equation 3x+5=3x+10.
If we subtract 3x from both sides, we get:
5=10
This is clearly false. Therefore, the equation has no solution.

Case 2: Infinite Solutions

If the variables cancel out and you are left with a true statement, it means that any real number you plug in for x will make the original equation true. The answer is "infinite solutions" or "all real numbers." This type of equation is called an identity.

Consider the equation 2(x+4)=2x+8.
First, distribute the 2:
2x+8=2x+8
If we subtract 2x from both sides, we get:
8=8
This is always true. Therefore, the equation has infinite solutions.

What Are Some Common Mistakes to Avoid?

Solving linear equations requires careful attention to detail. A small error can lead to the wrong answer. Here are some of the most common pitfalls and how to avoid them.

MistakeIncorrect ExampleCorrect MethodExplanation
Sign ErrorsSolving 3(x2)=9 as 3x6=93(x2)=3x+6When distributing a negative number, remember that a negative times a negative is a positive (3×2=+6).
Forgetting Both SidesSolving 2x+5=15 by subtracting 5 to get 2x=152x+55=155, so 2x=10The Golden Rule is absolute. Any operation must be performed on both sides of the equals sign to maintain balance.
Combining Unlike TermsSimplifying 4x+8 to 12x4x+8 cannot be simplified further.You can only add or subtract terms that have the exact same variable part. You can't combine a variable term (like 4x) with a constant term (like 8).
Incorrect DivisionSolving 4x+8=16 by dividing by 4 to get x+2=16Divide the entire other side by 4: 4x+84=164 is not the standard way. Isolate the variable term first: 4x=8, then x=2.When undoing multiplication, ensure you are dividing the entire opposite side. The safest method is to isolate the variable term before dividing.

A Quick Summary: Your Game Plan for Any Linear Equation

Feeling overwhelmed? Don't be. Most linear equations you'll encounter in 8th and 9th grade can be solved by following a reliable, step-by-step process. Think of this as your universal checklist.

  1. Distribute: If you see parentheses, apply the distributive property first to eliminate them.
  2. Combine Like Terms: On each side of the equation, combine any variable terms together and any constant terms together. Keep the sides separate for now.
  3. Move the Variables: Get all variable terms to one side of the equals sign by adding or subtracting.
  4. Move the Constants: Get all constant terms to the other side of the equals sign by adding or subtracting.
  5. Isolate the Variable: Perform the final step of multiplication or division to get the variable by itself.
  6. Check Your Work: Substitute your final answer back into the original equation to ensure it results in a true statement. This step catches almost all mistakes!

By following these steps in order, you can untangle even complex-looking linear equations and confidently arrive at the correct solution.

Frequently Asked Questions

What makes an equation "linear"?

An equation is linear if the highest power of its variable is 1. This means you'll see variables like x or y, but not x2, x3, or variables in a square root. When graphed, linear equations always form a straight line.

Does it matter which side I move the variable to?

No, it does not matter mathematically. Moving the variables to the left will give you the same answer as moving them to the right. However, a good strategy is to move the variable term with the smaller coefficient to avoid working with negative coefficients.

What's the first step if an equation has parentheses?

If an equation contains parentheses, your first step should almost always be to use the distributive property. Multiply the term outside the parentheses by every term inside to eliminate them. This simplifies the equation so you can proceed with solving it.

How can an equation have no solution?

An equation has no solution if, after simplifying, the variable terms cancel out completely and you are left with a false statement, like 5=10. This means there is no number you could possibly substitute for the variable that would make the original equation true.

Why is checking my answer so important?

Checking your answer is the best way to be 100% certain your solution is correct. By substituting your answer back into the original equation, you can instantly see if it creates a true statement. It's a crucial final step that helps catch small arithmetic or sign errors.

What is an "inverse operation"?

An inverse operation is an operation that "undoes" another one. Addition and subtraction are inverses of each other, and multiplication and division are inverses of each other. We use inverse operations to isolate the variable when solving an equation.

Can a linear equation have fractions or decimals?

Yes, absolutely. The coefficients and constants in a linear equation can be integers, fractions, or decimals. While the process is the same, you can sometimes simplify the equation by multiplying every term by a common denominator to eliminate the fractions first.