Absolute Value Math- Complete Guide
What Is Absolute Value? The Short Answer
Absolute value is the distance a number sits from zero on a number line. That's it. It doesn't care about direction—just distance.
The symbol looks like this: |x|. If x = -5, then |x| = 5. If x = 5, then |x| = 5. Both are 5 units away from zero.
Negative numbers become positive. Positive numbers stay positive. Zero stays zero.
The Definition You Actually Need
Math textbooks love formal definitions. Here it is:
|a| = a if a ≥ 0
|a| = -a if a < 0
That second line trips people up. When you take the absolute value of a negative number, you flip the sign. That's why |-7| = 7, not -7.
Absolute Value on a Number Line
Picture this: you have 3 and -3 on a number line.
Both are exactly 3 units from zero. The direction doesn't matter. Distance doesn't have a sign.
This visual understanding helps when you move to absolute value equations. The equation |x| = 3 asks: "What numbers are exactly 3 units from zero?" The answer: 3 and -3.
Core Properties You Must Know
Non-Negativity
|a| ≥ 0 always. Absolute value outputs are never negative. This isn't a suggestion—it's a hard rule.
Positive Definiteness
|a| = 0 only when a = 0. If you get an absolute value result of zero, the input had to be zero.
Symmetry
|-a| = |a|. The absolute value of opposite numbers is identical. Makes sense—opposite numbers sit at equal distances from zero.
Triangle Inequality
|a + b| ≤ |a| + |b|
This one matters in higher math and proofs. The direct path between two points is never longer than going through a third point.
Multiplication and Division
|a · b| = |a| · |b|
|a / b| = |a| / |b| (when b ≠ 0)
Absolute value distributes across multiplication and division cleanly.
Absolute Value Equations
Solving |x| = a depends on what "a" is.
- If a > 0: x = a or x = -a
- If a = 0: x = 0
- If a < 0: No solution. Absolute value can't equal a negative number.
Example: Solve |x - 3| = 7
This means x - 3 = 7 or x - 3 = -7
x = 10 or x = -4
Test both: |10 - 3| = 7 ✓ |(-4) - 3| = |-7| = 7 ✓
When the Outside Is Negative
|2x + 1| = -5
No solution. The left side produces non-negative values. It can never equal -5.
Absolute Value Inequalities
These trip up even students who handle equations fine.
|x| < a (strictly less than)
Solution: -a < x < a
Example: |x| < 4 means -4 < x < 4
Think: "What numbers are less than 4 units from zero?" Anything between -4 and 4.
|x| ≤ a (less than or equal)
Solution: -a ≤ x ≤ a
Same logic, but now the endpoints are included.
|x| > a (strictly greater than)
Solution: x < -a or x > a
Example: |x| > 3 means x < -3 or x > 3
Think: "What numbers are MORE than 3 units from zero?" Anything beyond -3 on the left or 3 on the right.
|x| ≥ a (greater than or equal)
Solution: x ≤ -a or x ≥ a
Endpoints included.
Comparing: Equation vs Inequality Solutions
| Type | Form | Solution Set | Example |
|---|---|---|---|
| Equation | |x| = a, a > 0 | x = a or x = -a | |x| = 5 → x = 5, -5 |
| Inequality (<) | |x| < a, a > 0 | -a < x < a | |x| < 5 → -5 < x < 5 |
| Inequality (≤) | |x| ≤ a, a > 0 | -a ≤ x ≤ a | |x| ≤ 5 → -5 ≤ x ≤ 5 |
| Inequality (>) | |x| > a, a > 0 | x < -a or x > a | |x| > 5 → x < -5 or x > 5 |
| Inequality (≥) | |x| ≥ a, a > 0 | x ≤ -a or x ≥ a | |x| ≥ 5 → x ≤ -5 or x ≥ 5 |
Graphing Absolute Value Functions
The basic function y = |x| produces a V shape.
Vertex at (0, 0). Opens upward. Arms go at 45-degree angles.
Transformations work like other functions:
- y = |x| + 3: Shifts up 3 units
- y = |x - 2|: Shifts right 2 units
- y = -|x|: Flips it upside down
- y = 2|x|: Stretches vertically by factor of 2
Compound Absolute Value Equations
Sometimes you'll see two absolute values in one equation: |x - 1| = |2x + 3|
Strategy: Square both sides to eliminate absolute value bars.
(x - 1)² = (2x + 3)²
x² - 2x + 1 = 4x² + 12x + 9
0 = 3x² + 14x + 8
Now factor or use quadratic formula:
3x² + 14x + 8 = 0
(3x + 2)(x + 4) = 0
x = -2/3 or x = -4
Always check these in the original equation. Plugging in:
|-2/3 - 1| = |-5/3| = 5/3
|2(-2/3) + 3| = |4/3 + 3| = |13/3| = 13/3 ≠ 5/3
So x = -2/3 is extraneous. Discard it.
x = -4 works: |-4 - 1| = 5, |2(-4) + 3| = |-5| = 5 ✓
Final answer: x = -4
How to Solve Any Absolute Value Problem
Here's the step-by-step process that works every time:
- Isolate the absolute value expression on one side. Get |something| by itself before doing anything else.
- Identify the relationship. Is it equals, less than, greater than?
- Split into cases. For equations: create two equations (remove bars with positive, remove bars with negative and flip sign). For inequalities: use the interval rules from the table above.
- Solve each case using standard algebra.
- Check every solution in the original equation. Discard anything that doesn't work.
Real-World Applications
Absolute value shows up in places you wouldn't expect:
- Temperature deviation: "How far is today's temperature from the average?" |72 - 68| = 4 degrees
- Error margins: "The measurement is 15 cm ± 0.3 cm" means the actual value satisfies |x - 15| ≤ 0.3
- Distance problems: "Find all points exactly 5 units from point A" gives you a circle, but on a 1D line it's x = a ± 5
- Finance: Budget variance uses absolute value to measure how far off you are from a target, regardless of direction
Common Mistakes That Cost Points
- Assuming |x| = ±x. Wrong. |x| = x when x ≥ 0 and |x| = -x when x < 0. It's not "plus or minus"—it's conditional.
- Forgetting to check solutions. Extraneous roots happen, especially with compound equations or when you square both sides.
- Mixing up inequality direction. Remember: |x| < a means between; |x| > a means outside. Draw a number line if you're unsure.
- Solving |x - 2| < 7 as x < 5. Should be -7 < x - 2 < 7, which gives -5 < x < 9. Don't forget to add the constant back.
Quick Reference Cheat Sheet
- |a| ≥ 0 always
- |a| = 0 only when a = 0
- |-a| = |a|
- |a + b| ≤ |a| + |b| (triangle inequality)
- |a · b| = |a| · |b|
- |x| = a (a > 0) → x = a or x = -a
- |x| < a → -a < x < a
- |x| > a → x < -a or x > a
That's absolute value. Memorize the rules, check your work, and don't overthink the "distance from zero" concept. Everything else follows from that single idea.