Find the Inverse [[1,1,1],[0,2,3],[5,5,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 first column of the third row by performing the row operation
(R_3)←(R_3)−5*(R_1)
Normalize the second row by dividing by 2 (
(R_2)←1/2*(R_2) and the third row by dividing by -4 ((R_3)←−1/4*(R_3) .
Eliminate the entries above the leading 1 in the third column using
(R_2)←(R_2)−1.5*(R_3) and(R_1)←(R_1)−(R_3)
Eliminate the entry above the leading 1 in the second column using
(R_1)←(R_1)−(R_2)
Convert the decimal values back into fractions to express the final inverse matrix.
Final Answer
Want more problems? Check here!