42
$\begingroup$

Given a matrix, is the Frobenius norm of that matrix always equal to the 2-norm of it, or are there certain matrices where these two norm methods would produce different results?

If they are identical, then I suppose the only difference between them is the method of calculation, eh?

  • 1
    Ricket: Could you please give the precise definitions you are using (or precise references to these definitions)? The phrase "p-norm" for matrices is ambiguous, which is why I asked earlier. Many think of "2-norm" as meaning the operator norm when $M_n$ acts on $\mathbb{C}^n$ with Euclidean norm, hence Yuval's answer. I think I now know what you mean, but then your question is answered by the Wikipedia link, right?2011-04-15

3 Answers 3

38

There are three important types of matrix norms. For some matrix $A$

  • Induced norm, which measures what is the maximum of $\frac{\|Ax\|}{\|x\|}$ for any $x \neq 0$ (or, equivalently, the maximum of $\|Ax\|$ for $\|x\|=1$).

  • Element-wise norm, which is like unwrapping $A$ into a long vector, then calculating its vector norm.

  • Schatten norm, which measures the vector norm of the singular values of $A$.

So, to answer your question:

  • Frobenius norm = Element-wise 2-norm = Schatten 2-norm

  • Induced 2-norm = Schatten $\infty$-norm. This is also called Spectral norm.

So if by "2-norm" you mean element-wise or Schatten norm, then they are identical to Frobenius norm. If you mean induced 2-norm, you get spectral 2-norm, which is $\le$ Frobenius norm. (It should be less than or equal to)

As far as I can tell, if you don't clarify which type you're talking about, induced norm is usually implied. For example, in matlab, norm(A,2) gives you induced 2-norm, which they simply call the 2-norm. So in that sense, the answer to your question is that the (induced) matrix 2-norm is $\le$ than Frobenius norm, and the two are only equal when all of the matrix's eigenvalues have equal magnitude.

16

See Wikipedia for all definitions. Take this matrix: $ \begin{pmatrix} 2 & -1 \\ -1 & 2 \end{pmatrix} $ Its Frobenius norm is $\sqrt{10}$, but its eigenvalues are $3,1$ so its $2$-norm (or spectral radius) is $3$. The Frobenius norm is always at least as large as the spectral radius. The Frobenius norm is at most $\sqrt{r}$ as much as the spectral radius, and this is probably tight (see the section on equivalence of norms in Wikipedia).

Note that the Schatten $2$-norm is equal to the Frobenius norm.

  • 1
    Also, it is true that both bounds are tight: the former is attained by a matrix with all but one entries being zero; the latter is attained by the identity matrix.2011-04-18
1

The L2 (or L^2) norm is the Euclidian norm of a vector.

The Frobenius norm is the Euclidian norm of a matrix.