Basic Properties of Determinants
The determinant of the identity matrix is 1.
Scaling one row by a factor k multiplies the determinant by k.
A=[acbd]
Multiplying the first row by k
det([kackbd])=k⋅det(A)
Additivity
det([a+a′cb+b′d])=det([acbd])+det([a′cb′d])
A row exchange reverses the sign of the determinant.
det([acbd])=−det([cadb])
Using these properties allows you to derive many other properties of determinants!
Derived Properties of Determinants
If A has two equal rows, det(A)=0. Let A=[aabb]. By basic property 3: det([aabb])=−det([aabb]) The only way this will hold true is if det([aabb])=0 From this, we conclude that if A has two equal rows, det(A)=0. If A has two equal rows, this means that A has linearly dependent rows. Consequently, we can conclude that if the det(A)=0, the matrix has linearly dependent rows and is not invertible.
Adding or subtracting a row to or from another row does not change the determinant. Let A=([acbd]) Solving for the determinant after multiplying the first row by t and adding it to the first row gives: det([ac+tabd+tb]) By basic property 2 and derived property 1:
det([ac+tabd+tb])=det([acbd])+det([atabtb]) =det([acbd])+t⋅det([aabb]) det([aabb])=0 Therefore: det([acbd])+t⋅0=det([acbd]) 3. The determinant of a matrix in upper triangular, or lower triangular, form is equal to the product of the values on the diagonal. det([ac0d])=a⋅d
and det([a0bd])=a⋅d As a simpler case, let's prove that the determinant of a diagonal matrix is the product of the diagonal. Let A=([a00d]) Using basic property 1 and 2a: det(A)=ad⋅det([1001]) (Property 2) The determinant of the identity matrix is 1 (property 1). Therefore: det(A)=ad⋅1=ad This property can be extended to matrices in upper or lower triangular form using derived property 2. We can reduce a matrix in upper or lower triangular form to diagonal form by multiplying and adding rows to have 0's above all pivots.