1 Matrix norms

The norm of a square matrix A is a non-negative real number denoted A . There are several different ways of defining a matrix norm, but they all share the following properties:

  1. A 0 for any square matrix A .
  2. A = 0 if and only if the matrix A = 0 .
  3. k A = | k | A , for any scalar k .
  4. A + B A + B .
  5. A B A B .

The norm of a matrix is a measure of how large its elements are. It is a way of determining the “size" of a matrix that is not necessarily related to how many rows or columns the matrix has.

Key Point 6

Matrix Norm

The norm of a matrix is a real number which is a measure of the magnitude of the matrix.

Anticipating the places where we will use norms later, it is sufficient at this stage to restrict our attention to matrices with only real-valued entries. There is no need to consider complex numbers at this stage.

In the definitions of norms below we will use this notation for the elements of an n × n matrix A where

A = a 11 a 12 a 13 a 1 n a 21 a 22 a 23 a 2 n a 31 a 32 a 33 a 3 n a n 1 a n 2 a n 3 a n n

The subscripts on a have the r ow number first, then the c olumn number. The fact that

a r c

is reminiscent of the word “arc" may be a help in remembering how the notation goes.

In this Section we will define three commonly used norms. We distinguish them with a subscript. All three of them satisfy the five conditions listed above, but we will not concern ourselves with verifying that fact.

1.1 The 1-norm

A 1 = max 1 j n i = 1 n | a i j |

(the maximum absolute column sum). Put simply, we sum the absolute values down each column and then take the biggest answer.

Example 9

Calculate the 1-norm of A = 1 7 2 3 .

Solution

The absolute column sums of A are 1 + | 2 | = 1 + 2 = 3 and | 7 | + | 3 | = 7 + 3 = 10 . The larger of these is 10 and therefore A 1 = 10 .

Example 10

Calculate the 1-norm of B = 5 4 2 1 2 3 2 1 0 .

Solution

Summing down the columns of B we find that

B 1 = max 5 + 1 + 2 , 4 + 2 + 1 , 2 + 3 + 0 = max 8 , 7 , 5 = 8
Key Point 7

The 1-norm of a square matrix is the maximum of the absolute column sums.

(A useful reminder is that “1" is a tall, thin character and a column is a tall, thin quantity.)

1.2 The infinity-norm

A = max 1 i n j = 1 n | a i j |

(the maximum absolute row sum). Put simply, we sum the absolute values along each row and then take the biggest answer.

Example 11

Calculate the infinity-norm of A = 1 7 2 3 .

Solution

The absolute row sums of A are 1 + | 7 | = 8 and | 2 | + | 3 | = 5 . The larger of these is 8 and therefore A = 8 .

Example 12

Calculate the infinity-norm of B = 5 4 2 1 2 3 2 1 0 .

Solution

Summing along the rows of B we find that

B = max 5 + 4 + 2 , 1 + 2 + 3 , 2 + 1 + 0 = max 11 , 6 , 3 = 11
Key Point 8

The infinity-norm of a square matrix is the maximum of the absolute row sums.

(A useful reminder is that “ " is a short, wide character and a row is a short, wide quantity.)

1.3 The Euclidean norm

A E = i = 1 n j = 1 n ( a i j ) 2

(the square root of the sum of all the squares). This is similar to ordinary “Pythagorean" length where the size of a vector is found by taking the square root of the sum of the squares of all the elements.

Example 13

Calculate the Euclidean norm of A = 1 7 2 3 .

Solution

A E = 1 2 + ( 7 ) 2 + ( 2 ) 2 + ( 3 ) 2 = 1 + 49 + 4 + 9 = 63 7 . 937 .
Example 14

Calculate the Euclidean norm of B = 5 4 2 1 2 3 2 1 0 .

Solution

B E = 25 + 16 + 4 + 1 + 4 + 9 + 4 + 1 + 0 = 64 = 8.
Key Point 9

The Euclidean norm of a square matrix is the square root of the sum of all the squares of the elements.

Task!

Calculate the norms indicated of these matrices

A = 2 8 3 1 (1-norm) , B = 3 6 1 3 1 0 2 4 7 (infinity-norm) ,

C = 1 7 3 4 2 2 2 1 1 (Euclidean-norm) .

A 1 = max ( 2 + 3 , 8 + 1 ) = 9 ,

B = max ( 3 + 6 + 1 , 3 + 1 + 0 , 2 + 4 + 7 ) = 13 ,

C E = 1 2 + 7 2 + 3 2 + 4 2 + ( 2 ) 2 + ( 2 ) 2 + ( 2 ) 2 + ( 1 ) 2 + 1 2 = 89 9.434

1.4 Other norms

Any definition you can think of which satisifes the five conditions mentioned at the beginning of this Section is a definition of a norm. There are many many possibilities, but the three given above are among the most commonly used.