Find the Inverse [[1,0,9],[0,1,6],[0,0,3]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Divide the third row by
3 to create a leading1 in the third column.
Eliminate the entry in the second row, third column by performing the row operation
(R_2)−6*(R_3)⇒(R_2)
Eliminate the entry in the first row, third column by performing the row operation
(R_1)−9*(R_3)⇒(R_1)
Identify the resulting matrix on the right side as the inverse matrix
A(−1)
Final Answer
Want more problems? Check here!