Processing math: 100%
es

Elementary Matrices

Inverse Matrices

Gaussian elimination

Column Transformations

Elementary matrices can be also used for column transformations when they are multiplied from right. We use Mathematica for their demonstrations. Let us first define an arbitrary 3 × 3 matrix:
A=[abcdefghi].
A = {{a, b, c}, {d, e, f}, {g, h, i}}
We define an elementary matrix for switching first two columns:
E1=[010100001]AE1=[bacedfhgi].
F1 = {{0, 1, 0}, {1, 0, 0}, {0, 0, 1}};
A . F
{{b, a, c}, {e, d, f}, {h, g, i}}
If we want to multiply the second column of an n × 3 matrix by 7, we would multiply from right the matrix by
E2(7)=[100070001],
which is the matrix that results when the second column of I₃ is multiplied by 7. We have
AE2(7)=[a7bcd7efg7hi].
F2 = {{1, 0, 0}, {0, 7, 0}, {0, 0, 1}};
A . F2
{{a, 7 b, c}, {d, 7 e, f}, {g, 7 h, i}}
Similarly, if we multiply from right by matrix
F3=[170010001],
we get
AE3(7)=[a7a+bcd7d+efg7g+hi].
F3 = {{1, 7, 0}, {0, 1, 0}, {0, 0, 1}};
A . F3
{{a, 7 a + b, c}, {d, 7 d + e, f}, {g, 7 g + h, i}}

 


  1. Axier, S., Linear Algebra Done Right. Undergraduate Texts in Mathematics (3rd ed.). Springer. 2015, ISBN 978-3-319-11079-0.
  2. Beezer, R.A., A First Course in Linear Algebra, 2017.
  3. Dillon, M., Linear Algebra, Vector Spaces, and Linear Transformations, American Mathematical Society, Providence, RI, 2023.