A system of equations with more unknowns than equations

Click For Summary

Discussion Overview

The discussion revolves around the characterization and solution methods for systems of linear equations with more unknowns than equations, specifically focusing on terminology, consistency, and various solving techniques. The scope includes theoretical aspects, algorithmic approaches, and specific examples of underdetermined systems.

Discussion Character

  • Exploratory
  • Technical explanation
  • Conceptual clarification
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant inquires about terminology for systems with more unknowns than equations, suggesting the term "underdetermined."
  • Another participant explains the concepts of consistent and inconsistent systems, providing examples to illustrate these definitions.
  • Some participants discuss alternative terminology such as "deficient," "sufficient," and "redundant" to describe the relationship between equations and unknowns.
  • A method for solving underdetermined systems is mentioned, specifically finding the least norm solution.
  • One participant describes a method involving determinants for solving square matrices and questions its applicability to non-square matrices.
  • Another participant clarifies that Cramer's rule applies only to square matrices and discusses the limitations of using pseudoinverses for non-square matrices.
  • A participant presents a specific system of equations with three unknowns and questions whether it can be solved using matrix methods, noting that not all equations contain all variables.
  • Responses indicate that it is possible to solve such systems by setting missing variables to zero.
  • Another participant expresses interest in proving a specific solution to a different set of equations, leading to a statement that the proposed solution is not unique.

Areas of Agreement / Disagreement

Participants generally agree on the terminology of "underdetermined" for systems with more unknowns than equations. However, there are multiple competing views on the methods for solving such systems and the implications of using different mathematical approaches, leaving some questions unresolved.

Contextual Notes

Limitations include the dependence on definitions of consistency and the applicability of certain methods to non-square matrices. The discussion also highlights the variability in terminology across different sources.

Who May Find This Useful

This discussion may be useful for students and practitioners interested in linear algebra, particularly those exploring systems of equations and their solution methods.

Liquid7800
Messages
76
Reaction score
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
Underdetermined?
 
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?
 
"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!
 
I have come across:
deficient for not enough equations
sufficient for just enough, and
redundant for too many

Is that helpful?
 
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
 
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.
 
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'.
 
@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.
 

Similar threads

  • · Replies 29 ·
Replies
29
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 15 ·
Replies
15
Views
8K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K