Matrix norm in Banach space

In summary, a matrix norm in Banach space is a function that assigns a non-negative value to a matrix and satisfies certain properties such as positivity, homogeneity, and the triangle inequality. It plays a crucial role in various mathematical and scientific fields, including linear algebra, functional analysis, and numerical analysis. The calculation of matrix norm depends on the type of norm being used, and some common types include the operator norm, Frobenius norm, and spectral norm. Important properties of matrix norm include positivity, homogeneity, submultiplicativity, and the triangle inequality. This concept is closely related to other mathematical concepts such as vector norms, metric spaces, and topological spaces, and is often used in theorems and results in linear algebra
  • #1
kalish1
99
0
How can I calculate the following matrix norm in a Banach Space:

$$
A=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix}
?$$

I have tried $$\|A\|=\sup\limits_{\|x\|=1}\|Az\|$$

and then did $$Az=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix} \cdot \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 5x-2y \\ x-y \end{pmatrix}.$$

Now, how can I maximize the function $\|Az\|$? I'm not sure.

The norm is not specified in the problem. Should I just go with the square root of the sum of the squares of the compoments of Az, i.e. maximize $\sqrt{(5x-2y)^2+(x-y)^2}$ given the constraint $x^2+y^2=1$? Or should I maximize $\{{(5x-2y)^p+(x-y)^p}\}^{1/p}$ given the constraint $x^2+y^2=1$?

Any help would be appreciated.

I have crossposted this question here: calculus - Matrix norm in Banach space - Mathematics Stack Exchange
 
Physics news on Phys.org
  • #2
If you want to calculate 2-norm,

(a) easy way I: use software such as Matlab;)

(b) easy way II: use \(\displaystyle \sqrt{\text{sup}(\lambda)}\), where \(\displaystyle \lambda\) is eigenvalue of \(\displaystyle A^TA\).

(c) hard way: Let \(\displaystyle z=[x\text{ }y]^T\) be unit vector. You need to maximize \(\displaystyle \parallel Az\parallel_2^2=z^TA^TAz\), subject to \(\displaystyle \parallel z\parallel_2^2=z^Tz=1\). By Lagrange multiplier method, it is to solve equations \(\displaystyle \bigtriangledown_z (z^TA^TAz-\lambda (z^Tz-1))=0\) and \(\displaystyle z^Tz=1\) (actually, it's not a typical optimization problem, but we can still do it like this, why?). At last, we have \(\displaystyle A^TAz=\lambda z\). \(\displaystyle \lambda\) is what easy way II speaks of.
 
Last edited:
  • #3
kalish said:
How can I calculate the following matrix norm in a Banach Space:

$$
A=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix}
?$$

I have tried $$\|A\|=\sup\limits_{\|x\|=1}\|Az\|$$

and then did $$Az=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix} \cdot \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 5x-2y \\ x-y \end{pmatrix}.$$

Now, how can I maximize the function $\|Az\|$? I'm not sure.

The norm is not specified in the problem. Should I just go with the square root of the sum of the squares of the compoments of Az, i.e. maximize $\sqrt{(5x-2y)^2+(x-y)^2}$ given the constraint $x^2+y^2=1$? Or should I maximize $\{{(5x-2y)^p+(x-y)^p}\}^{1/p}$ given the constraint $x^2+y^2=1$?

Any help would be appreciated.

I have crossposted this question here: calculus - Matrix norm in Banach space - Mathematics Stack Exchange

Since you are taking the sup of non-negative numbers, we may as well maximise $(5x-2y)^2+(x-y)^2$ subject to $x^2+y^2=1$ and then take square root at the end. The condition implies $x=cos{\alpha}$ and $y=sin{\alpha}$ for some ${\alpha}$. Rewriting $(5x-2y)^2+(x-y)^2$ using that, its obvious that the max occurs when $cos{\alpha}$ is positive and $sin{\alpha}=-cos{\alpha}$. So $(5x-2y)^2+(x-y)^2=6.27$ to 3.s.f. Square rooting gives the norm as approximately 2.5.
 
  • #4
kalish said:
How can I calculate the following matrix norm in a Banach Space:

$$
A=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix}
?$$

I have tried $$\|A\|=\sup\limits_{\|x\|=1}\|Az\|$$

and then did $$Az=\begin{pmatrix}
5 & -2 \\
1 & -1 \\
\end{pmatrix} \cdot \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 5x-2y \\ x-y \end{pmatrix}.$$

Now, how can I maximize the function $\|Az\|$? I'm not sure.

The norm is not specified in the problem. Should I just go with the square root of the sum of the squares of the compoments of Az, i.e. maximize $\sqrt{(5x-2y)^2+(x-y)^2}$ given the constraint $x^2+y^2=1$? Or should I maximize $\{{(5x-2y)^p+(x-y)^p}\}^{1/p}$ given the constraint $x^2+y^2=1$?

Any help would be appreciated.

I have crossposted this question here: calculus - Matrix norm in Banach space - Mathematics Stack Exchange
There are many different norms for a matrix considered as an operator on a Banach space. If you want the operator norm of $A$ as an operator on 2-dimensional Euclidean space then the easiest way to calculate it is by using the C*-identity $\|A\|^2 = \|A^*A\|$, where $A^*$ is the Hermitian adjoint of $A$. In this case, $A^*A = \begin{bmatrix}5&1 \\-2&-1 \end{bmatrix} \begin{bmatrix}5&-2 \\1&-1 \end{bmatrix} = \begin{bmatrix}26&-11 \\-11&5 \end{bmatrix}.$ Since $A^*A$ is a positive matrix, its norm will be its largest eigenvalue, which you can find in the usual way by solving the quadratic equation $\det(A^*A - \lambda I) = 0.$ Then take the square root to get $\|A\|.$

Edit. I hadn't noticed that stainburg already suggested this method.
 
Last edited:
  • #5


I can provide some guidance on how to approach this problem. First, it is important to understand the concept of a matrix norm in a Banach space. A matrix norm is a way to measure the size or magnitude of a matrix in a vector space. In a Banach space, the matrix norm is defined as the supremum (or maximum) of the norm of all possible vectors that can be obtained by multiplying the matrix with a unit vector. In simpler terms, it is the maximum value that the matrix can "stretch" a unit vector to.

Now, to calculate the matrix norm of the given matrix A, we can follow the steps provided in the question. First, we need to find the norm of Az, which is the result of multiplying A with a unit vector. As mentioned in the question, this can be done by finding the square root of the sum of squares of the components of Az. However, this is not the only way to define a matrix norm. Other common norms include the maximum absolute value of the components of Az and the sum of absolute values of the components of Az.

Once we have the norm of Az, we need to find the maximum value of this norm for all possible unit vectors. In this case, since the unit vectors are constrained to have a norm of 1, we can use techniques from calculus to find the maximum value. This involves setting up and solving an optimization problem, where we maximize the norm of Az subject to the constraint that the norm of the unit vector is 1. This can be done by finding the critical points of the function and evaluating them at the endpoints of the constraint.

In summary, to calculate the matrix norm of A in a Banach space, we need to find the norm of Az (the result of multiplying A with a unit vector) and then maximize this value over all possible unit vectors. This can be done by setting up and solving an optimization problem. The specific norm used in the calculation will depend on the definition given in the problem.
 

1. What is a matrix norm in Banach space?

A matrix norm in Banach space is a way to measure the size or magnitude of a matrix. It is a function that assigns a non-negative value to a matrix and satisfies certain properties such as positivity, homogeneity, and the triangle inequality.

2. Why is matrix norm important in Banach space?

Matrix norm plays a crucial role in many mathematical and scientific fields, including linear algebra, functional analysis, and numerical analysis. It allows us to study the properties of matrices and their behavior under operations such as addition, multiplication, and inversion. It also helps in solving systems of linear equations and analyzing the convergence of iterative methods.

3. How is matrix norm calculated in Banach space?

The calculation of matrix norm in Banach space depends on the type of norm being used. Some common types of matrix norm are the operator norm, Frobenius norm, and spectral norm. The calculation of each of these norms involves different mathematical formulas and techniques, but they all aim to measure the size of a matrix in some way.

4. What are the properties of matrix norm in Banach space?

Some important properties of matrix norm in Banach space include positivity, homogeneity, submultiplicativity, and the triangle inequality. These properties ensure that the norm is a valid measure of the size of a matrix and behaves consistently under different operations. They also allow us to prove useful theorems and make important conclusions about matrices and their behavior.

5. How does matrix norm in Banach space relate to other concepts in mathematics?

Matrix norm in Banach space is closely related to other concepts in mathematics, such as vector norms, metric spaces, and topological spaces. In fact, the definition of matrix norm is often based on the properties of vector norms. Additionally, many theorems and results in linear algebra and functional analysis involve the use of matrix norms and their properties.

Similar threads

  • Topology and Analysis
Replies
4
Views
758
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
95
  • Math POTW for Graduate Students
Replies
1
Views
468
  • Calculus and Beyond Homework Help
Replies
6
Views
304
  • Topology and Analysis
Replies
12
Views
3K
Replies
2
Views
422
  • Advanced Physics Homework Help
Replies
8
Views
745
  • Advanced Physics Homework Help
Replies
9
Views
876
  • Linear and Abstract Algebra
Replies
9
Views
2K
Back
Top