Absolute Value
Absolute value measures distance from zero — it always returns a non-negative result regardless of whether the input is positive or negative. It's one of the most frequently tested algebra concepts and appears constantly in higher math.
In this lesson
1 What Absolute Value Means
The absolute value of a number is its distance from zero on the number line. Distance is always non-negative, so absolute value is always ≥ 0.
|7| = 7 (7 is 7 units from zero). |−7| = 7 (−7 is also 7 units from zero). |0| = 0.
Absolute value removes the sign — it only cares about magnitude. How far? Not which way. This is why |−7| = |7| = 7. Both are 7 steps from zero, just in opposite directions.
2 The Notation and Basic Calculations
Written with vertical bars: |x|. Formally defined as: |x| = x if x ≥ 0, and |x| = −x if x < 0.
That second part (|x| = −x when x is negative) confuses students. Example: |−5| = −(−5) = 5. You're negating a negative, which produces a positive. The absolute value is always positive.
553 Solving Absolute Value Equations
|x| = 5 has two solutions: x = 5 and x = −5. Both are 5 units from zero. When solving |expression| = c (where c > 0), split into two equations: expression = c and expression = −c.
5−2If |x| = −3, there is no solution. Absolute value is always ≥ 0 — it can never equal a negative number.
4 Absolute Value Inequalities
|x| < c means x is within c units of zero: −c < x < c (AND compound inequality)
|x| > c means x is more than c units from zero: x < −c OR x > c (OR compound inequality)
5 Real-World Applications
Manufacturing tolerances: a bolt specified at 10mm ± 0.5mm accepts any bolt where |diameter − 10| ≤ 0.5. This is an absolute value inequality describing the acceptable range.
Statistics: the absolute deviation of a value from the mean is |x − μ|. Mean absolute deviation (MAD) is the average of all absolute deviations — a simpler alternative to standard deviation.
Computer science: absolute value appears in distance calculations, error metrics (mean absolute error in machine learning), and comparison algorithms.
Practice Problems
📚 Further Reading & Resources
Go deeper with these trusted free resources.