Find the Inverse [[1000,100,10],[300,20,1],[60,2,0]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Divide the first row by
10 to simplify the numbers.
Eliminate the first column entries below the pivot by performing
(R_2)−3*(R_1)⇒(R_2) and(R_3)−0.6*(R_1)⇒(R_3)
Eliminate the second column entry below the pivot by performing
(R_3)−0.4*(R_2)⇒(R_3)
Normalize the third row by multiplying by
5 to make the pivot1
Eliminate the third column entries above the pivot by performing
(R_2)+2*(R_3)⇒(R_2) and(R_1)−(R_3)⇒(R_1)
Eliminate the second column entry above the pivot by performing
(R_1)+(R_2)⇒(R_1)
Divide the first row by
100 and the second row by−10 to obtain the identity matrix on the left.
Final Answer
Want more problems? Check here!