Absolute value is the simplest operation in algebra that students tend to overcomplicate. It removes the sign of a number, returning only its magnitude. |−5| = 5. |5| = 5. |0| = 0. That's almost the whole concept. The interesting part is where it shows up: distances, errors, deviations, and inequalities.
Key Takeaways
- The absolute value |x| is the distance of x from zero on the number line.
- |x| is always non-negative: |x| ≥ 0 for any real number x.
- |x| = x if x ≥ 0, and |x| = −x if x < 0.
- Absolute value is used wherever we care about magnitude, not direction.
- Absolute value equations and inequalities have characteristic solution patterns.
The Definition
Formally:
|x| = x if x ≥ 0 |x| = −x if x < 0
The "−x" in the second case looks strange (how can a negative make a positive?), but if x is negative, then −x is positive. |−5| = −(−5) = 5.
Two equivalent definitions worth knowing:
- Geometric: |x| is the distance from x to 0 on the number line.
- Square root form: |x| = √(x²). Squaring strips the sign; the square root brings it back as positive.
Basic Examples
- |7| = 7
- |−7| = 7
- |0| = 0
- |−3.14| = 3.14
- |a − b| = distance between a and b on the number line
The expression |a − b| is the standard way to write distance. |5 − 2| = 3. |2 − 5| = 3. The order doesn't matter for absolute value.
Properties of Absolute Value
These properties show up constantly in algebra and analysis:
- Non-negativity: |x| ≥ 0, with equality only when x = 0.
- Multiplicativity: |xy| = |x| · |y|.
- Triangle inequality: |x + y| ≤ |x| + |y|.
- Quotient: |x / y| = |x| / |y| (for y ≠ 0).
- |x|² = x² (squaring is sign-blind).
- |x| = |−x| (symmetric around zero).
The triangle inequality is the most important of these in advanced math. It says combining two quantities can't produce more magnitude than the sum of their individual magnitudes, a foundational fact in geometry and analysis.
Solving Absolute Value Equations
The equation |x| = a (with a ≥ 0) has two solutions:
x = a or x = −a
Example: |x| = 7 → x = 7 or x = −7.
For more complex expressions, isolate the absolute value first, then split into two cases.
Example: |2x − 3| = 5 Case 1: 2x − 3 = 5 → x = 4 Case 2: 2x − 3 = −5 → x = −1
Both solutions check: |2(4) − 3| = |5| = 5 ✓ and |2(−1) − 3| = |−5| = 5 ✓.
If the equation is |expression| = (negative number), there is no solution, because absolute value is never negative.
Solving Absolute Value Inequalities
Two patterns:
|x| < a (less than) → −a < x < a. The solution is the interval between −a and a.
|x| > a (greater than) → x < −a or x > a. The solution is two separate intervals.
Example: |x| < 4 → x is between −4 and 4 (not inclusive). Example: |x| > 4 → x is less than −4 or greater than 4.
For expressions:
|2x + 1| ≤ 7 → −7 ≤ 2x + 1 ≤ 7 → −8 ≤ 2x ≤ 6 → −4 ≤ x ≤ 3.
Absolute value inequalities are common in tolerance specifications and statistical confidence intervals.
Where Absolute Value Shows Up
Distance. The distance between two points a and b on a number line is |a − b|. In two dimensions, distance combines absolute values via the Pythagorean theorem.
Error and tolerance. "The measurement should be within ±0.1 mm of 50 mm" translates to |measurement − 50| ≤ 0.1.
Deviation and standard deviation. Mean absolute deviation uses |x − mean| as its core measurement. Standard deviation uses the squared version, but the absolute version is conceptually cleaner.
Financial returns. Reporting "absolute returns" means total return regardless of direction. A 12% gain and a 12% loss have the same absolute magnitude.
Signal processing. Audio amplitude is measured in absolute value: louder is bigger magnitude regardless of whether the waveform is above or below zero.
Voting and polls. Margin of error is often expressed as an absolute interval around the reported figure.
Worked Examples
Manufacturing tolerance. A bolt should be 25.4 mm long with a tolerance of 0.2 mm. Acceptable lengths satisfy |length − 25.4| ≤ 0.2, or 25.2 ≤ length ≤ 25.6.
Temperature deviation. A thermostat is set to 70°F. The HVAC system kicks on if temperature deviates by more than 2°F: |temp − 70| > 2 triggers the system. Solutions: temp < 68 or temp > 72.
Stock price movement. A trader cares about price moves of more than 5% in either direction. |% change| > 5 → % change < −5 or % change > 5.
GPS error. A location reading has |reported − actual| < 5 meters 95% of the time. The reported position is within 5 meters of the true position.
Common Mistakes
Treating |x| as "just remove the negative sign." For numerical values, that works. For expressions, you have to consider both cases. |x + 3| is not just "x + 3 without the sign."
Setting up the wrong inequality direction. |x| < a gives a single interval; |x| > a gives two intervals. Mixing them up is the most frequent error.
Forgetting that |expression| = (negative) has no solution. |2x − 5| = −3 cannot be true for any x.
Dropping a solution. |x − 2| = 7 has two solutions (x = 9 and x = −5), not one.
Confusing |x| with parentheses. |x| is absolute value; (x) is grouping. They look similar but mean different things.
Misapplying the triangle inequality. |x + y| ≤ |x| + |y| is a relationship, not an equality. The two sides are equal only when x and y have the same sign (or one is zero).
Absolute Value vs Magnitude vs Modulus
The terms overlap:
- Absolute value is the standard term for real numbers.
- Magnitude is the same concept generalized to vectors and complex numbers.
- Modulus is another term used especially for complex numbers (|a + bi| = √(a² + b²)).
The common thread: a non-negative number representing "size" or "distance from zero," independent of direction.
FAQ
What does absolute value mean? It is the distance of a number from zero on the number line, ignoring direction. |−7| = 7; |7| = 7.
Can absolute value be negative? No. By definition, absolute value is always greater than or equal to zero.
What is the absolute value of zero? |0| = 0. Zero is the only number whose absolute value is zero.
How do you solve an absolute value equation? Isolate the absolute value, then split into two cases: the expression inside equals the positive value, or the expression equals the negative value. Solve each case separately.
What's the difference between |x| < a and |x| > a? |x| < a gives a single bounded interval (−a < x < a). |x| > a gives two unbounded intervals (x < −a or x > a).
Does absolute value distribute over addition? No. |x + y| ≤ |x| + |y| (triangle inequality), but they are not always equal. Equality holds only when x and y have the same sign.
Where is absolute value used in real life? Distance measurements, error tolerances, financial returns, signal processing, statistics, and any setting where magnitude matters more than direction.
Related Tools
The Absolute Value Calculator evaluates expressions involving absolute value. For distance-related calculations, the Distance Calculator handles 1D and 2D cases. For relative change calculations, see the Percentage Change Calculator.
Related Articles
Final Thoughts
Absolute value is the math of "how big," divorced from "which direction." That single idea unlocks distance, error, tolerance, and a lot of inequality work. The notation is small; the applications are everywhere. If the equation has |·| in it, the only real trick is remembering to set up both cases; once you do, the rest is straight algebra.