Matrix as a product of elementary matrices

Click For Summary
SUMMARY

The discussion centers on representing a given matrix as a product of elementary matrices through a series of row operations. The matrix in question is:

1 3 5
3 10 11
-2 -7 -7

After performing elementary row operations, the user attempted to derive the corresponding elementary matrices but encountered discrepancies in the final row of the product. Key corrections were identified, including the adjustment of row operation 7 to "row2 + 4row3" and the correct inverse for operation 2 as "1 0 0; 0 1 0; -2 0 1". These corrections are essential for accurate matrix representation.

PREREQUISITES
  • Understanding of elementary row operations in matrix algebra
  • Familiarity with elementary matrices and their properties
  • Proficiency in matrix multiplication
  • Experience using MATLAB for matrix computations
NEXT STEPS
  • Study the concept of elementary matrices and their inverses
  • Learn how to perform matrix multiplication in MATLAB
  • Review the process of reducing matrices to the identity matrix
  • Explore common pitfalls in matrix operations and how to avoid them
USEFUL FOR

Students and educators in linear algebra, mathematicians working with matrix theory, and anyone seeking to deepen their understanding of matrix operations and elementary matrices.

philnow
Messages
83
Reaction score
0

Homework Statement



Sorry for the double post, I couldn't re-edit the topic on my earlier post.

The assignment is to represent the following matrix as a product of elementary matrices:

1 3 5
3 10 11
-2 -7 -7

I reduced this matrix down to the identity matrix I using elementary row operations, which I recorded. I'll paste these here:

1)row 2 = row2 - 3row1
2)row 3 = row3 + 2row1
3)row 3 = row3 + row2
4)row 3 = -1*row3
5)row 1 = row1 - 3row2
6)row 1 = row1 - 17row3
7)row 2 = row2 - 4row3

The idea is now to represent each operation as an elementary matrix, and the product of the inverses of these matrices should give me my original matrix, correct?

1 0 0
3 1 0
0 0 1

1 0 0
0 1 0
0 -2 1

1 0 0
0 1 0
0 -1 1

1 0 0
0 1 0
0 0 -1

1 3 0
0 1 0
0 0 1

1 0 17
0 1 0
0 0 1

1 0 0
0 1 -4
0 0 1the above matrices are the inverses of these row operations in elementary matrix form (I THINK!)(1-7 top to bottom). Here is the problem... when I multiply these matrices out (using matlab) I'm getting the same answer every time:

1 3 5
3 10 11
0 -3 13

the last row is clearly off, while the rest is right on... This is driving me crazy! Any help?
 
Physics news on Phys.org
First, I reduced the matrix to identity matrix and spotted one error:
7) should be row2+4row3

Also, you got wrong the inverse matrix of the 2) elementary matrix

It should be:

1 0 0
0 1 0
-2 0 1
 
Thanks! How on Earth did I miss that initially...
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 7 ·
Replies
7
Views
2K
Replies
2
Views
2K
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 4 ·
Replies
4
Views
1K