ranoo
- 9
- 0
How to find detA if A is 4x4 matrix or more than 4x4.
HallsofIvy said:The simplest way, in my opinion, to find the determinant of a large matrix is NOT "cofactor expansion" but row- reduction. Row reduce the given matrix to the identity matrix using the three row- operations:
1) multiply an entire row by a number
2) swap two rows.
3) Add a multiple of one row to another row.
The determinant of the identity matrix is, of course, 1. Then remember that
1) multiplying an entire row by a number multiplies the determinant by that number.
2) swapping two rows multiplies the determinant by -1.
3) adding a multiple of one row to another row does NOT change the determinant.
So if you keep track of the numbers you multiplied the rows by, you can divide 1 by them. If you swapped rows an odd number of times the determinant is the negative of that quotient, if an even number of times, the determinant is that quotient.
(If you cannot row reduce the matrix to the identity matrix, then it is not invertible and its determinant is 0.)