28

Is there any upper bound for an expression like:

$$\left( a_1 + a_2 + \cdots + a_n\right)^{1/2} ?$$

I need it for $n=3$. I know Hardy's inequality but it is for exponent greater than 1. Is there anything for the square root?

Later
  • 722
  • 2
  • 8
  • 24
Dann
  • 281

1 Answers1

53

Elementary proof from scratch: $$(\sqrt{a_1}+\sqrt{a_2})^2 = a_1+a_2+2\sqrt{a_1a_2}\ge a_1+a_2 $$ hence $$\sqrt{a_1+a_2}\le \sqrt{a_1}+\sqrt{a_2}$$ For general $n$, by induction: $$\sqrt{(a_1+\dots+a_{n-1})+a_n}\le \sqrt{a_1+\dots+a_{n-1}}+\sqrt{a_n} \le \sqrt{a_1}+\dots+\sqrt{a_n}$$


More generally, the function $f(x)= x^p$ is subadditive for $0<p<1$, meaning $f(a+b)\le f(a)+f(b)$. A fun way to prove this is $$ f(a+b)-f(b)=\int_b^{a+b} f'(x)\,dx = \int_0^{a} f'(x+b)\,dx\le \int_0^{a} f'(x)\,dx = f(a) $$ where the inequality holds because $f'$ is decreasing.

40 votes
  • 9,736
  • 5
    And what if, say, $a_1 < 0$? How does this affect your elementary proof in the first section? – Confounded Jul 10 '19 at 11:30
  • 2
    It wouldn't make much sense, since $\sqrt{a_1}$ would be an imaginary number, and we cannot talk about ordering the complex plane (we can't make sense of the symbol $<$). – Darsen Dec 17 '20 at 20:30