Find the Inverse [[4,-2,6],[0,1,-3],[0,0,6]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Normalize the third row by multiplying
(R_3) by1/6 to create a leading1
Eliminate the entries above the leading
1 in the third column using the operations(R_2)←(R_2)+3*(R_3) and(R_1)←(R_1)−6*(R_3)
Eliminate the entry above the leading
1 in the second column using the operation(R_1)←(R_1)+2*(R_2)
Normalize the first row by multiplying
(R_1) by1/4 to obtain the identity matrix on the left.
Final Answer
Want more problems? Check here!