Find the Inverse [[1,2,3],[2,5,7],[3,7,9]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entries below the first pivot in the first column using row operations
(R_2)→(R_2)−2*(R_1) and(R_3)→(R_3)−3*(R_1)
Eliminate the entries below and above the second pivot in the second column using
(R_3)→(R_3)−(R_2) and(R_1)→(R_1)−2*(R_2)
Normalize the third row by multiplying by
−1 ((R_3)→−(R_3) .
Eliminate the entries above the third pivot in the third column using
(R_1)→(R_1)−(R_3) and(R_2)→(R_2)−(R_3)
Identify the resulting matrix on the right as the inverse.
Final Answer
Want more problems? Check here!