Solving Algebraic Equations- Fundamental Techniques
What Algebraic Equations Actually Are
An algebraic equation is a statement showing two expressions are equal. It contains variables, numbers, and mathematical operations. The goal is finding what value(s) make the equation true.
That's it. No philosophy needed.
The Core Techniques You Need
1. Balancing: The Only Rule That Matters
Whatever you do to one side, you must do to the other. That's the entire principle behind solving equations.
Break this rule and you get nonsense. Simple as that.
2. Isolating the Variable
Your job is to get the variable alone on one side. Use inverse operations to undo whatever was done to the variable.
- Addition undoes subtraction
- Multiplication undoes division
- Squaring undoes square roots (and vice versa)
3. Simplify Both Sides First
Before you start isolating, combine like terms on each side. Distribute any coefficients. Get each side as simple as possible.
Skipping this step is the #1 reason people make algebra harder than it needs to be.
Solving Linear Equations Step by Step
Linear equations create straight lines when graphed. The variable has a power of 1. No squares, no cubes, no complications.
Example:
3x + 7 = 22
Step 1: Subtract 7 from both sides
3x + 7 - 7 = 22 - 7
3x = 15
Step 2: Divide both sides by 3
3x ÷ 3 = 15 ÷ 3
x = 5
Step 3: Check your work
3(5) + 7 = 22 ✓
Solving Quadratic Equations
Quadratics have the variable squared. You now have two possible solutions (or none). Here's how to handle them:
Method 1: Factoring
Rewrite the equation as a product of two binomials. Find two numbers that multiply to give the constant term and add to give the coefficient of x.
Example: x² + 5x + 6 = 0
Find two numbers that multiply to 6 and add to 5. That's 2 and 3.
(x + 2)(x + 3) = 0
x + 2 = 0 or x + 3 = 0
x = -2 or x = -3
Method 2: Quadratic Formula
When factoring fails, use this. It works every time.
For ax² + bx + c = 0:
x = (-b ± √(b² - 4ac)) / 2a
The part under the square root (b² - 4ac) is the discriminant. It tells you what you're dealing with:
- Positive = two real solutions
- Zero = one solution (both roots are the same)
- Negative = no real solutions
Solving Equations with Multiple Variables
Sometimes you solve for one variable in terms of others. Same process, different target.
Example: Solve 2x + 3y = 12 for y
2x + 3y - 2x = 12 - 2x
3y = 12 - 2x
y = (12 - 2x) / 3
y = 4 - (2/3)x
Common Mistakes That Ruin Everything
- Sign errors: Double-check every negative sign when moving terms across the equals sign
- Distribution errors: Multiply every term inside parentheses, not just the first one
- Fraction arithmetic: Find common denominators before adding fractions
- Forgetting to check: Always plug your answer back in
Quick Reference: Equation Types
| Type | Form | Solutions | Best Method |
|---|---|---|---|
| Linear | ax + b = c | 1 | Balance and isolate |
| Quadratic | ax² + bx + c = 0 | 0, 1, or 2 | Factor or quadratic formula |
| Cubic | ax³ + bx² + cx + d = 0 | 1, 2, or 3 | Factor by grouping or use calculator |
| Absolute Value | |expression| = value | Varies | Set up two cases |
Getting Started: Your Action Plan
When you see an equation you need to solve:
- Identify the type. Linear? Quadratic? Something else?
- Simplify both sides. Combine like terms. Distribute.
- Move all variable terms to one side. Use inverse operations.
- Isolate the variable. Get it alone.
- Check your answer. Plug it back into the original equation.
Practice with simple equations first. Master linear equations before touching quadratics. Build from there.