9

I need to use $|a+b| \leq |a|+|b|$ to show that $||a|-|b|| \leq |a-b|$ .

I have tried to represent $||a|-|b||$ as $||a|+(-|b|)|$ , and then get $||a|+(-|b|)| \leq |a|+|-|b||$ , but that isn't leading me anywhere given $|a-b| \leq |a|+|b|$.

confused
  • 1,225

2 Answers2

6

The answer is quite easy:

$|a-b|+|b|\geq |a|$

$|b-a|+|a|\geq |b|$

Then $|a-b| \geq \max\{|a|-|b|,|b|-|a|\}=||a|-|b||$.

This argument is quite standard and applies in proving the continuity of norms.

Beni Bogosel
  • 23,381
4

HINT: supposing $ x \geq y$, consider that $x = x - y + y$.

  • Actually, I suppose that $|x| \geq |y|$. ;p – davidlowryduda Jun 10 '11 at 07:56
  • hm, so by triangle inequality, I get $|a-b+b| \leq |a-b|+|b|$ which simplifies into $|a|-|b| \leq |a-b|$, while I need to prove that $||a|-|b|| \leq |a-b|$ -- am I missing something? – confused Jun 10 '11 at 08:13
  • @confused: you're absolutely right. I let x > y, and you can generalize this (what if x < y? y = y - x + x, but that's the same case with different names, so it's a WLOG thing once you see it). Does that make sense? Alternatively, the way to take the maximum of $|x| - |y|$ and $|y| - |x|$ is to take its absolute value. – davidlowryduda Jun 10 '11 at 08:17
  • so by showing both cases I can take the abs. value of the equation, since the absolute value is the max, and we have shown that even the max of the expression obeys $\leq |a-b|$? Sorry, I am still trying to develop the intuition for abs. values. – confused Jun 10 '11 at 18:45
  • @confused: Yes, that's about right. – davidlowryduda Jun 10 '11 at 19:20