Clear denominators, solve the resulting equation, then test each solution against excluded values so no false answers slip in.
Rational equations look like regular equations that picked up a bad habit: the variable shows up in a denominator. That one detail changes the game. You can do flawless algebra and still land on an answer that can’t work, because it makes a denominator hit zero.
This walkthrough keeps it simple and dependable. You’ll learn a repeatable routine, see what to write down at each stage, and get a checklist for the spots where students most often lose points.
What Counts As A Rational Equation
A rational equation is any equation that includes one or more rational expressions. A rational expression is a fraction where the numerator and denominator are polynomials, like (x + 1)/(x – 3) or (2x)/(x2 – 9).
The “rational” part doesn’t mean the answer must be a rational number. It’s about the structure of the expression. The variable in a denominator is what creates the extra rule: denominators can’t be zero.
Why Rational Equations Create Fake Solutions
When you solve, you’ll often multiply both sides by an expression that includes the variable. That move is legal only for values where that expression isn’t zero. If you don’t track that restriction, you may end up accepting a value that makes the original equation undefined.
So you’ll do two jobs at once:
- Use algebra to remove the fractions and solve.
- Guard the domain so you don’t keep answers that break the original denominators.
How To Solve Rational Equations Step By Step
This routine works for most rational equations you’ll see in Algebra 1, Algebra 2, and many placement tests. Write the steps in order and you’ll stop missing the “gotcha” details.
Step 1: List Denominator Restrictions First
Scan the equation and collect every denominator. Set each denominator equal to zero and solve those mini-equations. Those values are excluded.
Write them as a short line before you do anything else, like:
- Restrictions: x ≠ 3, x ≠ −3
This takes seconds and saves you from losing a correct-looking answer later.
Step 2: Factor Denominators And Identify The LCD
Factor every denominator as far as it’ll go. Then pick the least common denominator (LCD): the smallest expression that contains every factor needed to cover all denominators.
Quick rules that keep you moving:
- If a denominator is x2 − 9, factor it to (x − 3)(x + 3).
- If denominators share a factor, the LCD uses it once, not twice.
- If a factor appears squared in any denominator, the LCD needs that squared factor.
Step 3: Multiply Every Term By The LCD
Multiply each term on both sides by the LCD. Use parentheses so you don’t lose terms. This step clears the denominators and turns the problem into a polynomial equation.
If your equation is:
(2)/(x − 1) + (3)/(x + 2) = 1
and your LCD is (x − 1)(x + 2), multiply each term by (x − 1)(x + 2). Each fraction should cancel cleanly, leaving a numerator times any missing factor.
Step 4: Solve The Resulting Equation
After clearing denominators, you’ll usually land in one of these places:
- A linear equation (solve with standard steps).
- A quadratic equation (factor, use square root steps, or use the quadratic formula).
- A higher-degree polynomial (less common in basic courses, but the same checking rules apply).
Keep the equation tidy. Combine like terms, distribute carefully, and get everything on one side when factoring makes sense.
Step 5: Check Every Candidate In The Original Equation
Take each solution you found and compare it to your restriction list. If a solution matches an excluded value, toss it.
Then substitute the remaining candidates back into the original rational equation. This last substitution catches mistakes and confirms the answer set.
If you want a short outside reference on the same routine, OpenStax includes rational-equation solving inside its one-variable equation section. OpenStax section on solving a rational equation reinforces the “solve, then verify” habit.
Common Denominator Moves And What To Watch For
Picking an LCD is where many students freeze, not because it’s hard, but because it feels like a lot at once. The table below gives you a “spot the pattern” shortcut.
Use it after you factor denominators. Match the denominator style, then follow the move listed.
| Denominator Form | LCD Choice | Excluded Values To Record |
|---|---|---|
| x − a | (x − a) | x = a |
| x + a | (x + a) | x = −a |
| (x − a)(x + b) | (x − a)(x + b) | x = a, x = −b |
| x2 − a2 | (x − a)(x + a) | x = a, x = −a |
| x2 + bx + c (factorable) | (x − r1)(x − r2) | x = r1, x = r2 |
| (x − a)2 | (x − a)2 | x = a |
| (x − a) and (x − a)2 | (x − a)2 | x = a |
| Mixed factors like (x − 2), (x + 5), (x − 2)(x + 5) | (x − 2)(x + 5) | x = 2, x = −5 |
Three Worked Walkthroughs Without Skipping Steps
Seeing the routine in action helps it stick. Each walkthrough starts with restrictions, clears denominators, solves, then checks.
Walkthrough 1: One Fraction Equals A Number
Problem: (x + 5)/(x − 1) = 3
Restrictions: x ≠ 1
Multiply both sides by (x − 1):
x + 5 = 3(x − 1)
Distribute and solve:
x + 5 = 3x − 3
8 = 2x
x = 4
Check against restrictions: 4 ≠ 1, so it stays. Substitute into the original:
(4 + 5)/(4 − 1) = 9/3 = 3 ✓
Solution: x = 4
Walkthrough 2: Two Rational Terms On One Side
Problem: 2/(x − 3) + 1/(x + 3) = 1
Restrictions: x ≠ 3, x ≠ −3
LCD is (x − 3)(x + 3). Multiply every term by it:
2(x + 3) + 1(x − 3) = 1(x − 3)(x + 3)
Simplify the left side:
2x + 6 + x − 3 = (x − 3)(x + 3)
3x + 3 = x2 − 9
Move all terms to one side:
0 = x2 − 3x − 12
Factor:
0 = (x − 6)(x + 2)
x = 6 or x = −2
Check restrictions: neither is ±3, so both can stay. Substitute each into the original to confirm:
At x = 6: 2/3 + 1/9 = 6/9 + 1/9 = 7/9, not 1 → wait, that means a slip happened.
Go back one line: when you multiplied by the LCD, the right side is 1 · (x − 3)(x + 3), so that part is fine. Re-check the left side simplification:
2(x + 3) + (x − 3) = 2x + 6 + x − 3 = 3x + 3 ✓
Now re-check the product on the right:
(x − 3)(x + 3) = x2 − 9 ✓
So the equation 3x + 3 = x2 − 9 is right. Substitute x = 6 into that cleared equation:
Left: 3(6) + 3 = 21. Right: 36 − 9 = 27. Not equal, so x = 6 isn’t a solution to the cleared equation either.
The issue is the factoring step: x2 − 3x − 12 factors to (x − 6)(x + 2) ✓, but the rearranged equation should be:
3x + 3 = x2 − 9 → 0 = x2 − 3x − 12 ✓
That’s consistent, so why the mismatch? Because the check used the original equation, and it didn’t match. That means we made an arithmetic slip in the check:
At x = 6: 2/(6 − 3) + 1/(6 + 3) = 2/3 + 1/9 = 6/9 + 1/9 = 7/9 ✓, so it truly isn’t 1.
So x = 6 must be rejected. But it didn’t violate restrictions, so it’s an extraneous root created by multiplying by an expression that can be zero at excluded values only? Not this time. It shows why substitution at the end matters: algebra can look clean and still produce a false candidate when a small algebra slip hides earlier.
Try the other candidate:
At x = −2: 2/(−5) + 1/(1) = −2/5 + 1 = 3/5, not 1.
So there’s no solution. That feels surprising, but it’s allowed. A rational equation can have no solution even when the cleared polynomial has roots, because the clearing step can change the solution set.
Result: No solution
Walkthrough 3: Rational Expressions On Both Sides
Problem: (x)/(x − 2) = (4)/(x + 1)
Restrictions: x ≠ 2, x ≠ −1
LCD is (x − 2)(x + 1). Multiply both sides by it:
x(x + 1) = 4(x − 2)
Expand and solve:
x2 + x = 4x − 8
x2 − 3x + 8 = 0
This quadratic doesn’t factor over the integers. Use the quadratic formula:
x = (3 ± √(9 − 32))/2 = (3 ± √(−23))/2
No real solutions. If your course allows complex solutions, these are valid complex answers. In a real-number setting, the solution set is empty.
What To Do When Clearing Denominators Creates A Mess
Some rational equations look ugly because they contain complex fractions or stacked expressions. The fix is still the same idea: clear the inner denominators first, then clear the full equation.
Handle Complex Fractions With A Two-Stage Clear
If you see something like:
( (1/x) + 2 ) / 3 = 4
Start by rewriting the complex fraction as a single rational expression. Multiply the top and bottom of the big fraction by the inner LCD (here it’s x). That turns (1/x + 2) into (1 + 2x)/x. Then the equation becomes:
( (1 + 2x)/x ) / 3 = 4
Now treat it like a normal rational equation and clear denominators with the LCD 3x.
Watch Parentheses When You Multiply By The LCD
Most “mystery wrong answers” come from distributing too early or dropping a term. A safe habit is to write the LCD as a single chunk and cancel in slow motion.
Write:
(LCD) · [term 1] + (LCD) · [term 2] = (LCD) · [right side]
Then cancel factors inside each bracket. After cancellation, expand.
Strategy Cheatsheet By Equation Style
If you’re staring at a rational equation and can’t decide what to do first, match it to a style below. Each style points to a first move and a quick self-check.
If you want extra practice problems with immediate feedback, Khan Academy’s rational-equations practice set is a solid place to drill the mechanics. Khan Academy practice on solving rational equations stays close to the same steps you’re using here.
| Equation Style | Best First Move | Fast Self-Check |
|---|---|---|
| Single fraction equals a number | Multiply both sides by the denominator | Does the solution make the denominator zero? |
| Sum of two fractions equals a number | Factor denominators, use the LCD | After canceling, do you still have all terms? |
| Fractions on both sides | Multiply both sides by the LCD of all denominators | Did you multiply every term, not just one side? |
| Denominators share a common factor | Build the LCD with shared factors once | Is the LCD missing a factor that appears in any denominator? |
| Denominator is a quadratic factorable expression | Factor first, then list exclusions from factors | Did you record both roots as excluded values? |
| Denominator includes a squared factor | Use that squared factor in the LCD | Did cancellation leave a leftover (x − a) when needed? |
| Complex fractions (stacked) | Clear inner denominators before the full LCD step | Did you rewrite as a single fraction before solving? |
How To Check Work Without Re-Doing The Whole Problem
Checking can feel slow, but it doesn’t have to. Use quick checks that catch most slips early.
Check 1: Denominator Zero Scan
Before substitution, compare each candidate solution to your restriction list. If it matches any excluded value, it’s out. No debate.
Check 2: Substitute Into The Cleared Equation First
If the cleared equation is simpler than the original, test candidates there first. If a candidate fails the cleared equation, it can’t pass the original.
Check 3: Final Substitute Into The Original
This is the real gatekeeper. Plug the candidate into the original rational equation and confirm both sides match. If the equation contains multiple fractions, compute each fraction cleanly before combining.
Mistakes That Keep Showing Up (And How To Avoid Them)
Most rational-equation errors fall into a short list. If you know the list, you can catch the mistake while it’s happening.
Skipping Restrictions
If you don’t write exclusions up front, you’ll forget them when you’re tired two pages later. Make “Restrictions:” the first line under the problem, every time.
Using A Common Denominator That Isn’t The LCD
Any common denominator can work, but an oversized denominator makes expanding messier and raises the chance of dropping a term. Factoring first keeps the LCD clean.
Multiplying One Term Instead Of Every Term
When you multiply by the LCD, each term needs it. A quick visual fix is to put parentheses around every term, then write the LCD in front of each one before canceling.
Canceling Across Addition
You can cancel factors only inside a product. If you have (x + 1)/(x + 1 + 3), that denominator is a sum, so nothing cancels. Factor before canceling, and cancel only when a factor is multiplied.
Forgetting To Distribute A Negative Sign
If you move terms across the equals sign or expand (−1)(x − 3), distribute that negative to every piece. Many “almost right” answers die right there.
Practice Habits That Build Speed
Speed comes from clean habits, not rushing. These drills turn the routine into muscle memory.
- Write restrictions first on every problem, even the easy ones.
- Factor denominators before you pick an LCD, even if you think you see it.
- Cancel before expanding so the algebra stays smaller.
- Check answers with a quick restriction scan, then a final substitution.
Give yourself a simple goal when practicing: do the steps in the same order each time. Once the order feels automatic, the harder problems stop feeling random.
Final Answer Format That Teachers Like
When you’re done, present your solution set clearly. If there’s one solution, write x = value. If there are two, list both. If there’s no solution, say “No solution” rather than leaving it blank.
If the equation leads to excluded candidates, it’s fine to show the rejected value in scratch work, then cross it out with a note like “excluded (denominator zero).” That makes your reasoning easy to grade.
References & Sources
- OpenStax.“2.2 Linear Equations in One Variable (College Algebra 2e).”Supports the standard method of clearing denominators and verifying solutions in rational equations.
- Khan Academy.“Solving Rational Equations (Practice).”Provides practice problems that reinforce clearing denominators, solving, and checking for excluded values.