How Do Elementary Matrices Determine Matrix Multiplication Order?

  • Thread starter Thread starter brushman
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on the use of elementary matrices E21, E31, and E32 to transform the matrix A into triangular form U through matrix multiplication. The correct order of multiplication is crucial, as it follows the row reduction algorithm, which dictates that operations must be performed column by column. The first operation involves E21 to eliminate the entry in the 2,1 position, followed by E31 and E32. The series of elementary matrices must be applied in the same order as the corresponding row operations to achieve the desired triangular form.

PREREQUISITES
  • Understanding of elementary matrices and their role in matrix operations
  • Familiarity with row reduction techniques for matrices
  • Knowledge of matrix multiplication and its properties
  • Basic linear algebra concepts, including triangular and diagonal matrices
NEXT STEPS
  • Study the process of row reduction in detail, focusing on Gaussian elimination
  • Learn how to construct elementary matrices for various row operations
  • Explore the implications of matrix multiplication order on the final result
  • Investigate the relationship between elementary matrices and the identity matrix
USEFUL FOR

Students and educators in linear algebra, mathematicians interested in matrix theory, and anyone seeking to deepen their understanding of matrix transformations and row operations.

brushman
Messages
112
Reaction score
1
Homework Statement

Which three matrices E21, E31, E32, put A into triangular form U?

A =
[1 1 0]
[4 6 1]
[-2 2 0]

and E32E31E21A = U.

Multiply those E's to get one matrix M that does elimination: MA = U.

Attempt at a solution

I already found all the E's. What I don't get is, if it didn't tell me E32E31E21A = U, how would I know the correct order of multiplication in for M? In other words, how do I know M = E32E31E21 instead of E21E31E32

edit- Thanks Tedjn, HallsofIvy
 
Last edited:
Physics news on Phys.org
The job of matrix Emn is to place a zero in the m,n position of the matrix. Following the usual row reduction algorithm, it is important that we do the entire first column first, then the second column, etc. (Why is this order important?) The closest matrix to A is E21 because our first step is to place a zero in the 2,1 position, and we perform that multiplication first.
 
The simplest way to put a matrix into triangular form is to "row reduce" it. And each "row operation" corresponds to an elementary matrix- the matrix you get by applying that row operation to the identity matrix. Applying a row operation to a matrix is the same as multiplying the matrix by the corresponding elementary matrix- and a series of elementary matrices is multiplied in the same order the row operations were applied.

For example, here, the first row operation I would use to reduce A to diagonal form would be to subtract four times the first row from the second: that corresponds to elementary matrix
[tex]\begin{bmatrix}1 & 0 & 0 \\ -4 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}[/tex]
and is done by the matrix multiplication
[tex]\begin{bmatrix}1 & 0 & 0 \\ -4 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}\begin{bmatrix}1 & 1 & 0 \\ 4 & 6 & 1 \\- 2 & 2 & 0\end{bmatrix}[/tex]

The second thing I would do would be to add two times the first row to the third row:
[tex]\begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 2 & 0 & 1\end{bmatrix}\begin{bmatrix}1 & 0 & 0 \\ -4 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}\begin{bmatrix}1 & 1 & 0 \\ 4 & 6 & 1 \\- 2 & 2 & 0\end{bmatrix}[/tex]

It will take a total of 6 row reductions (two per column) to reduce a 3 by 3 matrix to a diagonal matrix. Since you are asked for three matrices, I suspect they intend for you to multiply the two matrices corresponding to a single column together. That is, the first matrix on the right for your matrix multiplication would be
[tex]\begin{bmatrix}1 & 0 & 0 \\ -4 & 1 & 0 \\ 2 & 0 & 1\end{bmatrix}[/tex]
 

Similar threads

Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
Replies
0
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
15
Views
3K
  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 5 ·
Replies
5
Views
5K
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K