0

I was looking at the proof for the 1-Norm of a matrix.

$A$ is any $m x n$ matrix and $||A||_1$ is the maximum column sum of $A$.

The proof goes like this:

Write $A$ in terms of its columns.

$A=[ a_1 | ... | a_n ]$, where each $a_j$ is an $m-$ vector. Consider the $1-$norm unit ball in $\mathbb{C}^n$ i.e. the set $\{ x \in \mathbb{C}^n : \sum_{j=1}^{n}|x_j| \leq 1 \}$.

Any vector $Ax$ in the image of this set satisfies

$||Ax||_1 = ||\sum_{j=1}^{n} x_j a_j ||_1 \leq \sum_{j=1}^{n} |x_j| ||a_j||_1 \leq \max_{1 \leq j \leq n} ||a_j||_1$.

I don’t understand how we achieved the last term, from the second last term.

Because we have $\sum_{j=1}^{n}|x_j| \leq 1$ I feel we should have, $\sum_{j=1}^{n} |x_j|.||a_j||_1 \leq \sum_{j=1}^{n} ||a_j||_1 \leq n.max_{1 \leq j \leq n} ||a_j||_1$. Where am I thinking wrong? If you could simplify the steps somehow, it’d be easier for me to see.

1 Answers1

1

In fact, the inequality you doubt is correct.

For, $$ \sum_{j=1}^n |x_j| \|a_j\| \le \sum_{j=1}^n |x_j| \max_l \|a_l\| $$ (since each $\|a_j\| \le \max_l \|a_l\|$), and hence $$ \sum_{j=1}^n |x_j| \|a_j\| \le \max_l \|a_l\| \overbrace{\sum_{j=1}^n |x_j|}^{\le1}. $$

Cloudscape
  • 5,124
  • 1
    Oh I see it now. I was confused because of the usage of the same variable $j$ in the $max$ and in the summation of $x_j ||a_j||$. Thanks! – user733666 May 01 '21 at 09:31