Absolute Value
The absolute value |x| is the distance of x from 0 on the number line, so it is never negative: |x| = x when x ≥ 0 and |x| = −x when x < 0. That "−x" trips up beginners — if x = −4, then −x = 4, which is exactly |−4|. Two equivalent forms are worth memorising: |x| = √(x²), and |x|² = x². The distance reading is the real CAT power-tool: |x − a| is simply "how far x is from a", so |x − 3| < 2 means "x is within 2 of 3", i.e. 1 < x < 5 — no algebra needed. Key properties: |ab| = |a||b|, |a/b| = |a|/|b|, and the triangle inequality |a + b| ≤ |a| + |b| (equality only when a and b have the same sign). Always remember |x| ≥ 0, so any equation forcing a modulus to equal a negative number has no solution.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Definition & core properties
| Piecewise definition | |x| = x if x ≥ 0, and −x if x < 0 |
|---|---|
| Square-root form | |x| = √(x²); also |x|² = x² |
| Distance on the line | |x − a| = distance between x and a |
| Product & quotient | |ab| = |a||b|; |a/b| = |a|/|b| (b ≠ 0) |
| Non-negativity | |x| ≥ 0, with |x| = 0 only when x = 0 |
Equations, inequalities & triangle rule
| Basic equation | |x| = c (c ≥ 0) ⇒ x = c or x = −c |
|---|---|
| Linear equation | |ax + b| = c ⇒ ax + b = ±c (needs c ≥ 0) |
| Less-than inequality | |x| ≤ c ⇒ −c ≤ x ≤ c (c ≥ 0) |
| Greater-than inequality | |x| ≥ c ⇒ x ≤ −c or x ≥ c |
| Triangle inequality | |a + b| ≤ |a| + |b|; |a − b| ≥ ||a| − |b|| |