The first time you solve |x| > 3, the teacher tells you to split it into two cases: x > 3 or x < -3. A minute earlier you solved |x| < 3 and got a single clean answer: -3 < x < 3. Why the asymmetry? Why does one give you a single interval and the other give you two rays joined by "or"?

The algebra did not conspire against you. The picture did. If you read |x| as what it really means — the distance from x to zero on the number line — then the split is not a trick. It is the only honest answer. There are two directions to be far from zero, so the set of "far from zero" points lives in two places.

Let us see this carefully.

What |x| actually means

The absolute value |x| is the distance of x from 0. That is not a metaphor — it is the definition you should carry into every absolute-value problem.

Distance is always non-negative, and distance does not care about direction. Two different numbers — 5 and -5 — can have the same distance from 0. That is the whole source of the "two cases" phenomenon.

|x| > 3 in plain English

Translate literally: "the distance from x to 0 is greater than 3."

Now ask: which points on the number line are more than 3 steps from 0?

Walk 3 steps to the right of 0 — you land at 3. Points beyond 3 (at 3.1, 4, 100, 10^9) are more than 3 steps from 0. Good, that is one region: x > 3.

But you can also walk to the left. Step 3 units left of 0 — you land at -3. Points beyond -3 to the left (at -3.1, -4, -100) are also more than 3 steps from 0. That is a second region: x < -3.

There is no way to combine these two regions into a single interval because they are separated by the forbidden zone [-3, 3], where the distance from 0 is at most 3. The gap is real; you cannot paper over it with a single inequality.

So you write the answer with "or":

x > 3 \quad\text{or}\quad x < -3

Or in interval notation, joined by union:

x \in (-\infty, -3) \cup (3, \infty)
Number line showing the solution of absolute value of x greater than 3 as two disjoint raysA horizontal number line from negative 7 to 7 with integer tick marks. Two thick coloured rays sit above the line: one extending leftward from a hollow circle at negative 3 with an arrow at the far left, and one extending rightward from a hollow circle at 3 with an arrow at the far right. The gap between negative 3 and 3 is shaded grey and labelled "distance from 0 is at most 3 — excluded." The point 0 is marked with a small dot labelled centre. Braces under the line mark the two solution regions, each labelled "more than 3 from 0." −7 −6 −5 −4 −3 −2 −1 0 1 2 3 4 5 6 7 distance from 0 is at most 3 — excluded centre x < −3 (more than 3 from 0) x > 3 (more than 3 from 0) |x| > 3 → (−∞, −3) ∪ (3, ∞)
The solution to $|x| > 3$ is two disjoint rays. The grey band in the middle — the interval $[-3, 3]$ — is the set of points *at most* $3$ from $0$, and those points are excluded. The two endpoints $\pm 3$ themselves are hollow because the inequality is strict: the distance must be *greater than* $3$, not equal to it.

Contrast: |x| < 3 is a single interval

Now run the same reading for |x| < 3. It says "the distance from x to 0 is less than 3."

Walk out from 0 in either direction, but stop before you reach 3 steps. You are allowed anywhere within that window. The window itself is the interval from -3 to 3, and every point inside is permitted. There is no split — the allowed region is a single connected stretch:

-3 < x < 3 \quad\Leftrightarrow\quad x \in (-3, 3)

The asymmetry with |x| > 3 is not about absolute values behaving differently in the two cases. It is about which region is connected. The "close to zero" region is a single ball around 0. The "far from zero" region is everything outside that ball, and the outside of a ball on the number line is two pieces, because the number line has two sides.

Side-by-side comparison of absolute value less than 3 and greater than 3Two number lines stacked vertically, each running from negative 7 to 7. The top line shows the solution of absolute value of x less than 3 as a single shaded segment from hollow circle at negative 3 to hollow circle at 3, with the region labelled single interval. The bottom line shows the solution of absolute value of x greater than 3 as two separate shaded rays, one extending left from hollow circle at negative 3 with an arrow, and one extending right from hollow circle at 3 with an arrow, with a grey gap in the middle; the two rays are labelled two separate regions. |x| < 3 → (−3, 3) single interval −3 0 3 |x| > 3 → (−∞, −3) ∪ (3, ∞) two regions −3 0 3
Same number $3$, same absolute value, opposite inequality sign — and the solution set changes from one interval to two rays. The question that decides the shape is: does the forbidden zone cut the line into pieces? For $|x| < 3$, the forbidden zone sits at the ends and never splits anything. For $|x| > 3$, the forbidden zone sits in the middle and cleaves the line in two.

Why the algebra agrees

If you prefer to see the split fall out of the definition rather than the picture, here it is. By definition,

|x| = \begin{cases} x & \text{if } x \ge 0 \\ -x & \text{if } x < 0 \end{cases}

So the inequality |x| > 3 has to be handled in each piece of the definition.

The two cases give x > 3 or x < -3, joined by "or" because either case is enough — a point satisfies the original inequality if either interpretation of |x| lands it outside the forbidden zone. The algebra and the geometry give the same answer, which is comforting but not a coincidence: the piecewise definition of |x| is exactly the algebraic shadow of the "two directions from zero" picture.

The general rule

Once you have seen |x| > 3 and |x| < 3 side by side, you can read off the general rule without memorising it. For any r > 0:

|x| < r \quad\Leftrightarrow\quad -r < x < r \quad\text{(one interval)}
|x| > r \quad\Leftrightarrow\quad x < -r \ \text{or}\ x > r \quad\text{(two rays)}

The same logic extends to inequalities with a shifted centre, |x - c|: "distance from c" replaces "distance from 0," and the ball/complement story repeats around c instead of 0. You can see this live in the absolute-value inequality visualiser — drag the centre, drag the radius, and watch the inside/outside regions switch between one interval and two rays.

The one-line takeaway

An absolute value measures distance, and distance has two directions on a number line. Asking "which points are close to 0" produces a single connected ball. Asking "which points are far from 0" produces the complement of that ball — and on the real line, the complement of a ball is two rays. That is the whole reason |x| > 3 splits. Not algebra. Geometry.