Properties of Determinants

June 5, 2019

Every square matrix has a determinant associated with it. The determinant will be a test for invertibility, since it is faster(?) to compute it than to use eliminations to check if we have a full rank matrix. If determinant of some matrix is 0 then it is not invertible. And determinant got a lot more than that. We use or to represent matrix ’s determinant.

There’re three properties of a determinant, and we can infer another seven from the basic ones:

  1. .

  2. Exchanging rows reverse the sign of determinant. Therefore if the number of exchanges is even/if odd

  3. (a) If we multiply a row of the matrix with factor , then the determinant will also be multiplied by , that is

    (b) note that this is not saying . This is linear in each row, separately.

  4. 2 equal rows . We can infer this from property 2. When we have two rows the same in a matrix, we can exchange those rows and get a inverse determinant. But the matrix in fact isn’t changed at all just by switching rows. Adding these two determinant will give us zero.

  5. Subtracting a multiple of one row from the other does not change the determinant. This is saying, by property 3b. . And from property 3a., , we factor out the , we finally see by property 4 same rows give us zero determinant, so it does not change the determinant of the original matrix.

  6. If any rows of a matrix is zero, then the determinant will be 0. We can use from 3a to obtain this.

  7. Determinant of an upper triangular matrix is the product of all its diagonal items . Suppose all are non-zeros. Then we can get a symmetric matrix by subtracting all numbers above the diagonal line. Note this does not affect the determinant by property 5. And we can use 3a to factor out each row’s one by one, and what’s left in the matrix is identity . If there’s any zero , we can make the whole row to zero by elimination, and get .

  8. iff is singular. For <-, If A is singular, we can get a row of zero. If A is non-singular, we get D and what’s happened in property 7.

  9. This can be proved when later we know eigenvalues. We are just multiplying the eigenvalues of these two matrices. From this we can get , then . Similar things happen for and etc. But note that because we have 2 on every row. By property 3a we can get this, where is the number of rows.

  10. and both triangular, tranposed determinants are the same. One implication is that from property 6, any column is zero will lead to determinant as 0.

Properties of Determinants - June 5, 2019 - Ruizhen Mai