When you first learn |x| = 5 \Rightarrow x = \pm 5, the trick feels like a shortcut. You write two equations, solve, done. But the moment the equation gets even slightly nastier — like |x| = x + 1 — that shortcut quietly fails. One of the two answers will be a fake, and you will not see it unless you set up the problem the formal way.
This page shows you the formal way: a split-screen case analysis where you state the assumption about the sign of the inside, then drop the bars accordingly, then solve, then check that your answer is consistent with the assumption you started with. CBSE Class 11 expects this discipline once your equations stop being friendly.
In short
For any equation |f(x)| = k, set up two parallel cases — one screen each:
- CASE 1 (left screen). Assume f(x) \geq 0. Then |f(x)| = f(x), and the equation becomes f(x) = k. Solve. Check that the answer satisfies f(x) \geq 0.
- CASE 2 (right screen). Assume f(x) < 0. Then |f(x)| = -f(x), and the equation becomes -f(x) = k, i.e. f(x) = -k. Solve. Check that the answer satisfies f(x) < 0.
The final solution set is the union of answers that pass their own case-check. Answers that fail their case-check are extraneous and must be discarded.
The split-screen idea
The piecewise definition of absolute value gives you two worlds:
You don't know in advance which world your x lives in, so you investigate both. Each world is a conditional universe: "given that the inside is non-negative, here is what the equation simplifies to." The answer you compute inside that world is only legitimate if it actually belongs to that world.
That last sentence is the whole reason this method exists. Without the case-check, you can't tell a real answer from an artefact.
Three worked examples
The three examples below are deliberately ordered: a friendly one where both cases work, a tricky one where one case dies, and a neutral one to cement the pattern.
Example 1 — both cases give valid answers: $|x - 3| = 5$
The expression inside is f(x) = x - 3. Set up the split.
CASE 1. Assume x - 3 \geq 0, i.e. x \geq 3.
The bars drop unchanged: x - 3 = 5.
Why: add 3 to both sides — standard linear move.
Check the case condition: is 8 \geq 3? Yes. ✓ So x = 8 is a valid CASE 1 solution.
CASE 2. Assume x - 3 < 0, i.e. x < 3.
The bars drop with a sign flip: -(x - 3) = 5, which is 3 - x = 5.
Why: subtract 3 from both sides to get -x = 2, then multiply by -1.
Check the case condition: is -2 < 3? Yes. ✓ So x = -2 is a valid CASE 2 solution.
Result. Both candidates pass their own check, so the solution set is
This is the friendly type — what most textbook drills look like. Both screens light up green.
Example 2 — one case dies: $|x| = x + 1$
This is the killer example. Notice that the right-hand side x + 1 depends on x, so the equation is no longer of the simple form |f(x)| = k for a constant k. The case-check earns its keep here.
CASE 1. Assume x \geq 0.
The bars drop unchanged: x = x + 1.
Why: subtract x from both sides — the x's cancel and you are left with the contradiction 0 = 1, which is never true.
So CASE 1 has no solution. Its screen is dark.
CASE 2. Assume x < 0.
The bars drop with a sign flip: -x = x + 1.
Why: subtract x from both sides to get -2x = 1, then divide by -2.
Check the case condition: is -\tfrac{1}{2} < 0? Yes. ✓ So x = -\tfrac{1}{2} is the lone CASE 2 solution.
Result.
If you had naively written "|x| = x+1 \Rightarrow x = x+1 or x = -(x+1)" without thinking about case conditions, you would get the same final answer here by luck. But run a slightly different equation — say |x| = x - 1 — and the lazy method silently produces a fake answer that fails the original. The split-screen discipline is what protects you.
Example 3 — coefficient on $x$, both valid: $|2x - 4| = 6$
Here f(x) = 2x - 4. The case condition involves a threshold you have to compute: 2x - 4 \geq 0 means x \geq 2.
CASE 1. Assume 2x - 4 \geq 0, i.e. x \geq 2.
Bars drop unchanged: 2x - 4 = 6.
Why: add 4, then divide by 2.
Check: is 5 \geq 2? Yes. ✓
CASE 2. Assume 2x - 4 < 0, i.e. x < 2.
Bars drop with a sign flip: -(2x - 4) = 6, i.e. 4 - 2x = 6.
Why: subtract 4, then divide by -2.
Check: is -1 < 2? Yes. ✓
Result.
Notice the symmetry: the two solutions sit equidistant from the threshold x = 2 (one is 3 above, one is 3 below). That is not an accident — it is the same V-shape symmetry you saw in the parent article.
Why the case-check matters: extraneous solutions
Cricket analogy. Imagine an umpire reviewing two plays. In Play A, the assumption is "the batter was inside the crease." In Play B, the assumption is "the batter was outside the crease." Each play has its own video, its own ruling. But the ruling is only valid if the assumed condition matches what actually happened on the field. If the Play A umpire rules "out" but the replay shows the batter was actually outside the crease, the ruling is thrown out — wrong assumption, wrong universe.
Same logic with absolute value cases. CASE 1 only applies when f(x) \geq 0. If your CASE 1 algebra produces x = -7 but plugging x = -7 back into f gives a negative number, then x = -7 never belonged to CASE 1 in the first place — it is an extraneous solution, an artefact of dropping the bars when you should not have.
When does this trip you up most often? Three patterns:
- Right-hand side depends on x. Equations like |2x + 1| = x - 3 frequently produce extraneous answers, because the simplified equation in each case is different from the original and can have solutions the original does not.
- Inside is nonlinear. Equations like |x^2 - 4| = 3x multiply the chance of extraneous answers because the case-split produces quadratics, each potentially yielding two roots, of which any subset can fail the case condition.
- Multiple absolute values. Once you have two or more |\cdot| expressions, the cases multiply — and each region's solution must satisfy its region's conditions.
The fix is the same in every situation: state the assumption explicitly, solve, then check the assumption against the answer. Ten extra seconds; zero wrong answers reported.
A quick rewrite of the rule
You can compress the formal procedure into a one-line reminder. For |f(x)| = k:
The brackets are not decorative. Each candidate must satisfy both parts of its bracket — the equation and the sign condition. If you remember the brackets, you remember the check.
For CBSE Class 11 board questions and JEE-style problems, this bracketed form is what graders expect to see in your working. Skipping the case condition is the most common mark-loser on absolute-value problems, even when the final numerical answer turns out correct by luck.
When you can skip the case-check (and when you cannot)
If the right-hand side is a positive constant k > 0 and f(x) is linear, the case-check almost never fails — both candidates pass automatically. That is why the shortcut "f(x) = \pm k" works for the textbook drill of |2x + 3| = 7 kind. The shortcut is a special case of the full method, valid in friendly conditions.
But the moment any of these appear, switch back to the full split-screen:
- The right-hand side contains x (e.g. |x - 1| = 2x + 5).
- The inside is nonlinear (x^2, \sqrt{\cdot}, etc.).
- There is more than one absolute-value expression in the equation.
- The constant on the right is not obviously positive.
In all these cases, the formal split-screen — with explicit conditions and explicit checks — is your safety net.
References
- NCERT, Mathematics Textbook for Class XI, Chapter 6 (Linear Inequalities) — official PDF.
- Wikipedia — Absolute value — piecewise definition and properties.
- Wikipedia — Extraneous and missing solutions — the formal name for "answers that fail the case-check."
- Paul's Online Math Notes — Equations with absolute value — drill problems with worked case analysis.
- Khan Academy — Solving absolute value equations — video tutorials on the case method.