lacunary - Mathnotes

Determinants

The determinant of an upper triangular matrix is the product of its diagonal entries.

We can find the determinant of a matrix through row reduction. We have to keep track of a multiplier for the determinant of the upper triangular matrix:

  • each time we swap a row, multiply the determinant by -1
  • each time we multiply a row by a scalar, multiply the determinant by that scalar
  • adding a multiple of one row to another doesn't change the determinant.

Determinants and Cramer's rule

For 2x2 matrices, [ab cd], the determinant is adbc.

For a system of two equations with two unknowns:

a1x+b1y=q1,a2x+b2y=q2

The unique solution can be given via Cramer's rule as:

x=|q1b1 q2b2||a1b1 a2b2|,y=|a1q1 a2q2||a1b1 a2b2|

3x3 determinant

For the 3x3 matrix:

A=[abcdefghi]

the determinant is:

detA=a|efhi|b|dfgi|+c|degh|