In linear algebra, a minor of a matrix A is the determinant of some smaller square matrix generated from A by removing one or more of its rows and columns. Minors obtained by removing just one row and one column from square matrices (first minors) are useful for calculating matrix cofactors, which are useful for computing both the determinant and inverse of square matrices. The requirement that the square matrix be smaller than the original matrix is often omitted in the definition. The cofactors C i j {\displaystyle C_{ij}} are also the partial derivatives with respect to the matrix entries of the determinant map det : Mat ( n , R ) → R {\displaystyle {\text{det}}:{\text{Mat}}(n,\mathbb {R} )\to \mathbb {R} } which takes a matrix ( a i , j ) i , j ∈ { 1 , … , n } {\displaystyle (a_{i,j})_{i,j\in \{1,\dots ,n\}}} to its determinant:
d ( det ) d a i j = C i j {\displaystyle {\frac {{\text{d}}({\text{det}})}{{\text{d}}a_{ij}}}=C_{ij}}
Definition and illustration
First minors If A is a square matrix, then the minor of the entry in the i-th row and j-th column (also called the (i, j) minor, or a first minor) is the determinant of the submatrix formed by deleting the i-th row and j-th column. This number is often denoted Mi, j. The (i, j) cofactor is obtained by multiplying the minor by (−1)i + j, and is often denoted Ci, j. To illustrate these definitions, consider the following 3 × 3 matrix,
[ 1 4 7 3 0 5 − 1 9 11 ] {\displaystyle {\begin{bmatrix}1&4&7\\3&0&5\\-1&9&11\\\end{bmatrix}}}
To compute the minor M2,3 and the cofactor C2,3, we find the determinant of the above matrix with row 2 and column 3 removed.
M 2 , 3 = det [ 1 4 ◻ ◻ ◻ ◻ − 1 9 ◻ ] = det [ 1 4 − 1 9 ] = 9 − ( − 4 ) = 13 {\displaystyle M_{2,3}=\det {\begin{bmatrix}1&4&\Box \\\Box &\Box &\Box \\-1&9&\Box \\\end{bmatrix}}=\det {\begin{bmatrix}1&4\\-1&9\\\end{bmatrix}}=9-(-4)=13}
So the cofactor of the (2,3) entry is
C 2 , 3 = ( − 1 ) 2 + 3 ( M 2 , 3 ) = − 13. {\displaystyle C_{2,3}=(-1)^{2+3}(M_{2,3})=-13.}
… excerpt ends here. Continue reading the full article.
