Elementary Matrices for Transforming Matrices A to B

krisrai
Messages
14
Reaction score
0

Homework Statement



You are given matrices A:

A=
[-4 5 9 0 3
-5 1 3 8 -5
-6 0 4 0 -9
-1 -1 -4 3 -5]
and

B=
[-4 5 9 0 3
-6 0 4 0 -9
-40 8 24 64 -40
-1 -1 -4 3 -5 ]

Find two elementary matrices E and F that transform matrix A into matrix B.

Homework Equations



The solution might not be unique, however, after multiplying A on the left with elementary matrices E and F your result should be matrix B. That is, F E A = B.

The Attempt at a Solution



I know one Elementary matrix already which is R2*8
and the second elementary matrix swaps row 2 with row 3do I write it like this:
F=
[1 0 0 0 0
0 8 0 0 0
0 0 1 0 0
0 0 0 1 0] --is it okay to have the last column full of zeros??

and the next elementary matrix, do i write it like this:
[1 0 0 0 0
0 0 1 0 0
0 1 0 0 0
0 0 0 1 0]
 
Last edited:
Physics news on Phys.org
I think elementary matrices need to be square matrices ...

think about 4x4 matrices

edit 2: (undoing edit 1 lol): can you multiply those matrices?!
5x4 * 5x4..
 
Last edited:
Note that elementary matrices are invertible, so they have to be square matrices. Note that a 4x4 matrix multiplied to a 4x5 matrix will give you a 4x5 matrix, which is what you want.

As you pointed out, you need 2 matrices, one which reflects 8*R2 and one which swaps R2, R3. Note that the elementary matrix which performs a desired row operation when multiplied to another matrix is obtained by executing the same row operation on the identity matrix.
 
An elementary matrix is a matrix created from the identity matrix by a single "row operation". I see that A and B differ in only two ways: The second and third rows have been swapped and the (new) third row is multiplied by 8. Apply those two operations to the identity matrix to get the two elementary matrices required.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top