Given a matrix A, the inverse matrix, A^{-1} is a matrix such that AA^{-1}=I where I is the identity matrix. Any matrix where A^{-1} exists is said to be invertible. Only square matrices will have an inverse.
We can use elementary row operations in an augmented matrix to find the inverse of any n\times n square matrix by transforming \left[ \begin{array}{c|c} A & I \end{array} \right] into \left[ \begin{array}{c|c} I & A^{-1} \end{array} \right].
The inverse of a 2\times 2 matrix A=\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22}\end{bmatrix} can also be found using the formula:
Where \text{det}(A) is the determinant of the matrix. The determinant is a real number associated with any square matrix that can be used in a variety of applications which will be investigated in the next subtopic. The determinant can also be denoted as \left\vert A \right\vert=\begin{vmatrix} a_{11} & a_{12} \\ a_{21} & a_{22}\end{vmatrix}.
The determinant for a 2\times 2 matrix, A=\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22}\end{bmatrix}, can be found with the formula:
The determinant of a 3\times 3 matrix, A=\begin{bmatrix} a_{11} & a_{12} & a_{13}\\ a_{21} & a_{22} & a_{23}\\ a_{31} & a_{32} & a_{33}\end{bmatrix}, can be found with the formula:
In the formula for the determinant of a 3\times 3 matrix, the elements a_{11}, a_{12}, and a_{13} are referred to as cofactors and the determinants of the 2\times 2 matrices formed by deleting the row and column of the cofactor are referred to as minors. This alternating pattern of +(\text{cofactor})(\text{minor})-(\text{cofactor})(\text{minor})... can be expanded to any size square matrix.
Find the determinant of the following matrices:
\begin{bmatrix} 8 & 3 \\ -4 & 2\end{bmatrix}
\begin{bmatrix} 2 & 0 & -3 \\ 1 & -2 & 5\\ 0 & 2 & -1 \end{bmatrix}
Consider the matrix A=\begin{bmatrix} 9 & -6 \\ -11 & 8\end{bmatrix}.
Find the inverse of A.
Find AA^{-1}.
Find the inverse of the matrix A=\begin{bmatrix} -2 & 3 & 1 \\ 3 &5 &4\\ -4 & -1 & 2\end{bmatrix}.