[Math] the simplest way to find an inverse matrix

linear algebramatrices

let $A = \left( \begin{array}{cccc}
1 & -1 & 2 & -1\\
-1 & 2 & -3 & -2 \\
2 & -3 & 7 & 5 \\
3& -2 & 6 & -3\end{array} \right)$

I want to find the inverse matrix of A the simplest way possible.

I know the adjoint method, however, i think it will require too much calculation.

I know the augmented matrix method, this is probably the simplest way to find it, but performing it on a 4×4 matrix doesn't seem to be a very simple task to do.

Is there any other simpler way? If not, what are the tips and tricks to find the row echelon of A? In which row should I start?

Best Answer

Simplicity is in the eye of the beholder, but you can calculate the inverse of $A$ using Schur complement. Let $$ A=\pmatrix{X&Y\\ Z&W}, $$ where $X,Y,Z,W$ are square matrices of the same sizes. The matrix $S=X-YW^{-1}Z$ is known as the Schur complement of $W$ in $A$. If both $W$ and $S$ are invertible, then $A$ is invertible too and we have the matrix inverse formula $$ A^{-1}=\pmatrix{S^{-1} & -S^{-1}YW^{-1}\\ -W^{-1}ZS^{-1} & W^{-1} + W^{-1}ZS^{-1}YW^{-1} }. $$ So, to apply this formula to your case, you don't need to calculate any 3x3 or 4x4 adjugate matrices. Instead, you need to compute the inverses and products of a whole bunch of 2x2 matrices.

Related Question