Calculate different matrix norms and compare how each norm measures matrix size.
Last updated: June 2026 | By Patchworkr Team
A matrix norm assigns a non-negative size to a matrix. Different norms emphasize different properties, such as total energy, maximum column sum, maximum row sum, or the dominant singular value.
For [[1, 2], [3, 4]], the Frobenius norm is sqrt(30).
Can a matrix norm be negative?
No. By definition, matrix norms are always non-negative.
What is the infinity norm?
It is the largest absolute row sum of the matrix.
Can I use decimals?
Yes. Any finite real matrix entries are accepted.
What if a cell is blank?
Blank cells are rejected instead of being silently converted to zero.
Related Tools
Calculate adjoint matrix.
Find angle between vectors.
Find characteristic polynomial.
Cholesky factorization.
Expand determinant by cofactors.
Calculate cofactor matrix.