Find the Norm [[2,1],[-3,-1]]
Problem
Solution
Identify the type of norm to be calculated. Since no specific norm was requested (e.g.,
(L_1) (L_∞) , the Frobenius norm is the standard default for a matrix, which is the square root of the sum of the squares of all elements.Square each individual element of the matrix.
Sum the squared values together.
Take the square root of the resulting sum to find the Frobenius norm.
Final Answer
Want more problems? Check here!