$\boldsymbol{a} = [2, 1]$ can be regarded as a vector or a $1$x$2$ matrix. Compute the 1-norm, 2-norm, infinity norm for $a$ as a vector, also compute the matrix norm. Is the matrix norm equal to any of the vector norms? Which one? Repeat the question for $\boldsymbol{b} = [2, 1]^{T}$
The definition for the matrix norm is $$\Vert a \Vert = \max_{x:\Vert x \Vert = 1} \Vert ax \Vert \>$$
Hint:Use Cauchy-Schwarz inequalities
Here is what I have so far:
For both vectors $a$ and $b$, $1$-norm = $3$, $2$-norm = $\sqrt{5}$, infinity-norm = $2$
I'm having trouble calculating the matrix norm. The hint is using Cauchy-Schwarz inequalities,
$\Vert a \cdot x \Vert \leq \Vert a \Vert \Vert x \Vert \>$
Since $\Vert x\Vert=1$, I'm thinking there is an upper bound on $\Vert a \cdot x \Vert $, but how should I proceed after this?
Thanks for any help
Let $\mathrm A := \begin{bmatrix} 2 & 1\end{bmatrix}$. Hence,
$$\|\mathrm A\|_2 = \sigma_{\max} (\mathrm A) = \sqrt{\lambda_{\max} (\mathrm A \mathrm A^{\top})} = \sqrt{\lambda_{\max} (5)} = \sqrt{5}$$
Let $\mathrm B := \mathrm A^{\top}$. Hence,
$$\|\mathrm B\|_2 = \sigma_{\max} (\mathrm B) = \sqrt{\lambda_{\max} (\mathrm B^{\top} \mathrm B)} = \sqrt{\lambda_{\max} (\mathrm A \mathrm A^{\top})} = \|\mathrm A\|_2 = \sqrt{5}$$