Gauss-Jordan Elimination solve Inverse Matrix
Cyletix2025年2月21日小于 1 分钟数学
To find the inverse of the matrix A=(111−1) using Gauss-Jordan elimination, we can follow these steps:
Form the augmented matrix by appending the identity matrix to A:
(111−11001)
Apply row operations to transform the left part of the augmented matrix into the identity matrix.
Step 1: Subtract the first row from the second row:
R2←R2−R1
This gives:
(101−21−101)
Step 2: Divide the second row by −2:
R2←−2R2
This gives:
(10111210−21)
Step 3: Subtract the second row from the first row:
R1←R1−R2
This gives:
(1001212121−21)
The left part of the augmented matrix is now the identity matrix, and the right part is the inverse of A.
Therefore, the inverse matrix A−1 is:
A−1=(212121−21)
Thus, the inverse of the matrix A=(111−1) is (212121−21).