Chapter 3 Flashcards

1
Q

What is the determinant of a matrix A?

A

Let A =[a_ij] be an n x n matrix. If n = 1, then the determinant of A, denoted det A, is the single entry of A. For n > 1,
det A = a_11 det A_11 - a_12 Det A_12 + … +
(-1)^(n+1) a_1n det A_1n
where A_ij is the submatrix formed by ommitting the ith row and the jth column of A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the (i,j) cofactor of A?

A

Let A be an n x n matrix. The (i,j) - cofactor of A is the signed determinant
C_ij = (-1)^(i+j) det A_ij

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can the determinant of a matrix A be computed in general? (Theorem 3.1)

A

The determinant of the n x n matrix A can be computed by a cofactor expansion across any row or down any column of A
Cofactor expansion along the ith row yields
det A = ai1 Ci1 + ai2 Ci2 + … + ain Cin
Cofactor expansion along the jth column yields
det A = a1j C1j + a2j C2j + … + anj Cnj

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How is the determinant computed for a triangular matrix? (Theorem 3.2)

A

If A is a triangular matrix (upper or lower), the det A is the product of the entries on the main diagonal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the effects of elementary operations on the determinant of A? (Theorem 3.3)

A

If A is an n x n matrix and E is an n x n elementary matrix, then
det EA = det E * det A. So, if B = EA, then:
a) If E represents a row replacement, then
det B = det A
b) If E represents an interchange, then
det B = - det A
c) If E represents scaling a row by k, then
det B = k det A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Theorem 3.4

A

An n x n matrix A is invertible if and only if det A is not equal to 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Theorem Properties of the determinant

A

If A and B are n x n matrices, then

i) det A^T = det A
ii) det(AB) = det A * det B
iii) det A^-1 = 1/(det A) when det A is not equal to zero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Cramer’s rule

A
Let A be an invertible n x n matrix. For any b in R^n, the unique solution x of Ax = b has entries given by:
xi = ( det Ai (b) ) / (det A)
where Ai(b) is the matrix formed when you replace the ith column of the A matrix with the entries of b.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly