Linear Algebra & Matrices
Calculate various matrix norms including Frobenius, 1-norm, infinity norm, and 2-norm with detailed explanations and step-by-step solutions.
Enter matrix elements separated by spaces within rows and semicolons between rows
Practice with these common matrix norm calculation examples
Calculate the Frobenius norm of a simple 2×2 matrix
Type: frobenius
Matrix: 1 2; 3 4
Size: 2×2
Find the 1-norm (maximum column sum) of a 3×3 matrix
Type: oneNorm
Matrix: 1 -2 3; 4 5 -6; -7 8 9
Size: 3×3
Calculate the infinity norm (maximum row sum) of a matrix
Type: infinityNorm
Matrix: 2 -1 3; -4 5 1; 6 -2 7
Size: 3×3
Find the 2-norm (spectral norm) of a symmetric matrix
Type: twoNorm
Matrix: 3 1; 1 3
Size: 2×2