How can I show that L2<=L1
$||x||_1\le \cdot ||x||_2$
and also
$\|x\|_2\leq \sqrt m\|x\|_{\infty}$
regarding the first part, can I say that:
$$ \sqrt{\sum\limits_{i=1}^n x^2 } \leq {\sum\limits_{i=1}^n {\sqrt x}^2 } $$
|
How can I show that L2<=L1 $||x||_1\le \cdot ||x||_2$ and also $\|x\|_2\leq \sqrt m\|x\|_{\infty}$ regarding the first part, can I say that: $$ \sqrt{\sum\limits_{i=1}^n x^2 } \leq {\sum\limits_{i=1}^n {\sqrt x}^2 } $$ |
|||||
|
|
I assume you are using finite dimensional vector spaces (looks like a familiar question from golub and loan). \begin{align} ||x||_2^{2}=\sum_{i=1}^{N}|x_i|^2\leq\left(\sum_{i=1}^{N}|x_i|^2+2*\sum_{i,j,i\neq j}|x_i||x_j|\right)=||x||_1^2 \end{align} This implies $||x||_2\leq ||x||_1$. Now \begin{align} ||x||_2^{2}=\sum_{i=1}^{N}|x_i|^2\leq N*\max_{i}(|x_i|^2)=N||x||_{\infty}^{2} \end{align} This implies $||x||_2\leq \sqrt{N}||x||_{\infty}$ |
|||||
|
|