If \(A\) is invertible \( (det(A) ≠ 0) \), the system \( Ax = b \) has unique solution:
\[ x = A^{-1} b \]Steps:
For \(2×2\) matrix \(A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}\), the inverse is:
\[ A^{-1} = \frac{1}{ad-bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} \]Example system:
\[ \begin{cases} 3x + y = 7 \\ 5x + 2y = 13 \end{cases} \quad A = \begin{pmatrix} 3 & 1 \\ 5 & 2 \end{pmatrix}, \quad b = \begin{pmatrix} 7 \\ 13 \end{pmatrix} \]\(A⁻¹ = \begin{pmatrix} 2 & -1 \\ -5 & 3 \end{pmatrix}\)
\(x = A⁻¹b = \begin{pmatrix} 2·7 + (-1)·13 \\ -5·7 + 3·13 \end{pmatrix} = \begin{pmatrix} 1 \\ 4 \end{pmatrix}\)