Find the Inverse [[1,-1,0],[-1,-2,1],[0,-2,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 second row by adding the first row to the second row (
(R_2)←(R_2)+(R_1) .
Create a leading one in the second row by multiplying the second row by
−1/3 ((R_2)←−1/3*(R_2) .
Eliminate the entries in the second column for the first and third rows (
(R_1)←(R_1)+(R_2) and(R_3)←(R_3)+2*(R_2) .
Create a leading one in the third row by multiplying the third row by
3 ((R_3)←3*(R_3) .
Eliminate the entries in the third column for the first and second rows (
(R_1)←(R_1)+1/3*(R_3) and(R_2)←(R_2)+1/3*(R_3) .
Final Answer
Want more problems? Check here!