Is It Possible to Solve These Nine Equations?

  • Context: High School 
  • Thread starter Thread starter alikthename
  • Start date Start date
Click For Summary

Discussion Overview

The discussion revolves around the possibility of solving a system of nine linear equations with nine variables. Participants explore the implications of having more variables than equations and the conditions under which solutions may or may not exist.

Discussion Character

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

Main Points Raised

  • One participant identifies the system as a set of linear equations and notes that having nine variables but only six equations suggests there may be no solutions or infinitely many solutions.
  • Another participant points out that adding more equations does not guarantee a solution, especially if the new equations are dependent on the existing ones.
  • Concerns are raised about the interpretation of results from an augmented matrix, with questions about the significance of coefficients being 1's or 0's.
  • Some participants discuss the implications of having duplicate equations within the system, which may affect the overall solvability.
  • A participant provides an arbitrary set of values for the variables that satisfy the equations, suggesting that solutions can exist depending on the choices made for certain variables.

Areas of Agreement / Disagreement

Participants express differing views on the existence of solutions, with some asserting that the system may not have a solution while others propose that solutions can be found under certain conditions. The discussion remains unresolved regarding the overall solvability of the system.

Contextual Notes

There are limitations in the discussion regarding the clarity of the augmented matrix setup and the interpretation of results. Some participants note that the presence of duplicate equations and the number of free variables complicate the analysis.

alikthename
Messages
2
Reaction score
0
Hi everybody.

Is it possible to solve this equation?

a+b+c = 59;
d+e+c = 52;
f+b+g = 95;
a+h+i = 84;
d+h+g = 75;
f+e+i = 97;
 
Mathematics news on Phys.org
What you have there is a system of linear equations.

Whether such systems have a solution is a well known problem. Students learn general methods for studying and solving such systems in their first linear algebra course.

Notice that you have 9 variables but only 6 equations. This means either there are no solutions, or there are infinitely many solutions.

To answer your question, you can try solving it. One way to do this would be to form an augmented matrix, and then use a method to get the matrix into reduced row echelon form. Many graphing calculators can do this for you, as well as other computer programs. It is also possible to do it by hand.
 
5 equations in 9 variables... you'll get rather a lot of free variables left in your solution. I note that the sixth equation is eliminated as (1)+(5)+(6) is the same as (2)+(3)+(4).
 
Thank you very much for answers.
Here is another point. Even if I make add up to these 6 equations another 3 and make it 9 equations like
a+b+c = 59 ;
d+e+c = 52 ;
f+b+g = 95 ;
a+h+i = 84 ;
d+h+g = 75 ;
f+e+i = 97 ;
f+c+d = 32 ;
a+h+i = 84 ;
g+e+b = 115;

Here is the result I get:
1 1 1 0
0 0 0 1
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0

Which if I get it right means "no solution"

Is that because I have 1's as coefficients? Or because I have 0's as coefficients for other variables?
 
alikthename said:
Is that because I have 1's as coefficients? Or because I have 0's as coefficients for other variables?

No, for example

a+b=1
b+c=2
a+c=3

has a nice solution of a=1, b=0, c=2 (despite using 1's and 0's for coefficients).

It is just that not every set of linear equations has a solution. This is not something for a short post on the forum. You may want to google for "system of linear equations", there are many pages that discuss properties of such systems and methods used to solving them.
 
alikthename said:
Thank you very much for answers.
Here is another point. Even if I make add up to these 6 equations another 3 and make it 9 equations like
a+b+c = 59 ;
d+e+c = 52 ;
f+b+g = 95 ;
a+h+i = 84 ;
d+h+g = 75 ;
f+e+i = 97 ;
f+c+d = 32 ;
a+h+i = 84 ;
g+e+b = 115;

Here is the result I get:
1 1 1 0
0 0 0 1
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0

Which if I get it right means "no solution"
It's hard to tell if you have it right because it is impossible to tell what you have done. For one thing you haven't said what your "result" means- you have not said what those "1"s and "0" in your array mean. I suspect that you set this system up as and augmented matrix and then row reduced but, because you have 9 unknowns in your equations, you should have 10 columns, one for each unknown and one for the right side.
Taking your three unknowns for this system to be "a", "b", and "c", those equations become
a+ b+ c 0 and 0= 1. Since that last equation is not true for any a, b, or c, there is no solution.

Is that because I have 1's as coefficients? Or because I have 0's as coefficients for other variables?
 
Last edited by a moderator:
alikthename said:
a+h+i = 84 ;

a+h+i = 84

Actually you still don't have 9 equations.
 
Your set of 9 equations - which as Borek says has a direct duplicate, never mind that for now - is encoded as a matrix equation like this:

[tex] \begin{pmatrix}<br /> 1 & 1 & 1 & 0 & 0 & 0 & 0 & 0 & 0\\<br /> 0 & 0 & 1 & 1 & 1 & 0 & 0 & 0 & 0\\<br /> 0 & 1 & 0 & 0 & 0 & 1 & 1 & 0 & 0\\<br /> 1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 1\\<br /> 0 & 0 & 0 & 1 & 0 & 0 & 1 & 1 & 0\\<br /> 0 & 0 & 0 & 0 & 1 & 1 & 0 & 0 & 1\\<br /> 0 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0\\<br /> 1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 1\\<br /> 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0 & 0\\<br /> \end{pmatrix}<br /> \begin{pmatrix} a\\b\\c\\d\\e\\f\\g\\h\\i\\ \end{pmatrix}<br /> =<br /> \begin{pmatrix} 59\\52\\95\\84\\75\\97\\32\\84\\115\\ \end{pmatrix}[/tex]

Start from there if you want to make any sense of what you have.
 
  • Like
Likes   Reactions: 1 person
Just to demonstrate that there are indeed solutions to your 9 equations:

a = 20 (arbitrary choice)
b = 20 (arbitrary choice)
c = 19
d = 5 (arbitrary choice)
e = 28
f = 8
g = 67
h = 3
i = 61

Due to the relationships between the equations, I can make any choices for a, b and d (for example) and still find solutions for the other six variables.
 

Similar threads

  • · Replies 35 ·
2
Replies
35
Views
4K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 21 ·
Replies
21
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K