Solving an Equation - Linear, Quadratic, Radical

#Algebra
TL;DR
Solving an equation means finding the value (or values) of the unknown that make both sides equal. The four-step universal process — simplify, isolate the variable, undo operations in reverse order, check — applies to every equation type.
BT
Bhanzu TeamLast updated on May 19, 20267 min read

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:

  1. Simplify each side — distribute, combine like terms, clear fractions or decimals.

  2. Collect variable terms on one side, constants on the other.

  3. Undo operations in reverse order to isolate the variable.

  4. 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:

  1. Distribute any parentheses.

  2. Combine like terms on each side.

  3. Move variables to one side, constants to the other.

  4. Divide by the coefficient of the variable.

  5. 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:

  1. Isolate the radical.

  2. Square both sides (or cube, for cube roots).

  3. Solve the resulting equation.

  4. 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:

  1. Find the common denominator.

  2. Multiply both sides by it to clear fractions.

  3. Solve the resulting equation.

  4. 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.

  1. Solve $4(x - 1) + 5 = 3x + 7$.

  2. Solve $x^2 - 5x - 14 = 0$ by factoring.

  3. 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/

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the first step in solving any equation?
Simplify each side separately — distribute, combine like terms, clear fractions. Don't move anything between sides until each side is in its simplest form.
How do I know if an equation has no solution?
If the equation simplifies to a false statement (like $0 = 1$), it has no solution. If it simplifies to a true statement (like $0 = 0$), it has infinitely many solutions.
When should I use the quadratic formula vs factoring?
Try factoring first — it's faster when the factors are integers. Use the formula when factoring isn't obvious or when the roots aren't rational.
What's an extraneous root?
A value that satisfies the *transformed* equation but not the *original*. Introduced when you square both sides or multiply by an expression. Always check.
Can equations have complex solutions?
Yes — a quadratic with negative discriminant has complex (non-real) solutions. The fundamental theorem of algebra guarantees every polynomial of degree $n$ has $n$ complex roots.
How do I solve equations with $x$ in the denominator and $x$ in the numerator?
Multiply both sides by the common denominator to clear fractions, then solve the resulting polynomial equation. Check that no solution makes the original denominator zero.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →