These norms treat an m \times n matrix as a vector of size m \cdot n , and use one of the familiar vector norms. For example, using the
p-norm for vectors, , we get: :\| A \|_{p,p} = \| \mathrm{vec}(A) \|_p = \left( \sum_{i=1}^m \sum_{j=1}^n |a_{ij}|^p \right)^{1/p} This is a different norm from the induced
p-norm (see above) and the Schatten
p-norm (see below), but the notation is the same. The special case
p = 2 is the Frobenius norm, and
p = ∞ yields the maximum norm.
and norms Let (a_1, \ldots, a_n) be the dimension columns of matrix A. From the original definition, the matrix A presents data points in an -dimensional space. The L_{2,1} norm is the sum of the Euclidean norms of the columns of the matrix: :\| A \|_{2,1} = \sum_{j=1}^n \| a_{j} \|_2 = \sum_{j=1}^n \left( \sum_{i=1}^m |a_{ij}|^2 \right)^{1/2} The L_{2,1} norm as an
error function is more robust, since the error for each data point (a column) is not squared. It is used in
robust data analysis and
sparse coding. For , the L_{2,1} norm can be generalized to the L_{p,q} norm as follows: :\| A \|_{p,q} = \left(\sum_{j=1}^n \left( \sum_{i=1}^m |a_{ij}|^p \right)^{\frac{q}{p}}\right)^{\frac{1}{q}}.
Frobenius norm When for the L_{p,q} norm, it is called the
Frobenius norm or the
Hilbert–Schmidt norm, though the latter term is used more frequently in the context of operators on (possibly infinite-dimensional)
Hilbert space. This norm can be defined in various ways: :\|A\|_\text{F} = \sqrt{\sum_{i}^m\sum_{j}^n |a_{ij}|^2} = \sqrt{\operatorname{trace}\left(A^* A\right)} = \sqrt{\sum_{i=1}^{\min\{m, n\}} \sigma_i^2(A)}, where the
trace is the sum of diagonal entries, and \sigma_i(A) are the
singular values of A. The second equality is proven by explicit computation of \mathrm{trace}(A^*A). The third equality is proven by
singular value decomposition of A, and the fact that the trace is invariant under circular shifts. The Frobenius norm is an extension of the Euclidean norm to K^{n \times n} and comes from the
Frobenius inner product on the space of all matrices. The Frobenius norm is sub-multiplicative and is very useful for
numerical linear algebra. The sub-multiplicativity of Frobenius norm can be proved using the
Cauchy–Schwarz inequality. In fact, it is more than sub-multiplicative, as \|AB\|_F \leq\|A\|_{op}\|B\|_Fwhere the operator norm \|\cdot\|_{op} \leq \|\cdot\|_{F}. Frobenius norm is often easier to compute than induced norms, and has the useful property of being invariant under
rotations (and
unitary operations in general). That is, \|A\|_\text{F} = \|AU\|_\text{F} = \|UA\|_\text{F} for any unitary matrix U. This property follows from the cyclic nature of the trace (\operatorname{trace}(XYZ) =\operatorname{trace}(YZX) = \operatorname{trace}(ZXY)): :\|AU\|_\text{F}^2 = \operatorname{trace}\left( (AU)^{*}A U \right) = \operatorname{trace}\left( U^{*} A^{*}A U \right) = \operatorname{trace}\left( UU^{*} A^{*}A \right) = \operatorname{trace}\left( A^{*} A \right) = \|A\|_\text{F}^2, and analogously: :\|UA\|_\text{F}^2 = \operatorname{trace}\left( (UA)^{*}UA \right) = \operatorname{trace}\left( A^{*} U^{*} UA \right) = \operatorname{trace}\left( A^{*}A \right) = \|A\|_\text{F}^2, where we have used the unitary nature of U (that is, U^* U = U U^* = \mathbf{I}). It also satisfies :\|A^* A\|_\text{F} = \|AA^*\|_\text{F} \leq \|A\|_\text{F}^2 and :\|A + B\|_\text{F}^2 = \|A\|_\text{F}^2 + \|B\|_\text{F}^2 + 2 \operatorname{Re} \left( \langle A, B \rangle_\text{F} \right), where \langle A, B \rangle_\text{F} is the
Frobenius inner product, and Re is the real part of a complex number (irrelevant for real matrices)
Max norm The
max norm is the elementwise norm in the limit as goes to infinity: : \|A\|_{\max} = \max_{i, j} |a_{ij}|. This norm is not
sub-multiplicative; but modifying the right-hand side to \sqrt{m n} \max_{i, j} \vert a_{i j} \vert makes it so. Note that in some literature (such as
Communication complexity), an alternative definition of max-norm, also called the \gamma_2-norm, refers to the factorization norm: : \gamma_2(A) = \min_{U,V: A = UV^T} \| U \|_{2,\infty} \| V \|_{2,\infty} = \min_{U,V: A = UV^T} \max_{i,j} \| U_{i,:} \|_2 \| V_{j,:} \|_2 ==Schatten norms==