Find the Inverse [[1,1,1],[3,5,4],[3,6,5]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entries in the first column below the pivot by performing row operations
(R_2)−3*(R_1)⇒(R_2) and(R_3)−3*(R_1)⇒(R_3)
Create a pivot of
1 in the second row by performing1/2*(R_2)⇒(R_2)
Eliminate the entries in the second column around the pivot by performing
(R_1)−(R_2)⇒(R_1) and(R_3)−3*(R_2)⇒(R_3)
Create a pivot of
1 in the third row by performing2*(R_3)⇒(R_3)
Eliminate the entries in the third column above the pivot by performing
(R_1)−0.5*(R_3)⇒(R_1) and(R_2)−0.5*(R_3)⇒(R_2)
Final Answer
Want more problems? Check here!