What's the reason for this step in proof of reversed triangle inequality?

116 Views Asked by At

In proof of reversed triangle inequality $|x - y| \geq ||x| - |y||$, which is derived from triangle equality $|x + y| \leq |x| + |y|$ there is a step where triangle inequality is transformed into $$|(x-y)+ y| = |x| \leq |y| + |x - y|.$$

What is the logic behind that transformation? If I understood that correctly, we put $x = x - y$ in this case, to make $|x|$ term on LHS. This is also permissible to do for inequality, as inequality will remain the same.

Do I understand it correctly, or is there something else I do miss/do not understand?

3

There are 3 best solutions below

1
On BEST ANSWER

$$ |x| = |x| $$

$$ |x+0| = |x| $$

$$ |(x+y)-y| = |x| $$

There is no change of variables in that step; adding a $0$ to only one side is a viable way to prove many different theorems, such as this one.

0
On

Basically, start with |x| = |x + 0|. But 0 = y - y, so |x + 0| = |x + y - y| = |(x-y) + y|.

By the triangle inequality, |(x-y) + y| $\le$ |x-y| + |y|.

Think about it as an addition of 0 to x, rather than a substitution.

Is that what you were asking?

0
On

In fact, you can write this proof by changing variables (it's not the most common way, but if it helps, no problem): \begin{align*} X &= x - y \\ Y &= y \end{align*} Now TI with $X$ and $Y$ gives: \begin{align*} |X + Y| &\leqslant |X| + |Y| \\ |(x-y)+y | &\leqslant |x-y| + |y|\\ |x| &\leqslant |x-y| + |y|\\ \end{align*} And after that : $$ |x| - |y| \leqslant |x-y| $$

Etc.