2018-10-04 14:47:55 +01:00
---
title: Absolute Value
---
## Absolute Value
2018-12-07 23:00:45 -08:00
Absolute value is the non-negative value of a number, whether that number is positive or negative.
2018-10-04 14:47:55 +01:00
You can think of a number's absolute value as its distance from zero.
2019-03-12 16:06:25 +05:45
It can be also be considered as magnitude without direction.
2018-10-12 04:30:38 +05:30
It can be defined as,

2018-10-04 14:47:55 +01:00
< img src = "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Absolute_value.svg/2000px-Absolute_value.svg.png" width = "300" >
2018-11-10 15:51:05 +09:00
The absolute value of a quantity x is denoted by |x| (the quantity is enclosed between two vertical bars).
2018-10-04 14:47:55 +01:00
Here you can see that in the graph of y = |x|, if -2 is input in to the function, 2 is the result. This is because -2 has a distance of 2 from zero. The absolute value of a number can never be negative.
2019-01-25 14:38:57 -05:00
For complex numbers, this is also referred to as the *modulus* .
```
Pythagorean Theorem: If z=a+bi, where a=Re{z} and b=Im{z}, then |z|=sqrt(a^2+b^2)
```

2018-10-04 14:47:55 +01:00
### Examples
* **Simplify |-5|**
|-5| = 5
* **Simplify |0(5)|**
|0(5)| = |0| = 0
* **Simplify -|-1|**
-|-1| = -(1) = -1
* **Simplify |-5(-3) + 1|**
|-5(-3) + 1| = |15 + 1| = |16| = 16
* **Simplify |8|**
|8| = 8
* **Simplify |(-5)^3|**
2019-03-12 10:20:29 +00:00
|(-5)^3| = |-125| = 125
2018-10-04 14:47:55 +01:00
2019-03-12 06:19:38 -04:00
* **Simplify -|(4)^2|**
-|16| = -16
2018-10-04 14:47:55 +01:00
#### More Information:
2018-12-05 17:10:46 -08:00
[Purplemath ](https://www.purplemath.com/modules/absolute.htm )
2018-10-04 14:47:55 +01:00