Built and fact-checked by the DocNectar team — see our editorial standards
Key Features
Instant Calculation
Get accurate results in real time with our optimized algorithm.
Mobile Friendly
Fully responsive design. Works on all devices & screen sizes.
Privacy Focused
Your data stays on your device. We don't store any inputs.
100% Free
No hidden costs. This tool is completely free forever.
A matrix norm is a single number measuring a matrix's overall "size" — useful for comparing matrices, bounding errors, or checking convergence in iterative algorithms. This tool computes the three most common norms at once.
How it works
The Frobenius norm is the square root of the sum of every entry squared (treating the matrix like one long vector). The 1-norm is the largest absolute column sum, and the infinity-norm is the largest absolute row sum.
- Click Calculate to see your results.
Examples
A simple 2x2 example
For [[1,2],[3,4]]: Frobenius norm = √(1+4+9+16) = √30 ≈ 5.477, 1-norm = max(1+3, 2+4) = 6, infinity-norm = max(1+2, 3+4) = 7.
Who should use it
- Linear algebra and numerical analysis coursework on matrix norms.
- Bounding error propagation in a numerical computation.
Industry applications
- Numerical analysis and scientific computing
- Linear algebra education
Advantages
- Computes all three common norms in a single pass.
- Works for any rectangular matrix, not just square ones.
Limitations
- Does not compute the induced 2-norm (spectral norm), which requires a full singular value decomposition — see the Condition Number calculator for singular-value-based analysis.
Common mistakes to avoid
- Confusing the 1-norm (max column sum) with the infinity-norm (max row sum) — they're easy to mix up since both are just sums of absolute values.
Best practices
- For a quick sanity check, the Frobenius norm should never be smaller than the largest single entry's absolute value.
Tips
- For a symmetric matrix, the 1-norm and infinity-norm are always equal, since rows and columns contain the same values.