Calculating the inverse of a 2x2 matrix involves a specific formula that utilizes the matrix's determinant. The inverse matrix \( A^{-1} \) of a given 2x2 matrix \( A = \left( \begin{array}{rr} a & b \ c & d \end{array} \right) \) is found using:
\[ A^{-1} = \frac{1}{\text{det}(A)} \cdot \left( \begin{array}{rr} d & -b \ -c & a \end{array} \right) \]
Note that this formula is valid only if the determinant \( \text{det}(A) \) is not zero. Inverting a matrix essentially means finding a matrix that, when multiplied by the original, results in the identity matrix \( I \).
Using our example matrix \( A = \left( \begin{array}{rr} 5 & -3 \ -2 & 1 \end{array} \right) \), we already calculated \( \text{det}(A) = -1 \). Thus, the inverse is:
- Plug in values into the formula: \( A^{-1} = \frac{1}{-1} \cdot \left( \begin{array}{rr} 1 & 3 \ 2 & 5 \end{array} \right) \)
- Simplify the expression: \( A^{-1} = \left( \begin{array}{rr} -1 & -3 \ -2 & -5 \end{array} \right) \)
This matrix is the inverse of our original matrix, confirming that when this inverse is multiplied by \( A \), it yields the identity matrix, demonstrating its fundamental property.