Understanding the Product of Elementary Matrices

  • Context: Undergrad 
  • Thread starter Thread starter foreverdream
  • Start date Start date
  • Tags Tags
    Matrix Product
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 3K views
foreverdream
Messages
41
Reaction score
0
I am currently studying pure mathematics and one of the topic is working out product of elemnetry matrix.

My original question in follow up exercise was to work out inverse of the matrix and I did following ( please see attached document) and that's exactly what the answer at the back of the book is. However when trying to work out a product of elementry matrices I am utterly confused as the explanation given doesn't make sense to me.

I know you apply same row operation but can someone please have a look at this and tell me bit more explicitly to help me understand this better as this is a very new topic to me

(PLEASE NOTE THIS IS NOT HOMEWORK HELP)
 
Last edited:
Physics news on Phys.org
Ok will post pdf
 
here it is - hope you can read pdf and help me thanks
 
Last edited:
Elementary matrices represent row operations on a matrix. For example, given:

[tex]A=\pmatrix{1 & 2\\-2 &1}[/tex]

Adding 2 times row 1 to row 2 is the same as multiplying A on the left by:

[tex]E_1 = \pmatrix{1 & 0\\2 & 1}[/tex]

We get [itex]\pmatrix{1 & 0\\2 &1}\pmatrix{1 & 2\\-2 &1} = \pmatrix{1 & 2\\0 &5}[/itex]

Then we wish to divide row 2 by 5. The corresponding matrix is:

[tex]E_2=\pmatrix{1 & 0\\0 &1/5}[/tex]

And so: [itex]\pmatrix{1 & 0\\0 &1/5}\pmatrix{1 & 0\\2 &1}\pmatrix{1 & 2\\-2 &1} = \pmatrix{1 & 2\\0 &1}[/itex]

Finally, add -2 times row 2 to row 1 to get the identity matrix. The matrix is:

[tex]E_3=\pmatrix{1 & -2\\0 &1}[/tex]

So we have [itex]E_3E_2E_1A = I[/itex]

Hence [itex]E_3E_2E_1 = A^{-1}[/itex]
 
Thanks for this. It does make sense but could you please look at what I just posted as that doesn't make any sense to me. Thanks
 
each row operation corresponds to a multiplication on the left of A by some matrix P.

for example, with a 3x3 matrix, switching row 1 and row 2 is multiplication by the matrix P =

[0 1 0]
[1 0 0]
[0 0 1].

now, if by doing successive row-operations, we get:

Pn...P2P1A = I,

then all the P's together must multiply to A-1, because that's what an inverse is:

a matrix B such that BA = I (and also AB = I, one could use column operations instead).

so performing the P's on I, gives us:

Pn...P2P1I = Pn...P2P1 = A-1
 
Thank you it's clear now