78. Minor

A minor of a matrix 𝐴 is the determinant of a smaller square matrix obtained by deleting some rows and some columns of 𝐴. The deleted rows and columns do not need to share indices — that distinguishes a minor from a principal minor.

[
]

Pick rows {1,3} and columns {2,4} — different sets, this is not a principal minor:

|𝑎12𝑎14𝑎32𝑎34|

78.1. (𝑖,𝑗)-minor (cofactor expansion)

The most-used minor is the (𝑖,𝑗)-minor 𝑀𝑖𝑗: delete row 𝑖 and column 𝑗 from 𝐴 and take the determinant of what’s left. Used in cofactor expansion:

det(𝐴)=𝑗=1𝑛(1)𝑖+𝑗𝑎𝑖𝑗𝑀𝑖𝑗

78.2. Variants

78.3. Where minors show up