Example: Finding the Inverse of a 3x3 Matrix
Given the matrix:
\[ A = \begin{bmatrix} 1 & 0 & 0 \\ 1 & 1 & 0 \\ 1 & 1 & 1 \end{bmatrix} \]
Augmenting with the identity matrix:
\[ \begin{bmatrix} 1 & 0 & 0 & \vdots & 1 & 0 & 0 \\ 1 & 1 & 0 & \vdots & 0 & 1 & 0 \\ 1 & 1 & 1 & \vdots & 0 & 0 & 1 \end{bmatrix} \]
Performing row operations:
\[ \sim \begin{bmatrix} 1 & 0 & 0 & \vdots & 1 & 0 & 0 \\ 0 & 1 & 0 & \vdots & -1 & 1 & 0 \\ 0 & 1 & 1 & \vdots & -1 & 0 & 1 \end{bmatrix} \]
\[ \sim \begin{bmatrix} 1 & 0 & 0 & \vdots & 1 & 0 & 0 \\ 0 & 1 & 0 & \vdots & -1 & 1 & 0 \\ 0 & 0 & 1 & \vdots & 0 & -1 & 1 \end{bmatrix} \]
The final inverse matrix is:
\[ A^{-1} = \begin{bmatrix} 1 & 0 & 0 \\ -1 & 1 & 0 \\ 0 & -1 & 1 \end{bmatrix} \]