Find the Inverse [[1,3,-1],[-3,-5,0],[4,5,1]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entries in the first column below the first pivot by adding 3 times the first row to the second row, and subtracting 4 times the first row from the third row.
Normalize the second row by dividing it by 4 to create a pivot of 1.
Eliminate the entries in the second column above and below the second pivot by subtracting 3 times the second row from the first row, and adding 7 times the second row to the third row.
Normalize the third row by multiplying it by -4 to create a pivot of 1.
Eliminate the entries in the third column above the third pivot by subtracting 1.25 times the third row from the first row, and adding 0.75 times the third row to the second row.
Final Answer
Want more problems? Check here!