Norm

Matrix norms induced by vector p-norms (SymPy, WMA)


Norm[m, p]

computes the p-norm of matrix m.

Norm[m]

computes the 2-norm of matrix m.

The Norm of of a vector is its Euclidean distance:

By default, 2-norm is used for vectors, but you can be explicit:

The 1-norm is the sum of the values:

For complex numbers, Norm[z] is Abs[z]:

So the norm is always real, even when the input is complex.

Norm[m,“Frobenius”] gives the Frobenius norm of m:

Curl