How to Do Linear Equations- Beginner Guide
What Is a Linear Equation?
A linear equation is an algebraic equation where each term is either a constant or the product of a constant and a single variable. The highest power of the variable is always one. That's it. No squares, no cubes, no complicated functions.
They look like straight lines when you graph them. Hence the name "linear."
The most basic form is y = mx + b, where:
- m = slope (how steep the line is)
- b = y-intercept (where the line crosses the y-axis)
The Standard Form
Before you can solve anything, you need to recognize the different forms. Linear equations show up in a few disguises.
Slope-Intercept Form
y = mx + b
This is the most common form you'll encounter. Example: y = 3x + 7
Point-Slope Form
y - y₁ = m(x - x₁)
Used when you know one point on the line and the slope. Example: y - 2 = 4(x - 3)
Standard Form
Ax + By = C
A, B, and C are integers. Example: 2x + 5y = 10
How to Solve Linear Equations
Here's the brutal truth: solving linear equations is just algebraic manipulation. You isolate the variable. That's the whole game.
Step 1: Simplify Both Sides
Distribute any numbers outside parentheses. Combine like terms on each side.
Example: 2(x + 3) = 10 becomes 2x + 6 = 10
Step 2: Move Variables to One Side
Use addition or subtraction to get all variables on the same side of the equation.
Example: 3x + 2 = 8 + 2x → subtract 2x from both sides → x + 2 = 8
Step 3: Isolate the Variable
Get the variable alone by doing the opposite operation.
- If it's added, subtract
- If it's subtracted, add
- If it's multiplied, divide
- If it's divided, multiply
Example: x + 2 = 8 → subtract 2 from both sides → x = 6
Step 4: Check Your Answer
Plug your solution back into the original equation. If both sides match, you're correct. If not, you messed up somewhere.
Worked Example
Solve: 4(x - 2) + 3 = 2x + 11
Step 1: Distribute the 4
4x - 8 + 3 = 2x + 11
Step 2: Combine like terms
4x - 5 = 2x + 11
Step 3: Move variables to one side
4x - 2x = 11 + 5
Step 4: Simplify
2x = 16
Step 5: Divide by 2
x = 8
Check: 4(8-2)+3 = 4(6)+3 = 24+3 = 27. 2(8)+11 = 16+11 = 27. ✓
Common Mistakes to Avoid
- Forgetting to distribute: 2(x+4) ≠ 2x+4. It's 2x+8.
- Doing operations to only one side: Whatever you do to one side, you MUST do to the other.
- Sign errors: Negative signs trip people up constantly. Write out each step.
- Dividing when you should subtract: If the equation is x + 5 = 12, you subtract 5. You don't divide by 5.
Solving Systems of Linear Equations
Sometimes you'll have two equations with two unknowns. You need to find where they intersect.
Method 1: Substitution
Solve one equation for one variable, then plug it into the other.
System:
y = 2x + 1
x + y = 7
Substitute: x + (2x+1) = 7
3x + 1 = 7
3x = 6
x = 2
Then: y = 2(2) + 1 = 5
Solution: (2, 5)
Method 2: Elimination
Add or subtract equations to cancel out one variable.
System:
2x + y = 10
3x - y = 5
Add them: 5x = 15
x = 3
Plug back: 2(3) + y = 10
6 + y = 10
y = 4
Solution: (3, 4)
Quick Reference: Form Comparison
| Form | Equation | Best Used For | Key Info Given |
|---|---|---|---|
| Slope-Intercept | y = mx + b | Graphing quickly | Slope and y-intercept directly |
| Point-Slope | y - y₁ = m(x - x₁) | Writing equation from a point | One point and slope |
| Standard | Ax + By = C | Finding intercepts | X and y intercepts |
Practice: Getting Started
Solve these on your own before checking answers:
- 3x + 7 = 22
- 5(x - 2) = 3x + 8
- 2x + 3y = 12 (solve for y)
Answers:
- x = 5
- x = 9
- y = (12 - 2x) / 3 or y = 4 - (2/3)x
Bottom Line
Linear equations are not complicated. The process is always the same: simplify, isolate, solve, check. Memorize the three forms. Practice the basics until they're automatic. Systems of equations are just two single-variable problems forced together—handle them one at a time with substitution or elimination.
That's all you need. Go practice.