New Reply

Reproduce a solution set to a linear system with 2 equations and 8 variables

 
Share Thread Thread Tools
Jun20-11, 07:01 PM   #1
 

Reproduce a solution set to a linear system with 2 equations and 8 variables


1. The problem statement, all variables and given/known data
Show how the following solution set: [x1,x2,x3,x4,x5,x6,x7,x8]^T =[1,-1,0,0,0,0,0,0]^T, [0,-1,1,0,0,0,0,0]^T,[0,0,0,1,-1,0,0,0]^T,[0,0,0,-1,0,1,0,0]^T,[0,0,0,0,-1,0,1,0]^T,[0,0,0,0,0,-1,0,1] is obtained from the two linear equations x1+x2+x3-x4-x5-x6-x7-x8=0 and x4+x5+x6+x7+x8=0.


2. Relevant equations
none given other than the two linear equations.


3. The attempt at a solution
The two equations can be put into a matrix A= [1,1,1,-1,-1,-1,-1,-1,]; [0,0,0,1,1,1,1,1]. Then row 2 is added to row 1 and the following solution is obtained (where v1, v2, .. v6 are arbitrary values) x1=-v1-v2; x2= v1, x3=v2, x4= -v3 -v4 -v5 -v6; x5=v3; x6=v4; x7=v5; x8=v6. But this corresponds to a solution set different than the one provided in the question: [x1,x2,x3,x4,x5,x6,x7,x8]^T = [-1,1,0,0,0,0,0,0]^T, [-1,0,1,0,0,0,0,0]^T, [0,0,0,-1,1,0,0,0]^T, [0,0,0,-1,0,1,0,0]^T, [0,0,0,-1,0,0,1,0]^T,[0,0,0,-1,0,0,0,1]^T.

So the problem is that I don't know how to reproduce the given solution set to the given linear equations. We were also told verbally that Excel can be used to help us with this problem set, but I don't see how that can help if I can't even manually reproduce this solution.
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> 'Whodunnit' of Irish potato famine solved
>> The mammoth's lament: Study shows how cosmic impact sparked devastating climate change
>> Curiosity Mars rover drills second rock target
Jun20-11, 07:09 PM   #2
 
....
Jun20-11, 08:47 PM   #3
 
Thanks Karen. I verified that the provided solution set is valid in that it satisfies the given linear equations. But I have no idea how to obtain this solution set if it were not already given. Is there something I'm missing?
Jun20-11, 10:05 PM   #4
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help

Reproduce a solution set to a linear system with 2 equations and 8 variables


Put the coefficient matrix in row reduction form:

[tex]\left(\begin{array}{cccccccc}
1&1&1&-1&-1&-1&-1&-1\\
0&0&0&1&1&1&1&1
\end{array}\right)[/tex]
and subtract the second row from the first to row reduce it:

[tex]\left(\begin{array}{cccccccc}
1&1&1&0&0&0&0&0\\
0&0&0&1&1&1&1&1
\end{array}\right)[/tex]

This tells you you can solve for x1 in terms of x2 and x3, and x4 in terms of x5 through x8. Write out the solution vector (x1,x2,...,x8) in terms of the free variables than express it as a sum of vectors each multiplied by one of the free variables. Your solution will pop out.
Jun20-11, 10:38 PM   #5
 
I tried writing out the solution in terms of the six free variables, but my solution set is different thant the one given (sorry for poor pensmanship). I don't understand how the given solution set uses no more than two free varaibles for each of (x1, ..., x8) when x4 depends on 4 other variables.
Attached Thumbnails
Linear Equations.jpg  
Jun21-11, 10:57 AM   #6
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Quote by LCKurtz View Post
Put the coefficient matrix in row reduction form:

[tex]\left(\begin{array}{cccccccc}
1&1&1&-1&-1&-1&-1&-1\\
0&0&0&1&1&1&1&1
\end{array}\right)[/tex]
and subtract the second row from the first to row reduce it:

[tex]\left(\begin{array}{cccccccc}
1&1&1&0&0&0&0&0\\
0&0&0&1&1&1&1&1
\end{array}\right)[/tex]

This tells you you can solve for x1 in terms of x2 and x3, and x4 in terms of x5 through x8. Write out the solution vector (x1,x2,...,x8) in terms of the free variables than express it as a sum of vectors each multiplied by one of the free variables. Your solution will pop out.
Quote by Alex1812 View Post
I tried writing out the solution in terms of the six free variables, but my solution set is different thant the one given (sorry for poor pensmanship). I don't understand how the given solution set uses no more than two free varaibles for each of (x1, ..., x8) when x4 depends on 4 other variables.
The two rows in the array represent the equations:

x1+x2+x3=0
x4+x5+x6+x7+x8=0

Solving these for x1 and x4 gives:

x1=-x2-x3
x4=-x5-x6-x7-x8

so

(x1,x2,x3,x4,x5,x6,x7,x8)
=(-x2-x3,x2,x3,-x5-x6-x7-x8,x5,x6,x7,x8)

Now separate that last vector into a sum with each vector having it's own xi factored out.

[Edit] I can't read your attachment at the moment; I hope I have addressed your question.
Jun21-11, 03:35 PM   #7
 
Thanks for your help. I got it now.
New Reply

Tags
back analysis, excel, linear algebra, solving equations, system of equations
Thread Tools


Similar Threads for: Reproduce a solution set to a linear system with 2 equations and 8 variables
Thread Forum Replies
Particular Solution to a System of First Order Linear Equations Calculus & Beyond Homework 1
Solution to system of linear equations in range of system matrix Calculus & Beyond Homework 2
The Solution Sets for linear equations in three variables Precalculus Mathematics Homework 3
Linear Algebra - System of 2 Equations with 3 Variables--possible? Calculus & Beyond Homework 4
Patterns of Solution Sets of a System of Linear Equations Linear & Abstract Algebra 2