A system of equations with more unknowns than equations

In summary, a system of linear equations is considered underdetermined if there are more unknowns than equations. This can result in either a consistent or inconsistent system. Techniques for solving underdetermined systems include finding the least norm solution and using Cramer's rule, however these methods are only applicable to square matrices. For non-square matrices, the pseudoinverse may be used, but it depends on the inner product and there is no equivalent method.
  • #1
Liquid7800
76
0
Hello,

It is known that a system of linear equations is considered overdetermined if there are more equations than unknowns...

My question simply stated: is there a term to describe a system of linear equations if there are more equations than unknowns?
Google seems to struggle when my search query is
"A system of equations with more unknowns than equations" !

Ive recently encountered such a system and was curious to do more research into developing or looking into efficient algorithms for solving them---since my current method of solving them is a bit tedious.

Thanks for any information.
 
Physics news on Phys.org
  • #2
Underdetermined?
 
  • #3
hmm...Ive gotten some hits based off of using that terminology (interesting how it isn't mentioned in relation to an overdetermined sytem)

Some initial reading indicates:
Note that an underdetermined system might be either consistent or inconsistent, depending on the equations

You happen to know what consistent vs inconsistent means?
 
  • #4
"Consistent" means that there exist at least one solution. "Inconsistent" means there is no solution.

Examples with 3 unknowns and 2 equations are:
x+ y+ z= 2, x+ y- z= 4: consistent

and x+ y+ z= 2, x+ y+ z= 1: inconsistent

With x+ y+ z= 2 and x+ y- z= 4, I can add the equations to eliminate z and get 2x+ 2y= 6 so that x+ y= 3. I can choose any value for, say, x, then solve for y, then z. For example, if x= 1, then y= 3- 1= 2 so that the first equation becomes 1+ 2+ z= 3+ z= 2 and z= -1. x= 1, y= 2, z= -1 is a solution. But I could as well, take x= 2 and get y= 3- 2= 1, 3- z= 4, x= -1. In fact, (x, 3- x, -1) is a solution for x any real number.

With x+ y+ z= 2, x+ y+ z= 1, subtracting the second equation from the first, we get 0= 1 which is impossible. If fact the two left sides are identical. If x+ y+ z= 2, then it can't possibly be equal to 1 whatever x and y are!
 
  • #5
I have come across:
deficient for not enough equations
sufficient for just enough, and
redundant for too many

Is that helpful?
 
  • #6
Thank you very much for the terminology clarification, that's what I thought the terms meant---seems different sources use different ways to describe the same thing at times.

I appreciate the help...I would like to post my method here when I establish something to work these 'underdetermined' systems (not a proof mind you!) just to make sure I am not reinventing the wheel or anything (in addition to taking unnecessary steps)

thanks again for the help with all my questions
 
  • #7
Liquid7800 said:
Thank you very much for the terminology clarification, that's what I thought the terms meant---seems different sources use different ways to describe the same thing at times.

I appreciate the help...I would like to post my method here when I establish something to work these 'underdetermined' systems (not a proof mind you!) just to make sure I am not reinventing the wheel or anything (in addition to taking unnecessary steps)

thanks again for the help with all my questions

What you're attempting has probably already been shown in mxn matrices where m<n.
 
  • #8
A common technique of solving underdetermined systems is to find the least norm solution (i.e. the solution with the smallest euclidean norm). Perform a Google search on 'least norm solution'.
 
  • #9
@hovette
Thanks! I had not heard that term before although Least Squares has come up before and I have looked into that algorithm before---have not read through it yet but I am guessing thaey must be similar.

One method I was shown in n x n matices is to have your
variable matrix

and a

constant matrix
then find determinant of the variable matrix, and let it be 'k'

Next to get value of x replace 1st column with constant matrix -> and find the determinant, and let it be 'c', therefore the value of x is 'c/k' so on and so forth for y and z.

My question then is this method applicable to an n x m matrix? I have not taken linear algebra yet, but I do know than inverses do not exist for rectangular matrices (is this why pseduinverses are used?) but do determinants?

Thanks for the input...this is highly engaging and I enjoy coming across new tools
 
  • #10
The method you describe, which is known as Cramer's rule, follows from the adjugate formula for the inverse of a matrix; that is, A-1 = adj(A)/det(A). (You can prove Cramer's rule from this by expanding the top determinant along the column you replaced.) However, adjugates and determinants only exist for square matrices.

I don't know of any similar method for non-square matrices that is equivalent to using the pseudoinverse. In particular, the pseudoinverse depends on the inner product (since, after all, for an equation Ax = b the pseudoinverse gives the vector x = A+b which minimizes the norm of x or Ax - b, depending on whether the system is underdetermined or overdetermined, but x depends on the norm), so any such method must use the inner product somewhere.
 
  • #11
Thanks for giving a name to that method.

Consider then this system of 2 linear equations:


( (-2*sqrt(3) )/9 )x + z = 2*sqrt(3)

3*sqrt(2)y - 2x = 0


Here are presented two equations with 3 unknowns (x,y,z) is this system solvable using a matrix method? The reason being is because none of the equations have ALL 3 variables in them only two at a time. Is it a necessary condition that requires all three variables to be in the linear equations to be solved using a matrix algorithm?
Therefore does this constitute by def. a linear system of equations that is solvable using a known matrix method as we have been discussing above.
All example I've come across seem to have all variables present in each linear equation of the system.

Thanks for the discussion
 
  • #12
Of course. Just set 0s where the "missing" variables are.
 
  • #13
Liquid7800 said:
Thanks for giving a name to that method.

Consider then this system of 2 linear equations:


( (-2*sqrt(3) )/9 )x + z = 2*sqrt(3)

3*sqrt(2)y - 2x = 0


Here are presented two equations with 3 unknowns (x,y,z) is this system solvable using a matrix method? The reason being is because none of the equations have ALL 3 variables in them only two at a time. Is it a necessary condition that requires all three variables to be in the linear equations to be solved using a matrix algorithm?
Therefore does this constitute by def. a linear system of equations that is solvable using a known matrix method as we have been discussing above.
All example I've come across seem to have all variables present in each linear equation of the system.

Thanks for the discussion
This is equivalent to the matrix equation
[tex]\begin{bmatrix}-\frac{2\sqrt{3}}{9} & 0 & 1 \\ -2 & 3\sqrt{2} & 0\end{bmatrix}= \begin{bmatrix}2\sqrt{3}\\ 0\end{bmatrix}[/tex]
 
  • #14
Liquid7800 said:
Thanks for giving a name to that method.

Consider then this system of 2 linear equations:


( (-2*sqrt(3) )/9 )x + z = 2*sqrt(3)

3*sqrt(2)y - 2x = 0


Here are presented two equations with 3 unknowns (x,y,z) is this system solvable using a matrix method?

In this particular case, if we use the Ax=b method, where we then invert A (say with A-1 and premultiply b with this, then we must have that A has an inverse. But A here is not a square matrix, and only square matrices have inverses, so the matrix solutions will not prove fruitful.

On the other hand, for all my spoofery, I am trying to prove that the only solution to α1 -2α2 +3α3=0 and 2α23=0 is that α123=0. Can you offer any help?
 
  • #15
nando09 said:
I am trying to prove that the only solution to α1 -2α2 +3α3=0 and 2α23=0 is that α123=0. Can you offer any help?

This is not the only solution.
 

1. What does it mean when a system of equations has more unknowns than equations?

When a system of equations has more unknowns than equations, it means that there are not enough equations to uniquely determine the values of all the unknown variables in the system. This can result in multiple solutions or no solutions at all.

2. Can a system of equations with more unknowns than equations have a unique solution?

No, a system of equations with more unknowns than equations cannot have a unique solution. This is because there are not enough equations to fully determine the values of all the unknown variables in the system.

3. How do you solve a system of equations with more unknowns than equations?

A system of equations with more unknowns than equations is called an underdetermined system. To solve this type of system, you can use techniques such as substitution, elimination, or graphing to find a solution that satisfies all of the equations, or to find the range of possible solutions.

4. Can a system of equations with more unknowns than equations have no solutions?

Yes, it is possible for a system of equations with more unknowns than equations to have no solutions. This can occur when the equations are contradictory, meaning they cannot all be true at the same time.

5. Is it possible to have infinitely many solutions for a system of equations with more unknowns than equations?

Yes, it is possible for a system of equations with more unknowns than equations to have infinitely many solutions. This can occur when the equations are dependent, meaning they are essentially the same equation or one can be obtained by manipulating the others.

Similar threads

  • Linear and Abstract Algebra
Replies
11
Views
1K
  • Linear and Abstract Algebra
Replies
4
Views
1K
  • Linear and Abstract Algebra
Replies
9
Views
2K
Replies
2
Views
1K
  • Linear and Abstract Algebra
Replies
7
Views
1K
Replies
15
Views
6K
  • Linear and Abstract Algebra
Replies
4
Views
2K
  • Introductory Physics Homework Help
Replies
20
Views
942
  • Linear and Abstract Algebra
Replies
1
Views
2K
  • Programming and Computer Science
Replies
3
Views
228
Back
Top