Absolute Value
โAbsolute value drops the sign and keeps the 'distance to 0'.โ
The formula
|a| = a (a โฅ 0), |a| = โa (a < 0)How to read it: the absolute value is how far a number sits from 0 โ its distance
- |a|
- โ the absolute value of a โ its distance from 0
- a โฅ 0
- โ if a is 0 or positive, leave it as is
- โa (a < 0)
- โ if a is negative, strip the sign to make it positive
The hook
โ3 and 3 have opposite signs, but they're the same distance from 0 โ and that distance is the absolute value.
In plain words
How far a number is from 0. Throw away the direction (the sign) and keep only the distance.
The intuition
Think of it as the length you'd measure with a ruler out to that number on the line. A distance can never be negative, whether you go left or right, so absolute value is always 0 or more.
How it's built
Just two rules โ if it's 0 or positive, leave it; if it's negative, drop the leading โ to make it positive. So |โ3|=3, |3|=3, |0|=0.
Example
Take |โ4|. The number โ4 sits 4 steps to the left of 0. The distance is 4, so |โ4| = 4.
Common mistake
Don't blindly memorize |โa| = a โ because a itself might be negative. Think of absolute value as 'measuring distance', not 'erasing a minus sign'.
Where it's used
Distance between two points, the size of an error, speed (the absolute value of velocity) โ anywhere the direction doesn't matter but the size does.
Where it came from
The bar notation | | was introduced by the 19th-century mathematician Weierstrass, and the name comes from a Latin word meaning 'magnitude'.
Prerequisites
Quick check
What is |โ7|?
- โ7
- 0
- 7โ
- 14
Practice
What is |โ9|?
Answer: 9
- โ9 sits 9 steps from 0
- โ |โ9| = 9
Takeaway: For a negative, just drop the sign.
What is |6| + |โ4|?
Answer: 10
- |6| = 6, |โ4| = 4
- 6 + 4 = 10
Takeaway: Take each absolute value first, then compute.
What is |โ3| โ |โ1|?
Answer: 2
- |โ3| = 3, |โ1| = 1
- 3 โ 1 = 2
Takeaway: Absolute value is always โฅ 0 โ make it positive first, then compute.
Find all values of a with |a| = 5.
Answer: undefined
- Two points are distance 5 from 0
- 5 to the right, โ5 to the left
- a = 5 or a = โ5
Takeaway: Two numbers share an absolute value โ same size, opposite signs.