In short
If you see |x + 3| = -4, stop. Do not write "case 1: x + 3 = -4, case 2: x + 3 = 4" — that mechanical split gives you two numbers, x = -7 and x = 1, but neither one satisfies the original equation. Absolute value is always non-negative by definition, so |\text{anything}| = -4 has no solution. The fix: before unfolding |f(x)| = c into cases, check that c \ge 0. If c < 0, write "no solution" and move to the next problem. Why: |y| measures the distance of y from zero on the number line, and distances are never negative.
You have learned the recipe. Whenever you see absolute-value bars in an equation, you split into two cases — drop the bars and write one equation with a plus sign, another with a minus sign — solve both, collect the answers. The recipe works beautifully for |x - 2| = 7 or |3x + 1| = 10. So when |x + 3| = -4 shows up on a worksheet, your hand starts moving before your brain catches up.
Two minutes later you have circled x = -7 or x = 1. Your friend looks over and frowns. The textbook answer is "no solution." What went wrong?
What went wrong is that you treated the absolute value as a piece of notation to be mechanically peeled off, instead of as a quantity that has meaning. The bars are not just decoration — they say "this thing is a distance," and a distance can never be -4.
What absolute value actually promises
Recall the definition from Absolute Value — Equations:
Look at the two branches. If y \ge 0, you get y itself, which is \ge 0. If y < 0, you get -y, and negating a negative number gives a positive — also \ge 0. Why: every output of the |\cdot| function is non-negative. There is no input you can feed in that produces a negative result. This is not a rule to memorise — it falls out of the definition.
So the moment an equation tries to set |y| = (\text{something negative}), it is asking the impossible. Like asking "what positive whole number is less than zero?" — the question has no answer, and no amount of algebra will manufacture one.
The trap, played out
Here is exactly the wrong path that costs marks in CBSE Class 11 and JEE-prep tests every year.
The trap (wrong)
Solve |x + 3| = -4.
A student writes:
Case 1: x + 3 = -4 \implies x = -7. Case 2: x + 3 = +4 \implies x = 1. Therefore x = -7 or x = 1.
Now plug both back into the original to check — which is something you should always do with absolute-value equations.
- x = -7: |-7 + 3| = |-4| = 4. The equation says this should equal -4. But 4 \ne -4. ✗
- x = 1: |1 + 3| = |4| = 4. The equation says this should equal -4. But 4 \ne -4. ✗
Both candidates are fake. They are not solutions of the original equation; they are solutions of two equations the student invented by dropping the bars without thinking. The case-split assumed the right-hand side could be negative — but the left-hand side, an absolute value, can never be negative, so neither "case" was ever valid.
The right move (recognise upfront)
Solve |x + 3| = -4.
Look at the right-hand side. It is -4, a negative number. The left-hand side is |x + 3|, an absolute value, which is \ge 0 for every real x. A non-negative quantity can never equal a negative quantity.
Answer: No solution. (Or, in set notation, the solution set is \emptyset.)
That is the entire problem. Total time: about four seconds. No case splitting, no algebra, no plug-back check needed — because the type of the equation tells you the answer.
The rule, stated cleanly
Before you unfold |f(x)| = c into the two cases f(x) = c and f(x) = -c:
- Look at c. Is it a number you can read off?
- If c < 0, write "no solution" immediately. Stop.
- If c = 0, there is exactly one case: f(x) = 0. Solve it.
- If c > 0, now unfold into f(x) = c and f(x) = -c, solve both.
For example:
- |2x - 5| = -1 \implies no solution. (RHS is -1 < 0.)
- |3x + 7| = 0 \implies 3x + 7 = 0 \implies x = -7/3.
- |2x - 5| = 9 \implies 2x - 5 = 9 or 2x - 5 = -9 \implies x = 7 or x = -2.
The first equation never deserved any work at all. The trap is in not looking before unfolding.
How to make this a habit
The fix is a one-second pause. Train your eye to land on the right-hand side first, not the left. Two cases:
-
RHS is a number you can read. If it is negative, you are done — write "no solution" and move on. If it is 0, one case. If it is positive, unfold normally.
-
RHS is a variable expression like |x - 1| = 2x - 3. Now you cannot tell the sign at a glance, because it depends on x. You have to unfold into cases and verify each candidate against the original equation, because some "solutions" of the unfolded equations may make the RHS negative — those are extraneous and must be discarded. That is a separate trap covered in Absolute value equations — extraneous solutions and why you must check.
The CBSE Class 11 syllabus and the JEE Main question banks are full of equations of the form |f(x)| = c designed precisely to catch students who skip step 1. Examiners know that the case-splitting recipe is the first thing you learn, and they bait the trap by writing |f(x)| = -k where k > 0. Half the class loses the mark by producing two confident-looking fake answers; the other half writes "no solution" in four seconds and moves on.
You want to be in the second half.
A wider view: equations that ask the impossible
This is one example of a much larger pattern in mathematics. Some equations have no solution because the types of the two sides cannot meet. Each of these is "no solution" by the same kind of argument:
- x^2 = -1 in the real numbers — squares are non-negative.
- \sqrt{x} = -2 — the principal square root is non-negative.
- e^x = 0 — the exponential function is strictly positive.
- \sin x = 2 — sine is bounded between -1 and 1.
In every case, you do not need to "try" the equation algebraically. You compare the range of the left-hand side with the value the right-hand side asks for, and if they do not overlap, the equation is empty. Building this range-checking instinct is one of the quiet upgrades that separates a Class 11 student from a JEE-Advanced level student.
So the next time you see those bars sitting opposite a negative number, do not let your hand move. Look. Recognise. Write "no solution." Then take the four seconds you saved and spend them on a problem that actually has an answer.
References
- Absolute value — Wikipedia — definition and basic properties.
- NCERT Mathematics Class 11, Chapter 6 — Linear Inequalities — official treatment of absolute value in the Indian school syllabus.
- Paul's Online Notes — Absolute value equations — careful walkthrough of the "c < 0 means no solution" rule.
- Khan Academy — Solving absolute value equations — worked examples including the no-solution case.
- Art of Problem Solving — Absolute value — competition-level perspective.