Thread Closed

Gauss-Jordan Elimination Method Help!!!

 
Share Thread
Dec17-05, 02:48 PM   #1
 

Gauss-Jordan Elimination Method Help!!!


Hi, I'm having a problem solving the following using the Gauss-Jordan Elimination Method. I am wondering if someone can help me...
2x + 5y - z = -3
x - y + 4z = 20
3x + 2y - z = 3
i.e.
Code:
[ [2   5  -1  -3]
[1  -1   4  20]
[3   2  -1    3]]
I've tried solving it by... R1<-->R2, R2+(-1)R1, R3+(-3)R1, but I'm stuck with...
Code:
[ [1  -1   4    20]
[0   7   9   -43]
[0   5  -13 -57]]
I'm stuck because my textbook says we're not suppose to use fractions to solve it. I know I can do R3+(-5/7)R2, but that'd be using fractions. So I'm wondering if someone can lend me a hand and show me the correct way to complete this question! Thanks!
PhysOrg.com science news on PhysOrg.com

>> New language discovery reveals linguistic insights
>> US official: Solar plane to help ground energy use (Update)
>> Four microphones, computer algorithm enough to produce 3-D model of simple, convex room
Dec17-05, 05:24 PM   #2
 
For your first step of using matrixes,

R1[ 2 5 -1 | -3 ]
R2[ 1 -1 4 | 20 ]
R3[ 3 2 -1 | 3 ]

Second Step:

R1 [ 2 5 -1 | -3 ]
R1-2R2 [ 0 7 -9 | -43 ]
3R1-2R3[ 0 11 -1 | -15 ]

Third Step:

[ 2 5 -1 | -3 ]
[ 0 7 -9 | -43 ]
11R2 - 7R3[ 0 0 -92 | -385 ]
Dec17-05, 08:01 PM   #3
 
Quote by forevergone
[ 2 5 -1 | -3 ]
Do I not have to isolate a 1 in the top left hand corner?
i.e. [ 1 X X | X ] for the top row?

Quote by forevergone
3R1-2R3 || 11R2 - 7R3
Also isn't it not allowed to changed two rows at a time?
Dec17-05, 09:00 PM   #4
 

Gauss-Jordan Elimination Method Help!!!


Quote by heavyarms
Do I not have to isolate a 1 in the top left hand corner?
i.e. [ 1 X X | X ] for the top row?
Also isn't it not allowed to changed two rows at a time?
No. The way I learned to do Gauss-Jordan Elimination was to leave the 1st row alone. For the second and third row, you make the first terms zero and apply it to the rest of the numbers in that row. In the second step, you make the second number zero from the third row by subtracting it from the second row.
Dec17-05, 09:58 PM   #5
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Quote by forevergone
No. The way I learned to do Gauss-Jordan Elimination was to leave the 1st row alone. For the second and third row, you make the first terms zero and apply it to the rest of the numbers in that row. In the second step, you make the second number zero from the third row by subtracting it from the second row.
Do whatever is easiest, which is avoid fractions for the most part. Then just switch around the rows at the end. Same thing.
Dec17-05, 11:48 PM   #6
 
Quote by JasonRox
Do whatever is easiest, which is avoid fractions for the most part. Then just switch around the rows at the end. Same thing.
So as long as I obtain an answer, it is still correct no matter the method I use? If this is the case then my textbook is really odd... it states that (1,1) has to be either +/- 1 and that multiplication changes can only occur in one row when adding.
Dec18-05, 08:40 AM   #7
 
What is the full question that asks you to do for this set of matrixes?

Usually, matrixes are used to determine the intersection of 2/3 planes.
Dec18-05, 05:13 PM   #8
 
Quote by forevergone
What is the full question that asks you to do for this set of matrixes?

Usually, matrixes are used to determine the intersection of 2/3 planes.
The full question is as follows:

Solve the following system by the Gauss-Jordan elimination method.
2x + 5Y - Z = -3
X - Y + 4Z = 20
3X + 2Y - Z = 3
Indicate the row operation used in each step.
Dec22-05, 12:43 AM   #9
 
Quote by heavyarms
The full question is as follows:
Solve the following system by the Gauss-Jordan elimination method.
2x + 5Y - Z = -3
X - Y + 4Z = 20
3X + 2Y - Z = 3
Indicate the row operation used in each step.
Gauss Jordan elimination is not necessary for obtaining the values of the three variables. Gaussian elimination is quicker, which is only making the triangle of zeros in the bottom left corner of the augmented matrix. If you have a TI-83 calculator, you can find the values of the three variables by pressing 2nd x^-1, and edit matrix A accordingly. You can then quit out of the program, enter matrices again, go to math, rref (reduced row echelon form) and then select matrix A
Dec22-05, 01:09 AM   #10
 
Quote by Leonardo Sidis
Gauss Jordan elimination is not necessary for obtaining the values of the three variables. Gaussian elimination is quicker, which is only making the triangle of zeros in the bottom left corner of the augmented matrix. If you have a TI-83 calculator, you can find the values of the three variables by pressing 2nd x^-1, and edit matrix A accordingly. You can then quit out of the program, enter matrices again, go to math, rref (reduced row echelon form) and then select matrix A
Thank you for your suggestion. I've just tried it on my TI-83 Plus SE and it gave me..
[[1 0 0 3]
[0 1 0 -1]
[0 0 1 4]]
I know that is the correct answer, but the textbook requires me to show all the steps. The problem is I am stuck midway to obtaining the answer. (See the first post in this thread). As such, I'd be very grateful if you can lead me in the right direction. Thanks.
Dec23-05, 06:52 AM   #11
 
Quote by heavyarms
Thank you for your suggestion. I've just tried it on my TI-83 Plus SE and it gave me..
[[1 0 0 3]
[0 1 0 -1]
[0 0 1 4]]
I know that is the correct answer, but the textbook requires me to show all the steps. The problem is I am stuck midway to obtaining the answer. (See the first post in this thread). As such, I'd be very grateful if you can lead me in the right direction. Thanks.
Heavyarms, I'll try to do this at school and find how this works out. Your first row though, I'm not sure why but it should never ever change.
Dec23-05, 08:46 AM   #12
 
I threw the matrix in Matlab and got the same results using G-J Elimination:
1 0 0 3
0 1 0 -1
0 0 1 4
Dec25-05, 04:53 AM   #13
 
Quote by forevergone
Heavyarms, I'll try to do this at school and find how this works out. Your first row though, I'm not sure why but it should never ever change.
Thanks! Your help is very much appreciated.

BTW, Merry Christmas!!!
Dec26-05, 02:57 AM   #14
 
Do a rref on your calculator. i am sure gauss wouldn t be mad at your.
Thread Closed

Similar discussions for: Gauss-Jordan Elimination Method Help!!!
Thread Forum Replies
would you mind if you give me code for gauss elimination by C++ Linear & Abstract Algebra 1
elimination method to find the determinant Calculus & Beyond Homework 3
Gauss-jordon elimination Calculus & Beyond Homework 3
Gauss-Jordan Elimination Linear & Abstract Algebra 0