What Does "Solving an Equation" Mean?
To solve an equation is to find the value(s) of the unknown variable that make the equation a true statement. The set of all such values is the solution set.
For example, the equation $2x + 3 = 11$ is true when $x = 4$ (since $2 \cdot 4 + 3 = 11$) and false for any other value. So the solution set is ${4}$.
Some equations have:
Exactly one solution — most linear equations.
Multiple solutions — quadratics have up to two, cubics up to three.
No solution — like $\sqrt{x} = -2$ over the reals.
Infinitely many solutions — identities like $2(x+3) = 2x + 6$.
The Universal Process
Regardless of equation type:
Simplify each side — distribute, combine like terms, clear fractions or decimals.
Collect variable terms on one side, constants on the other.
Undo operations in reverse order to isolate the variable.
Check by substituting into the original equation.
The four-step structure is the same; the specifics depend on the equation type.
How to Solve a Linear Equation
A linear equation has the variable to the first power: $ax + b = c$.
Step-by-step:
Distribute any parentheses.
Combine like terms on each side.
Move variables to one side, constants to the other.
Divide by the coefficient of the variable.
Check.
Worked example. Solve $5(x + 2) - 3 = 17$.
Step 1: Distribute → $5x + 10 - 3 = 17$. Step 2: Combine → $5x + 7 = 17$. Step 3: Subtract 7 → $5x = 10$. Step 4: Divide by 5 → $x = 2$. Step 5: Check: $5(2+2) - 3 = 17$ ✓.
How to Solve a Quadratic Equation
A quadratic equation has the variable to the second power as its highest term: $ax^2 + bx + c = 0$.
Three primary methods:
Method 1: Factoring
Rewrite the quadratic as a product of two linear factors. Use the zero-product property: if $AB = 0$, then $A = 0$ or $B = 0$.
Worked example. Solve $x^2 - 7x + 12 = 0$.
Factor: $(x - 3)(x - 4) = 0$. So $x = 3$ or $x = 4$.
Method 2: Quadratic Formula
For $ax^2 + bx + c = 0$:
$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$
Works for any quadratic — use when factoring isn't obvious.
Method 3: Completing the Square
Rewrite as a perfect square plus a constant. Mostly used for deriving the formula or in calculus.
How to Solve a Radical Equation
A radical equation has the variable inside a root: $\sqrt{x + 5} = 3$.
Process:
Isolate the radical.
Square both sides (or cube, for cube roots).
Solve the resulting equation.
Check for extraneous roots — squaring can introduce values that don't satisfy the original.
Worked example. Solve $\sqrt{2x + 7} = 5$.
Step 1: Already isolated. Square both sides → $2x + 7 = 25$. Step 2: Solve → $x = 9$. Step 3: Check: $\sqrt{2 \cdot 9 + 7} = \sqrt{25} = 5$ ✓.
Extraneous root example. Solve $\sqrt{x} = -3$.
Squaring gives $x = 9$. But $\sqrt{9} = 3$, not $-3$. So $x = 9$ is an extraneous root — and the original equation has no solution.
How to Solve a Rational Equation
A rational equation has the variable in a denominator: $\dfrac{3}{x} = \dfrac{6}{x + 2}$.
Process:
Find the common denominator.
Multiply both sides by it to clear fractions.
Solve the resulting equation.
Check that no solution makes any original denominator zero.
Worked example. Solve $\dfrac{3}{x} = \dfrac{6}{x + 2}$.
Cross-multiply: $3(x + 2) = 6x$ → $3x + 6 = 6x$ → $6 = 3x$ → $x = 2$.
Check: at $x = 2$, neither $x$ nor $x + 2$ is zero ✓; $3/2 = 6/4 = 3/2$ ✓.
How to Solve an Exponential Equation
An exponential equation has the variable in an exponent: $2^x = 32$.
Process. Take the logarithm of both sides, then use the power rule.
Worked example. Solve $2^x = 32$.
$\log_2(2^x) = \log_2(32) \implies x = 5$.
Or recognise $32 = 2^5$ directly.
Worked example with messier numbers. Solve $5^x = 100$.
$x \log(5) = \log(100) \implies x = \log(100) / \log(5) \approx 2/0.699 \approx 2.86$.
Three Worked Examples — Quick, Standard, Stretch
Quick — Linear
Solve $7x - 4 = 3x + 16$.
Subtract $3x$: $4x - 4 = 16$. Add $4$: $4x = 20$. Divide: $x = 5$.
Standard — Quadratic
Solve $2x^2 - 7x - 4 = 0$ using the formula.
$a = 2, b = -7, c = -4$:
$$x = \frac{7 \pm \sqrt{49 + 32}}{4} = \frac{7 \pm 9}{4} = 4 \text{ or } -\tfrac{1}{2}$$
Stretch — Radical with Extraneous Root
Solve $\sqrt{x + 6} = x$.
Square both sides: $x + 6 = x^2$, so $x^2 - x - 6 = 0$, factoring as $(x - 3)(x + 2) = 0$. Candidates: $x = 3$ or $x = -2$.
Check both in the original:
$x = 3$: $\sqrt{3 + 6} = \sqrt{9} = 3$ ✓
$x = -2$: $\sqrt{-2 + 6} = \sqrt{4} = 2 \neq -2$. Extraneous.
Only solution: $x = 3$.
Why Does Solving Equations Matter? (The Real-World GROUND)
"To solve an equation is to find when one thing equals another." — applied mathematics.
Solving equations is the operational core of nearly every quantitative field:
Physics. Newton's laws of motion become equations to solve for velocity, position, or time.
Engineering. Stress, strain, current, voltage — every design constraint reduces to an equation to solve for an unknown.
Economics. Equilibrium prices, break-even quantities — all are equation-solving problems.
Computer science. Numerical methods (Newton-Raphson, gradient descent) automate equation-solving at scale.
The systematic method comes from Al-Khwarizmi's Al-Jabr (820 CE) — the book whose title gave us algebra. His central technique — al-jabr meaning "restoration" — is moving terms across an equals sign, the foundation of every solve method.
Learn more: How to Solve for x in Algebraic Equations
A Worked Example — Wrong Path First
Solve $\dfrac{x}{x - 2} = \dfrac{4}{x - 2}$.
The intuitive (wrong) approach. A student cancels $(x - 2)$ from both sides immediately:
$$\frac{x}{x - 2} = \frac{4}{x - 2} \implies x = 4$$
Why it fails. The cancellation is valid if $(x - 2) \neq 0$. But the cancellation step also discarded the case where the equation might have no solution. More importantly, the student needs to check that $x = 4$ doesn't make the denominator zero.
The correct method. Note the domain restriction: $x \neq 2$ (denominator can't be zero). Then cancel: $x = 4$. Check $x = 4 \neq 2$ ✓.
Now suppose the problem had been $\dfrac{x}{x-2} = \dfrac{2}{x-2}$ instead. Cancelling would give $x = 2$ — but $x = 2$ is excluded by the domain restriction. So the equation would have no solution.
What Are the Most Common Mistakes With Solving Equations?
Mistake 1: Skipping the check
Where it slips in: Especially in radical and rational equations, where transformations can introduce extraneous roots.
The fix: Always substitute back into the original equation.
Mistake 2: Distributing a negative sign incorrectly
Where it slips in: $5 - (x - 3) = 5 - x + 3 = 8 - x$, not $5 - x - 3 = 2 - x$.
The fix: The minus sign distributes to every term inside the parentheses.
Mistake 3: Dividing by an expression containing the variable
Where it slips in: $(x - 2)(x - 3) = (x - 2)(x + 5)$. Dividing by $(x - 2)$ gives $x - 3 = x + 5$ → $-3 = 5$, contradiction — but the original does have $x = 2$ as a solution.
The fix: Don't divide by an expression containing the variable. Move everything to one side and factor.
Key Takeaways
Solving an equation means finding the value(s) of the unknown that make both sides equal.
Four universal steps: simplify each side, collect like terms, isolate the variable, check.
Method depends on equation type: linear → legal moves; quadratic → factor/formula; radical → isolate and square; rational → clear denominators; exponential → take logs.
Always check by substituting into the original equation, especially after squaring or multiplying by expressions containing the variable.
Some equations have no solution (inconsistent), some have infinitely many (identities), some have multiple (polynomial equations).
A Practical Next Step
Try these three before moving on to systems of equations.
Solve $4(x - 1) + 5 = 3x + 7$.
Solve $x^2 - 5x - 14 = 0$ by factoring.
Solve $\sqrt{3x - 2} = x$ and check for extraneous roots.
If problem 3 felt tricky, square both sides: $3x - 2 = x^2$, so $x^2 - 3x + 2 = (x-1)(x-2) = 0$. Candidates $x = 1$ or $x = 2$; both check ✓. Want a Bhanzu trainer to walk through more equation-solving? Book a free demo class — online globally/
Was this article helpful?
Your feedback helps us write better content
