In short

The unfolding rule says: |f(x)| = k \;\Rightarrow\; f(x) = k or f(x) = -k. Read it carefully — the absolute value has to sit alone on one side, with k alone on the other. If there is anything else hanging on the same side as the bars (a +5, a \times 2, a -3, another term), the rule does not apply yet. You first have to isolate |f(x)| — push everything else to the other side using normal equation moves — and only then unfold into two cases. Skip the isolation step and you are applying a theorem to a situation it was never proved for. Sometimes you get lucky and the wrong moves give the right answer. Often you do not.

You have just learned the central trick of absolute value equations: when you see |f(x)| = k, you split it into two cases — f(x) = k or f(x) = -k — and solve each one. The rule feels mechanical, almost satisfying. Bars on the left, number on the right, two equations, done.

So when you see |x - 3| + 5 = 11, the temptation is huge. There is the absolute value bar. Why not just unfold it right where it sits? Write \{x - 3 + 5 = 11, \;-(x - 3) + 5 = 11\} and march on?

The reason you cannot is that the unfolding rule was proved for one specific shape of equation, and your equation is not in that shape yet. You have to massage it into shape first — and that massaging is what "isolate the absolute value" means.

The rule, read very carefully

Here is the unfolding theorem, written out exactly:

\text{If } |f(x)| = k \text{ and } k \ge 0, \text{ then } f(x) = k \text{ or } f(x) = -k.

Notice what is on the left side of the equation: |f(x)|. Just the absolute value. No constants added on. No coefficients multiplied in front. The whole left side is one absolute-value expression and nothing else.

If your equation is |x - 3| = 6, you are in business — the rule applies directly. Why: the left side is exactly an absolute value alone, the right side is a non-negative number. The hypotheses of the theorem are satisfied.

But suppose your equation is |x - 3| + 5 = 11. Now the left side is not just an absolute value. It is an absolute value plus 5. The unfolding theorem says nothing about expressions like that. You cannot point to the rule and apply it, because the rule does not cover this shape.

What you can do is rearrange. Subtract 5 from both sides:

|x - 3| + 5 = 11 \;\;\Longrightarrow\;\; |x - 3| = 6

Now the left side is just an absolute value, and the right side is 6, which is non-negative. The hypotheses are met. You can unfold:

x - 3 = 6 \quad \text{or} \quad x - 3 = -6 \;\;\Longrightarrow\;\; x = 9 \text{ or } x = -3.

The subtraction is not a fancy move. It is a normal "do the same thing to both sides" step from class 6. But it is the step that converts your equation into the shape the unfolding rule needs.

Why isolation matters: the theorem only fires when its hypotheses hold

This is a pattern that runs through all of mathematics. A theorem says "if A is true, then B follows." You can only conclude B when A is actually true. If A is almost true — close, but not quite — the theorem does not fire.

The unfolding rule's hypothesis is: "the equation has the form |\text{something}| = \text{value}." If your equation has the form "|\text{something}| + 5 = \text{value}" or "2 \cdot |\text{something}| = \text{value}" or "|\text{something}| - 3 = \text{value}", you are not yet in the world the theorem speaks about. You have to do equation work first to get to that world.

Think of it like a cricket umpire's signal for a boundary. The signal applies when the ball crosses the rope on the full or after a bounce inside the boundary. If the ball is still in the air over the field, the signal hasn't earned the right to be made yet. You have to wait — or in our case, do work — until the situation matches.

Workflow: see absolute value, isolate, check RHS, unfold, solveA flowchart with five boxes connected by arrows. Box one says: see an absolute value in the equation. Arrow to box two: isolate the absolute value on one side, using normal equation moves like add, subtract, divide. Arrow to box three: check that the right side is non-negative. If yes, proceed; if no, no solution. Arrow to box four: unfold into two cases — inside equals plus value, inside equals minus value. Arrow to box five: solve each case as an ordinary equation, then verify both answers in the original equation. 1. See |…| in the equation 2. Isolate |…| add, subtract, divide both sides 3. Check RHS non-negative? if no → no solution 4. Unfold: f(x)=k or f(x)=−k 5. Solve each, verify in original Step 2 is the one beginners skip — and it is the one that makes everything else legal.
The standard procedure for any equation with a single absolute value. Step 2 — isolation — is the one that converts your equation into the shape the unfolding rule was proved for.

The safe procedure

Whenever you face an absolute value equation, run this checklist:

  1. Isolate |f(x)| on one side. Use the same equation moves you have been using since class 6 — add the same thing to both sides, subtract, multiply, divide. Anything that is not part of the absolute-value bars has to migrate to the other side.

  2. Check that the other side is non-negative. If you ended up with |f(x)| = -7, stop. There is no solution. Absolute value is never negative.

  3. Unfold into two cases: f(x) = k or f(x) = -k.

  4. Solve each case as an ordinary equation.

  5. Verify every candidate by plugging it back into the original equation (the one you started with, not the isolated version). The verification is your safety net.

This procedure is the one CBSE Class 11 textbooks follow when they introduce modulus equations, and it is the one JEE and NEET examiners expect to see in your working. The discipline of isolating first is not a stylistic preference — it is what turns guesswork into a guaranteed-correct method.

Three worked examples

Example 1: Why skipping isolation can be lucky — but is still wrong

Equation: |x - 3| + 5 = 11.

The wrong way (skipping isolation). A student writes:

x - 3 + 5 = 11 \quad \text{or} \quad -(x - 3) + 5 = 11

Why this is wrong: the unfolding rule was never proved for an expression like |x - 3| + 5. The student is pretending the +5 moves through the bars or stays put — neither is justified by any theorem.

Solving: from the first, x + 2 = 11, so x = 9. From the second, -x + 3 + 5 = 11, so -x = 3, giving x = -3.

Plug back into the original equation:

  • |9 - 3| + 5 = |6| + 5 = 11. Works.
  • |-3 - 3| + 5 = |-6| + 5 = 11. Works.

Both answers happen to be correct here. This is the dangerous thing — the wrong method gave right answers. But it is luck, not logic.

The right way (isolate first). Subtract 5 from both sides:

|x - 3| = 6

Why: now the left side is exactly |f(x)|, and the right side is 6 \ge 0. The unfolding rule applies.

Unfold: x - 3 = 6 or x - 3 = -6, so x = 9 or x = -3.

Same answers. Same equation. But this time you arrived by a method that is guaranteed to be correct, not one that happened to coincide with correctness.

Example 2: When the multiplier matters — $2|x - 3| = 8$

Here the absolute value is multiplied by 2. The left side is not |f(x)| alone; it is 2 times an absolute value.

Isolate. Divide both sides by 2:

2|x - 3| = 8 \;\;\Longrightarrow\;\; |x - 3| = 4

Why: dividing by 2 — a positive number — is a reversible move. Both sides shrink by the same factor and the equation is preserved.

Check RHS. 4 \ge 0. Good.

Unfold. x - 3 = 4 or x - 3 = -4.

Solve. x = 7 or x = -1.

Verify. 2|7 - 3| = 2 \cdot 4 = 8. Check. 2|-1 - 3| = 2 \cdot 4 = 8. Check.

If you had skipped isolation and written 2(x - 3) = 8 or 2 \cdot -(x - 3) = 8 directly, you would have got x = 7 or x = -1 again — coincidentally correct, because the multiplier was a positive constant. But for any equation more complicated than this, the coincidence breaks. The disciplined route is the one that always works.

Example 3: The constant outside — $|x| - 3 = 5$

Equation: |x| - 3 = 5. The absolute value of x has 3 subtracted outside the bars.

The wrong way. Unfold prematurely: x - 3 = 5 or -x - 3 = 5. From the first, x = 8. From the second, -x = 8, so x = -8.

Plug back: |8| - 3 = 5 — works. |-8| - 3 = 5 — works. Lucky again. The right answer dropped out, but the reasoning was not justified.

The right way. Isolate first by adding 3 to both sides:

|x| = 8

Why: |x| now sits alone on the left, and 8 \ge 0 on the right. Unfolding rule fires legally.

Unfold: x = 8 or x = -8. Verify both — they work.

The lesson from these three examples is that for very simple equations, the wrong method and the right method often agree. That is exactly what makes the wrong method dangerous: it does not announce itself with a wrong answer. It quietly works for the easy cases, gives you the false confidence to use it on harder cases, and then fails — sometimes silently, sometimes with answers that are partially right and partially wrong. The fix is not to wait for it to fail. The fix is to use the safe procedure every time.

Going deeper

The deeper reason isolation matters has to do with what makes a method valid in mathematics. A solving procedure is valid only when every step you take is reversible — when going forward and going backward are both legal. The unfolding rule, applied to a properly isolated equation, is reversible (each branch corresponds to a real solution of the original). Applied to an un-isolated equation, the reversibility breaks down, and you are no longer guaranteed that your candidates correspond to anything.

For nonlinear interiors — like |x^2 - 5| + 3 = 7 — the dangers of skipping isolation become much sharper. The squaring inside the bars interacts badly with arbitrary terms outside, and the case-split can produce extraneous solutions or miss real ones entirely. Once you have practised isolation on linear equations, the muscle memory will save you when you get to harder shapes.

The same isolate-then-unfold pattern reappears in absolute value inequalities, in equations with square roots (where you isolate the radical before squaring), and in trigonometric equations (where you isolate \sin x or \cos x before applying inverse functions). The principle is universal: a transformation rule has hypotheses, and you have to make those hypotheses true before you can use the rule.

References

  1. NCERT Class 11 Mathematics, Chapter 5 — Linear Inequalities (modulus method)
  2. Khan Academy — Solving absolute value equations
  3. Wikipedia — Absolute value (algebraic properties)
  4. Paul's Online Math Notes — Absolute Value Equations