[Math] Why use absolute value

absolute value

So, there’s this thing called absolute value, or a modulus function that basically says how far away any real number $n$ is from $0$. For example, $|2|=2$ because $2$ is $2$ units away from $0$. Furthermore, a negative number’s $($such as $-3)$ absolute value is simply its positive counterpart. So, $|-3|=3$.

This got me thinking, what is the usage of such a function other than to turn negatives into positives?

Edit: Xander Henderson commented about the Wikipedia article for absolute value, and honestly, the article literally repeats what I already know. This is the case for every video or website I go to. In this post, I want to know if there is any OTHER use for absolute value other than telling an integer’s distance from $0$.

Best Answer

In $\mathbb{R}$, the absolute value function may seem too simple to be useful. But the 'idea' of an absolute value is generalizable and quite important, because it captures the concept of distance between two points. For example, in $\mathbb{R}$, $\lvert x-y \rvert$ tells us how far $x$ is from $y$. It measures distance. Now move up to $\mathbb{R}^3$. We can grasp the idea of distance between points $x$ and $y$ in $\mathbb{R}^3$, but how do we denote it? We can write $\lvert x-y \rvert$. Now, this again gives the distance between $x$ and $y$, but it is not the same simple function as it was in $\mathbb{R}$; however, it captures the same idea.

Having said that, even in $\mathbb{R}$, I would argue that the absolute value function simplifies notation a lot. For example, when we talk about a sequence $a_n$ converging to a limit $a$, we usually say something like $\forall \epsilon >0, \exists N$ such that if $n>N$, $\lvert a_n - a \rvert < \epsilon$. If we didn't use the absolute value function, we would have written $a_n - a < \epsilon$ if $a_n > a$ and $a - a_n < \epsilon$, otherwise. Obviously, this is more cumbersome.

Related Question