Find the Inverse [[1,-2,3],[0,1,2],[0,0,2]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Normalize the third row by dividing
(R_3) by2 to create a leading1
Eliminate the entries above the leading
1 in the third column by performing(R_2)⇒(R_2)−2*(R_3) and(R_1)⇒(R_1)−3*(R_3)
Eliminate the entry above the leading
1 in the second column by performing(R_1)⇒(R_1)+2*(R_2)
Identify the resulting matrix on the right side as the inverse
A(−1)
Final Answer
Want more problems? Check here!