Find the Inverse [[0,0,1],[0,1,0],[-1,0,0]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Swap the first and third rows (
(R_1)↔(R_3) to move a non-zero element to the top-left pivot position.
Multiply the first row by
−1 (−1*(R_1)→(R_1) to make the leading coefficient of the first row equal to1
Identify the resulting matrix on the right side as the inverse, since the left side is now the identity matrix.
Final Answer
Want more problems? Check here!