Sub-matrix plays a crucial role in finding determinants through cofactor expansion. A sub-matrix is formed by removing one row and one column from the original matrix. The resulting smaller matrix is used to compute the cofactor associated with a particular element.
When calculating the determinant, each element of the chosen row or column is paired with a sub-matrix. For instance, when considering the element 2 from the first row of our matrix, you remove the entire first row and the first column to form a sub-matrix:
- Matrix: \[\begin{bmatrix} 4 & 4 \ 0 & 2 \end{bmatrix}\]
To find the cofactor of 2, calculate the determinant of this sub-matrix, which yields 8. Each element's cofactor is determined by a similar sub-matrix and leads to the complete determinant calculation. Understanding sub-matrices thus simplifies the cofactor method by breaking down the problem into smaller, more manageable parts.