Criterion of removal of equations from overdetermined system

  • Thread starter lena
  • Start date
  • Tags
    System
In summary: Yes, the rows are being eliminated because the singular value of the matrix is decreasing when reducing the rows. The least squares approach would not necessarily result in the same solution.
  • #1
lena
2
0
Consider the problem of solving overdetermined system
Ax = b;

In the problem I am trying to solve (from the field of spectral unmixing) number of unknowns usually varies between N = 2 and 5 and the matrix A is typically 10 by N. However, now the choice of matrix A is fully user-dependent. (For information, it is a so called molar absorption matrix, which is populated with the absorption spectra with N columns corresponding to individual
absorbers and M rows corresponding to the optical wavelengths. Typical example of such matrix would be hemoglobin absorption spectra http://www.surgicalneurologyint.com/viewimage.asp?img=SurgNeurolInt_2010_1_1_75_73316_u2.jpg )

I envision some algorithm where I could decide which row of this matrix can be excluded and the system can still be solved.

Do you know if there is any criterion which tells me that removal of one row is less critical than removal of another for accuracy of solution?

Thank you!
Elena
 
Last edited by a moderator:
Physics news on Phys.org
  • #2
I'm sorry you are not generating any responses at the moment. Is there any additional information you can share with us? Any new findings?
 
  • #3
The only thing that comes to my mind is Gauss-Jordan elimination. If you have a 10 X 5 matrix, and use G-J to put the matrix in echelon form, if there are 5 nonzero rows, you will have a unique solution.
 
  • #4
Thanks for response, Mark44.
I hope it is applicable to the matrix A only, not augmented with the right-hand side A|b, because the ultimate goal of what I am trying to do is to avoid acquiring additional/excessive measurements in b.

What I recently read is that the minimal singular value of matrix A can be used as "indicator of stability" and when the smallest singular value is close to zero, matrix A becomes "unstable" and can loose rank. So the row whose removal results in the largest singular value (compared to removal of others) is the least-critical row and can be excluded.

Can anybody explain this criterion? why there is this interdependence between singular value and relevance of a particular row? and back to my initial post-perhaps there exist other mathematical criteria that have the same purpose?
Thanks!
 
  • #5
Yes, the vector b plays a role in whether there are solutions or not. Here's a simple example.
x + y = 2
x - y = 0
2x = 2

In augmented matrix form this would be
$$\begin{bmatrix} 1 & 1 & | & 2 \\ 1 & -1 & | & 0 \\ 2 & 0 & | & 2 \end{bmatrix} $$

After row reduction, this becomes
$$\begin{bmatrix} 1 & 1 & | & 2 \\ 0 & 1 & | & 1 \\ 0 & 0 & | & 0 \end{bmatrix} $$

The unique solution is x = 1, y = 1

The situation is different if we change one number in the last equation like so:
x + y = 2
x - y = 0
2x = 3

After row reduction, the reduced augmented matrix is:
$$\begin{bmatrix} 1 & 1 & | & 2 \\ 0 & 1 & | & 1 \\ 0 & 0 & | & -1/2 \end{bmatrix} $$
and there is no solution.

My knowledge of matrix condition numbers is pretty scant, so other than the simple examples I provided, I can't offer much more help than this.
 
  • #6
From what you wrote sounds like your matrix contains experimental data. Are you sure elimination of rows is the best approach? And not some application of the least squares method?
 

1. What does "overdetermined system" mean?

An overdetermined system is a set of equations that has more equations than unknown variables. This means that there are not enough unknowns to solve for all of the equations simultaneously.

2. Why would equations need to be removed from an overdetermined system?

In order for an overdetermined system to have a unique solution, the number of equations must match the number of unknown variables. If there are extra equations, they can cause inconsistencies and make it impossible to find a solution. Therefore, some equations may need to be removed to make the system solvable.

3. What is the criterion for removing equations from an overdetermined system?

The criterion for removing equations from an overdetermined system is that the equations must be linearly dependent. This means that one equation can be written as a combination of the other equations in the system. Removing these dependent equations will not change the overall solution of the system.

4. How do you determine if equations in an overdetermined system are linearly dependent?

To determine if equations in an overdetermined system are linearly dependent, you can perform row operations on the augmented matrix of the system. If a row of zeros is obtained, it indicates that the corresponding equation is linearly dependent on the other equations in the system.

5. Can equations be removed from an overdetermined system without changing the solution?

Yes, equations can be removed from an overdetermined system without changing the solution as long as those equations are linearly dependent on the other equations in the system. This means that the removed equations do not provide any new information and can be safely discarded.

Similar threads

  • Linear and Abstract Algebra
Replies
1
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
858
  • Calculus and Beyond Homework Help
Replies
1
Views
3K
  • Calculus and Beyond Homework Help
Replies
1
Views
2K
  • Linear and Abstract Algebra
Replies
7
Views
2K
  • Topology and Analysis
Replies
9
Views
2K
  • Calculus and Beyond Homework Help
Replies
4
Views
1K
Replies
2
Views
875
  • Advanced Physics Homework Help
Replies
7
Views
3K
  • Linear and Abstract Algebra
Replies
1
Views
2K
Back
Top