Questions tagged [absolute-value]

For questions about or involving the absolute value function also known as modulus function.

The absolute value function, usually denoted by $|x|$, is a function $\mathbb{R} \to [0, \infty)$ which can be defined in three equivalent ways:

  1. $|x| = \begin{cases}x &\ \text{if $x \ge 0$, and} \\ -x &\ \text{if $x < 0$.} \end{cases}$

  2. $|x| = \sqrt{x^2}$, and

  3. $|x| = \max \{x, -x\}$.

This definition extends to complex numbers as the square root of the norm: $|x+iy|=\sqrt{x^2+y^2}$. In both cases, the function may be interpreted geometrically as the distance of the input number from the origin.


More generally, an absolute value may be defined on an field (or integral domain) $k$ as a function $|\cdot | : k \to \mathbb{R}$ which satisfies the axioms

  1. (nonnegativity) $|x| \ge 0$ for all $x \in k$,

  2. (definiteness) $|x| = 0 \iff x = 0 \in k$,

  3. (multiplicativity) $|x y| = |x||y| $ for all $x,y\in k$ ), and

  4. (triangle inequality) $|x+y| \le |x| + |y|$ for all $x,y\in k$.

For example, if $p$ is a fixed prime number and $x \in \mathbb{Q}$, then there exists a unique $n \in \mathbb{Z}$ such that $x$ may be written as $$ x = p^n \frac{a}{b}, $$ where $\gcd(p, a) = \gcd(p, b) = 1$. The function which maps $x$ to $p^{-n}$ is an absolute value on $\mathbb{Q}$, called the $p$-adic absolute value.

3133 questions
20
votes
3 answers

Is there a geometric analog of absolute value?

I'm wondering whether there exists a geometric analog concept of absolute value. In other words, if absolute value can be defined as $$ \text{abs}(x) =\max(x,-x) $$ intuitively the additive distance from $0$ to $x$, is there a geometric…
dashnick
  • 302
9
votes
2 answers

Getting wrong answer for absolute value inequality and not sure why

The question: The function p is defined by $-2|x+4|+10$. Solve the equality $p(x) > -4$ Here were my steps to solving this: 1.) Subtract 10 from both sides -> $-2|x+4| > -14$ 2.) Divide both sides by -2 -> $|x+4|>7$ 3.) $x+4$ should therefore be 7…
8
votes
6 answers

How to calculate with absolute value.

Calculate:$$\frac{ \left| x \right| }{2}= \frac{1}{x^2+1}$$ How do I write the whole process so it will be correct? I need some suggestions. Thank you!
L_McClain
  • 523
8
votes
7 answers

Proof of $ |a-b| = |b-a| $

While working out some intriguing qualities of absolute values for my studies of calculus, I frequently used the formula below. I know that the formula below is clearly correct but how would I prove it? $$ |a-b| = |b-a| $$ $$ a,b \in\mathbb R…
Eugene
  • 719
6
votes
1 answer

rule for the power of absolute value expressions

Is $|x^n|=|x|^n$ for any rational $n$ and for any real number $x$? If the above is true, what is the proof?
zebra1729
  • 819
6
votes
5 answers

Why is the Absolute value / modulus function used?

Why is the absolute value function or modulus function $|x|$ used ? What are its uses? For example the square of a modulus number will always be positive, but why is it used when for example the square of any number whether positive or negative is…
Dan
  • 1,649
6
votes
5 answers

What does it mean to have an absolute value equal an absolute value?

I have no problem reading absolute value equations such as $|x -2| = 2$. I know this means that the distance of some real number is $2$ away from the origin. Because the origin splits the number line into a negative side and positive side then the…
Slecker
  • 969
  • 10
  • 29
5
votes
1 answer

Solving equation with absolute value signs

Can someone see why there is only get one solution when solving following equation in this way: The equation $|x+1|+|2x-3|=|x-5| $ $$|x+1|+|2x-3|=|x-5| $$ $$\pm (x+1) \pm(2x-3)=\pm(x-5)$$ $$\pm x \pm 1 \pm 2x \mp 3 = \pm x \mp 5$$ $$\pm x \pm 2x \mp…
Artem
  • 1,208
5
votes
3 answers

How to solve $|a+b|+|a-b|=c$?

It is intuitive that $a=\pm \frac{c}{2}$, with $-\frac{c}{2}\leq b\leq \frac{c}{2}$ or vice-versa are solutions to the problem. Can I get to these solutions without dividing the expression in all the cases (i.e. $a$ and $b$ being positive or…
Jim Kwon
  • 145
  • 4
5
votes
2 answers

Solve equation based on modulus function.

Question: Explain algebraically how to solve for x in this equation: $$|x+1| + |x-1| = 2$$ Where the result should be $ -1 \le x \le 1 $. Also, why is it that an inequality originates from this equation ? Context: So far I have seen that $|x| = |a|…
5
votes
4 answers

Definition of abs() function

Let $\text{abs}(a)$ denote the absolute value of $a$. Is it true that $\text{abs}(a)\geq{-a}$? I suppose that $\text{abs}(a)>{-a}$, but my math book says the other way. Please help me to understand is it a misprint in my book, or my…
4
votes
1 answer

Why does the absolute value of difference between two consecutive integers in a finite string of positive reals always end with 0s?

Suppose I take a finite string of positive reals 1 4 19 3 In the first step, I find the absolute difference between consecutive numbers, the above string becomes (4-1) (19-4) (19-3) (3-1) ⟹ 3 15 16 2 3 15 16 2 12 1 14 1 11 13 13 11 2 0 2 0 2 …
4
votes
2 answers
4
votes
5 answers

Why am I getting two solutions for this absolute value equation?

The question is "State with a reason whether there are any solutions to |12-5x| = -2x+3" I can clearly see there are no solutions when I graph it but I've learned to solve these questions doing the following: $|x| = y$ $x = y $ $x = -y $ When doing…
4
votes
3 answers

Absolute ratios

I'm curious about the following idea: suppose we have two values $P$ and $Q$, and the magnitude of the ratio $\frac{P}{Q}$ is between $0$ and $\infty$. If $P$ is smaller, then it's between $0$ and $1$. If $Q$ is smaller, it's between $1$ and…
1
2 3
17 18