Numerical Analysis/Matrix norm

< Numerical Analysis

Definitions

The term Norm is often used without additional qualification to refer to a particular type of norm such as a Matrix norm or a Vector norm. Most commonly the unqualified term Norm refers to flavor of Vector norm technically known as the L2 norm. This norm is variously denoted  \left \| x \right \|_2, \left \| x \right \|, or |x| and give the length of an n-vector  x=(x_1, x_2, ...x_n).

Norms provide vector spaces and their linear operators with measures of size, length and distance more general than those we already use routinely in everyday life.

Induced Norm

If vector norms on Km and Kn are given (K is field of real or complex numbers), then one defines the corresponding induced norm or operator norm on the space of m-by-n matrices as the following maxima:

 \begin{align}
\|A\| &= \max\{\|Ax\| : x\in K^n \mbox{ with }\|x\|= 1\} \\
&= \max\left\{\frac{\|Ax\|}{\|x\|} : x\in K^n \mbox{ with }x\ne 0\right\}.
\end{align}

If m = n and one uses the same norm on the domain and the range, then the induced operator norm is a sub-multiplicative matrix norm.

The operator norm corresponding to the p-norm for vectors is:

 \left \| A \right \| _p = \max \limits _{x \ne 0} \frac{\left \| A x\right \| _p}{\left \| x\right \| _p}.

In the case of p=1 and p=\infty, the norms can be computed as:

 \left \| A \right \| _1 = \max \limits _{1 \leq j \leq n} \sum _{i=1} ^m | a_{ij} |, which is simply the maximum absolute column sum of the matrix.
 \left \| A \right \| _\infty = \max \limits _{1 \leq i \leq m} \sum _{j=1} ^n | a_{ij} |, which is simply the maximum absolute row sum of the matrix.

Theorem: Induced Norms are really norms

If \left \| \cdot \right \|  is a vector norm on  \mathbb R,  then  \left \| A \right \|= \max_{ \left \| x \right \|=1} \left \| Ax \right \|  is a matrix norm.

Theorem: Induced norms are submultiplicative

All  induced norms are sub-multiplicative.

Derivation of  \| A  \| _\infty formula

If  A=  (a_{ij}) is an  {n\times n}  matrix, then  \left \| A \right \| _\infty = \max \limits _{1 \leq i \leq n} \sum _{j=1} ^n | a_{ij} |.

Example computing \|A\|_\infty

If

\mathbf{A} = \begin{bmatrix}
1 &  2 & -1\\ 0 &  3 & -1 \\ 5  &-1 &  1\\
\end{bmatrix},

find \|A\|_\infty.

Equivalence Of Norms

Equivalence Of Norms is defined as:

For any two norms ||·||α and ||·||β, we have
r\left\|A\right\|_\alpha\leq\left\|A\right\|_\beta\leq s\left\|A\right\|_\alpha
for some positive numbers r and s, for all matrices A in K^{m \times n}.  

This is true because the vector space K^{m \times n} has the finite dimension m \times n.

Examples of matrix norm equivalence


For matrix A\in\mathbb{R}^{m\times n} the following inequalities hold

Here, ||·||p refers to the matrix norm induced by the vector p-norm.

Example

We will show some of these norm equivalences for the matrix


\mathbf{A} = \begin{bmatrix}
1 &  -2 & 3\\ -4 &  5 & -6 \\ 7  &-8 &  9\\
\end{bmatrix}

Reference

This article is issued from Wikiversity - version of the Saturday, April 02, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.