Find the Inverse [[1,1,0],[3,1,1],[0,1,-1]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entry in the second row, first column by performing the row operation
(R_2)−3*(R_1)⇒(R_2)
Swap the second and third rows (
(R_2)⇔(R_3) to make the pivot calculation easier.
Eliminate the entry in the third row, second column by performing
(R_3)+2*(R_2)⇒(R_3)
Normalize the third row by multiplying by
−1 (−1*(R_3)⇒(R_3) .
Eliminate the entry in the second row, third column by performing
(R_2)+(R_3)⇒(R_2)
Eliminate the entry in the first row, second column by performing
(R_1)−(R_2)⇒(R_1)
Final Answer
Want more problems? Check here!