Call for help in finding approximate inverse matrix

In summary, Office_Shredder said that although finding a matrix S such that SA = In×n does not exist, there are known algorithms that can calculate x assuming it has certain structures (such as sparsity) that images typically satisfy or come close to satisfying in the right basis.
  • #1
genxium
141
2
I'm looking for solutions to this problem:

Matrices A(m,n) and B(n,m) satisfy AB=I(m,m) where n isn't equal to m.

Can I find a matrix S(m,n) such that SA=I(n,n) or SA approximates I(n,n)?

By approximate I don't have preferred definition, hence any suggestion is welcome!
 
Physics news on Phys.org
  • #2
From the first line I'm assuming that m<n. In this case no as the product of matrices has rank no larger than the rank of any invididual matrix, so SA can have rank no larger than m. In particular I(n,n) has rank n which is too large.
 
  • #3
Yes that's why I say approximate, I'm interesting in looking for an approximate & numerical solution to this problem.
 
  • #4
You can find a matrix S such that SA is diagonal with m 1's and the rest 0 on the diagonal, do you consider that approximate?

It would help if you described why you want to find such a matrix S.
 
  • #5
Uhm... I'm afraid not, because I would like to use this result to perform image sequence compression & recovery, thus in practice m will be small (I'm talking about Principal Components actually). Can I get all positive elements in the diagonal for the product matrix?
 
  • #6
You can basically pick S to get any nxn rank m matrix. So you could have a matrix that has all 1's everywhere for example, but I'm guessing that's not what you want either.

You could do something like find S such that

[tex]||SA-I||^2_{F} [/tex]
the sum of squares of the difference of the entries is minimal. This is a least square problem so it is easily solved numerically and probably algebraically as well. I would assume that S is the pseud-inverse of A in this case because that's always the answer.
 
  • #7
I do think this approach is on the right track, yet I just wondering "how approximate" I can get if using least square. Does anyone ever do some research works on this problem and hold state-of-the-art conclusion?
 
  • #8
Given than m<n, you *cannot* find a matrix S such that SA = In×n. Such a matrix does not exist.
 
  • #9
Thinking about it a bit more I realize that you are likely trying to do compressed sensing:
http://en.wikipedia.org/wiki/Compressed_sensing

where what you really want to do is given y = Ax solve for what x is. There are known algorithms for calculating x assuming it has certain structures (such as sparsity) that images typically satisfy or come close to satisfying in the right basis.

The typical setup is a bit different than principal component analysis - once you've done principal component analysis the whole point is that the extra information is noise and you are totally throwing it away - there is no way to recover the information and there is no reason you should want to recover the information. Compressed sensing works a bit different - you take a (typically) random projection of the data to get a lower dimension, and then the inversion problem is finding some principal components under a certain basis (which is usually not the standard basis as that would give weird looking stuff) that would project down to give the same projection as your original one.
 
  • #10
D H said:
Given than m<n, you *cannot* find a matrix S such that SA = In×n. Such a matrix does not exist.

Yes you're right, actually I'm looking for some numerically approximate methods to handle this problem.
 
  • #11
Office_Shredder said:
Thinking about it a bit more I realize that you are likely trying to do compressed sensing:
http://en.wikipedia.org/wiki/Compressed_sensing

where what you really want to do is given y = Ax solve for what x is. There are known algorithms for calculating x assuming it has certain structures (such as sparsity) that images typically satisfy or come close to satisfying in the right basis.

The typical setup is a bit different than principal component analysis - once you've done principal component analysis the whole point is that the extra information is noise and you are totally throwing it away - there is no way to recover the information and there is no reason you should want to recover the information. Compressed sensing works a bit different - you take a (typically) random projection of the data to get a lower dimension, and then the inversion problem is finding some principal components under a certain basis (which is usually not the standard basis as that would give weird looking stuff) that would project down to give the same projection as your original one.

Thank you very much Office_Shredder! You saved my day! The link you gave is tackling exact the problem I met. I'm reading it and seems it could provide useful information for my project :)
 

Related to Call for help in finding approximate inverse matrix

What is the purpose of finding an approximate inverse matrix?

The purpose of finding an approximate inverse matrix is to perform operations on a matrix that do not have a perfect inverse. An approximate inverse matrix allows for some level of error in the calculations, making it a useful tool for solving complex equations and problems.

What are the common methods for finding an approximate inverse matrix?

The most commonly used methods for finding an approximate inverse matrix include the Gauss-Jordan elimination method, the LU decomposition method, and the iterative method. These methods involve a series of mathematical operations to manipulate the original matrix and approximate its inverse.

How can I check if my approximate inverse matrix is accurate?

To check the accuracy of your approximate inverse matrix, you can multiply it by the original matrix. The resulting product should be an identity matrix, with 1's along the main diagonal and 0's everywhere else. If this is not the case, you may need to adjust the level of approximation or try a different method.

What factors can affect the accuracy of an approximate inverse matrix?

The accuracy of an approximate inverse matrix can be affected by the method used, the level of approximation, and the size and complexity of the original matrix. In some cases, rounding errors or computer precision can also impact the accuracy of the approximate inverse.

Are there any limitations to using an approximate inverse matrix?

Yes, there are some limitations to using an approximate inverse matrix. It may not always be possible to find an accurate approximate inverse, and even when it is, there may be some loss of precision in the calculations. Additionally, the use of an approximate inverse may not be suitable for certain types of equations or problems.

Similar threads

Replies
34
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
675
  • Linear and Abstract Algebra
Replies
2
Views
2K
  • Linear and Abstract Algebra
Replies
8
Views
909
  • Linear and Abstract Algebra
Replies
4
Views
985
  • Linear and Abstract Algebra
Replies
2
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
755
  • Linear and Abstract Algebra
Replies
8
Views
1K
  • Linear and Abstract Algebra
Replies
1
Views
1K
Replies
3
Views
1K
Back
Top