The inverse matrix can be used to:
- Solve systems of linear equations: $A\mathbf{x} = \mathbf{b}$ can be solved by multiplying both sides by $A^{-1}$: $\mathbf{x} = A^{-1}\mathbf{b}$
- Find the inverse transformation: If $A$ represents a linear transformation, $A^{-1}$ represents the inverse transformation. For a $2 \times 2$ matrix:
Note that the inverse matrix is unique, meaning that if $A$ has an inverse, it is the only matrix that satisfies the equation $AA^{-1} = I$.
#General Formula
$$ A^{-1} = \frac{1}{\det A} C^T $$ $$ \mathbf{x} = A^{-1} \mathbf{b} $$ $$ \mathbf{x} = \frac{1}{\det A} C^T \mathbf{b} $$#Example