Simplify Your Engineering Calculations with Our Advanced Tools.
This Matrix Norm Calculator computes different types of matrix norms, which measure the size or magnitude of a matrix. You can calculate the Frobenius Norm, L1 Norm, L-Infinity Norm, and Spectral Norm. The calculator provides step-by-step details of the computation for better understanding.
The Frobenius Norm is the square root of the sum of the squares of all elements in the matrix:
Frobenius Norm = √(Σ |aᵢⱼ|²)
Steps:
Matrix:
[10 30]
[ 2 40]
Frobenius Norm = √(10² + 30² + 2² + 40²) = √2604 = 51.03
The L1 Norm (maximum column sum) is calculated by summing the absolute values of the elements in each column and finding the maximum sum:
L1 Norm = max(Σ |aᵢⱼ| across columns)
Steps:
Matrix:
[10 30]
[ 2 40]
Column Sums:
Column 1: |10| + |2| = 12
Column 2: |30| + |40| = 70
L1 Norm = max(12, 70) = 70
The L-Infinity Norm (maximum row sum) is the largest sum of absolute values in any row:
L-Infinity Norm = max(Σ |aᵢⱼ| across rows)
Steps:
Matrix:
[10 30]
[ 2 40]
Row Sums:
Row 1: |10| + |30| = 40
Row 2: |2| + |40| = 42
L-Infinity Norm = max(40, 42) = 42
The Spectral Norm is the square root of the largest eigenvalue of the matrix \(A^T A\):
Spectral Norm = √(λₘₐₓ)
Steps:
Matrix:
[10 30]
[ 2 40]
1. Compute A^T A:
[100 380]
[380 1600]
2. Eigenvalues:
λ₁ = 1624.4, λ₂ = 75.6
3. Spectral Norm = √(1624.4) = 40.31