Find the Norm A=[[0.7,0.3],[0.6,0.4]]
Problem
Solution
Identify the type of norm to calculate. In linear algebra, if the specific norm is not specified, the induced
(L_∞) norm (maximum absolute row sum) or the(L_1) norm (maximum absolute column sum) are commonly used. We will calculate the(L_∞) norm, denoted as||*A|| Calculate the absolute sum of the first row.
Calculate the absolute sum of the second row.
Determine the maximum of these row sums.
Final Answer
Want more problems? Check here!