ranoo
- 9
- 0
How to find detA if A is 4x4 matrix or more than 4x4.
The discussion centers on methods for calculating the determinant of a 4x4 matrix, exploring various techniques including cofactor expansion and row reduction. Participants also touch on eigenvalues and eigenvectors in relation to a specific matrix example.
Participants express differing opinions on the best method for finding the determinant, with no consensus reached on a single approach. The discussion also reveals uncertainty regarding the calculation of eigenvalues from the provided matrix.
Some participants mention the limitations of cofactor expansion in terms of computational efficiency, while others highlight the potential complexity of eigenvalue calculations without resolving the specific issues raised.
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.)