How to Minimize the infinity norm of a matrix function

In summary, there is an unknown matrix V, whose size is (3*2). Minimizing the infinity norm of M+NVK and finding the V which can minimize the infinity norm of the matrix function is a difficult problem.
  • #1
rinna
1
0
Hi , I have been thinking of this question for a long time. Can someone give me an advice?

There are three known matrices M, N, and K.

M is a (4*4) matrix:

M=
[ 1 0 2 3;
2 1 3 5;
4 1 1 2;
0 3 4 3 ]

N is a (4*3) matrix:

N=
[ 3 0 4;
1 5 2;
7 1 3;
2 2 1 ]

K is a (2*4) matrix:

K=
[ 1 0 2 3;
2 1 3 5 ]There is an unknown matrix V, whose size is (3*2).

My question is:

How to minimize the infinity norm of M+NVK and find the V which can minimize the infinity norm of the matrix function? the question formulation is shown in the following:

infinity.jpg
 
Physics news on Phys.org
  • #2
Welcome to PF, Rinna! :smile:

I'm not aware of a method to solve this algebraically.
So I would solve it numerically.
You can do this with most programs that support minimization.

I just did that and found the minimum 5.389.
 
  • #3
You could get it down to 5.0 just by making each entry of V equal to zero.
 
  • #4
Stephen Tashi said:
You could get it down to 5.0 just by making each entry of V equal to zero.

With V=0 we get the infinity norm of matrix M, which is |2| + |1| + |3| + |5| = 11.
How did you get 5.0?
 
  • #5
I interpret the infinity norm to be max{|2|,|1|,|3|,|5|} = 5.
 
  • #7
I started looking on the web too. Planet Math (under "Matrix p-norm") defines the infinity norm to be the maximum of a set of sums. Each sum is the sum of the absolute values in a row of the matrix. I trust that reference the most.

Using any definitions we have encountered, the problem is at least as simple as solving a collection of linear programming problems. The objective function (the infinity norm) is going to involve one or more absolute values of linear functions of the entries of V. One may split the problem into cases by assuming a sign for each expression inside an absolute value sign. This produces linear constraints. For example, if we assume an expression is postiive then the linear function inside the absolute value sign is greater than zero. If there is a max{...} involved, we define cases by considering the possibility that each individual expression in the {...} is the max. This gives a set of inequalities that say that expression is greather than the others. These are also linear constraints.
 
Last edited:
  • #8
Stephen Tashi said:
I started looking on the web too. Planet Math (under "Matrix p-norm") defines the infinity norm to be the maximum of a set of sums. Each sum is the sum of the absolute values in a row of the matrix. I trust that reference the most.

I think you just agreed with me here.


Stephen Tashi said:
Using any definitions we have encountered, the problem is at least as simple as solving a collection of linear programming problems. The objective function (the infinity norm) is going to involve one or more absolute values of linear functions of the entries of V. One may split the problem into cases by assuming a sign for each expression inside an absolute value sign. This produces linear constraints. For example, if we assume an expression is postiive then the linear function inside the absolute value sign is greater than zero. If there is a max{...} involved, we define cases by considering the possibility that each individual expression in the {...} is the max. This gives a set of inequalities that say that expression is greather than the others. These are also linear contraints.

Yes, this would lead to 4 inequalities, each containing 4 absolute values, with 6 unknowns.
Since each absolute value can imply 2 signs, this results in 16 possibilities (linear expressions) for each inequality.

The resulting system looks to be prohibitively complex to solve for a mere human.
 
  • #9
I like Serena said:
I think you just agreed with me here.

I agree that I agreed with you!
 

1. How do I find the infinity norm of a matrix function?

To find the infinity norm of a matrix function, you can use the following formula: ||f|| = maxx∈D ||f(x)||, where D is the domain of the function and ||f(x)|| is the absolute value of each element in the matrix.

2. Why is minimizing the infinity norm of a matrix function important?

Minimizing the infinity norm of a matrix function is important because it helps to control the error in numerical computations. It also plays a key role in solving optimization problems and analyzing the stability of systems.

3. What strategies can I use to minimize the infinity norm of a matrix function?

One strategy is to use numerical methods such as gradient descent or Newton's method to find the minimum value of the function. Another strategy is to decompose the matrix function into simpler forms, such as diagonal or triangular matrices, which can make it easier to minimize the infinity norm.

4. Can the infinity norm of a matrix function be negative?

No, the infinity norm of a matrix function cannot be negative. It represents the maximum absolute value of the elements in the matrix, and absolute values are always positive.

5. Are there any applications of minimizing the infinity norm of a matrix function?

Yes, there are many applications of minimizing the infinity norm of a matrix function in various fields such as engineering, economics, and computer science. For example, it can be used to design stable control systems, optimize resource allocation, and improve image processing algorithms.

Similar threads

  • Linear and Abstract Algebra
Replies
8
Views
810
  • Linear and Abstract Algebra
Replies
5
Views
958
Replies
7
Views
845
  • Linear and Abstract Algebra
Replies
8
Views
895
  • Linear and Abstract Algebra
Replies
13
Views
1K
  • Linear and Abstract Algebra
Replies
8
Views
1K
  • Linear and Abstract Algebra
Replies
1
Views
816
Replies
6
Views
2K
  • Linear and Abstract Algebra
Replies
4
Views
1K
  • Linear and Abstract Algebra
Replies
8
Views
1K
Back
Top