Find the value (A power of T) power -1 where
A power -1 =
1 2 3
2 0 1
1 1 -1
the answer in the book is
1 2 1
2 0 1
3 1 -1
Not sure how they got this.
Printable View
Find the value (A power of T) power -1 where
A power -1 =
1 2 3
2 0 1
1 1 -1
the answer in the book is
1 2 1
2 0 1
3 1 -1
Not sure how they got this.
What you mean is (A^T)-1 and your trying to find the orginal matrix A. Well first find the determinant of [1 2 3] [2 0 1] [1 1 -1 ] which is 11. Multiply everything by 11. To get A^T which is [11 22 33][22 0 11][11 11 -11]. Then undo the transpose which would be [11 22 11][22 0 11][33 11 -11] and reduce the matrix by 1/11 which = [1 2 1][2 0 1][3 1 -1].
I did not study a determinant yet.
Is it possible to calulate without determinant?
what is (A^T)
of
1 2 3
2 0 1
1 1 -1
?
Thank you!
what is (A^T)
of
1 2 3
2 0 1
1 1 -1
is
1 2 1
2 0 1
3 1 (-1)
To find the transpose of a given matrix. Make first row become first column, and the first column to be the first row etc.
A =
[1 2]
[3 4]
A^T =
[1 3]
[2 4]
Yes, it is. You have already determined that the transpose of the matrix (not a "power") is.
Now you can write that matrix with the identity matrix right beside it:
.
Do you know what "row operations" are? if so, row reduce the first matrix to the identity matrix and, at the same time, apply those row operations to the identity matrix. When the first matrix has been reduced to the identity matrix, the second matrix will be the inverse.
(It seems very strange to me that you would be asked to invert a matrix if you have been taught nothing about finding an inverse matrix!)
I am doing my homework ahead of class...well trying. Thank for your help!
yes, I know row operations.
1 2 1
2 0 1
3 1 -1
will be
1 0 0
0 1 0
0 0 1.
How can I use it after that?
the answer in the book is
1 2 1
2 0 1
3 1 -1
here is how to use row-reduction find find an inverse:
start with your matrix A, and "augment it" with the identity matrix I.
now row-reduce A, but apply the same row-reductions to I at the same time.
when you have row-reduced A to I, the results of what you have done to the identity matrix will be A-1.
i will illustrate with a 2x2 matrix:
suppose
.
form this augmented matrix:
first row operation: (-3/2)R1+R2:
second row operation: 2R2:
third row operation: -3R2+R1:
fourth row operation: (1/2)R1:
this tells us:
, which you can verify by multiplying.
thank you.