Expansion by Minors
Neither of the two previous methods will work for an n by n system if n is larger than three, so we will use another method called expansion by minors. Actually, this method works for any size square matrix, so let's use the same 3 by 3 example with the new method. First, we need to learn some new notation. The real number Mij is the determinant of a submatrix of dimension n-1 by n-1 which contains everything except row i and column j of the original matrix. The number Mij is called the minor for element ij of the matrix. For example, if
and we want to find M12, we don't use row 1
or column 2 as shown below.
We
will also need something to determine the sign. We set Sij =
(-1)i + j so that sij is always
either positive one or negative one. For a 4 by 4 matrix,
.
Choose any row or column to work with. We will use the first
column for the example, but any of them will work. For each position in that
column, we will have
aijsijMij.
.
Let's expand along the second row since it contains two zeros.
Expansion by minors will allow you to find the determinant of a
square matrix of any size. However, it requires a lot of operations when the
matrix is large because each submatrix used to determine a minor must be
expanded. In fact, finding the determinant using this method requires n!
operations which is a very large number when n is large because n! = n*(n
- 1)*(n - 2)* ... *2*1
| |