Lecture Chapter 3 Flashcards

1
Q

How do you compute the determinant of an nxn matrix A, n>=2?

A

det A = a11detA11 - a12detA12 + … + (-1)^1+n * a1ndetA1n

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

Cij = (-1)^i+j * detAij

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

How can the determinant be computed (cofactor)?

A

cofactor expansion:

  • expansion across ith row : det A = ai1Ci1 + ai2Ci2 + … + ainCin
  • expansion across jth column : det A = a1jC1j + a2jC2j + … + anjCnj
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the determinant of a triangular matrix?

A

det A = product of entries on main diagonal

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

If A and B are square, what are the properties of the determinant?

A
  • if a multiple of one row of A is added to another row to produce a matrix C : det A = det C
  • if two rows of A are interchanged to produce C : det C = -det A
  • if one row of A is multiplied by k to produce C : det C = kdet A
  • A invertible <=> det A /=0
  • det A^T = det A
  • det AB = (det A) (det B)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Ai(b)?

A

the matrix from A by replacing column i by b

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

What is Cramer’s rule?

A

A nxn and invertible : the unique solution x of Ax=b has entries
xi = (det Ai(b))/det A

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

What is the adjugate of A adj A?

A

matrix with entries Cij

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

If A is nxn and invertible, what is A^-1?

A

A^-1 = (1/det A) * adj A

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

If A is 2x2, what is the absolute value of det A (/det A/)?

A

the area of the parallelogram determined by columns of A

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

What is the volume of the parallelepiped determined by the columns of a 3x3 matrix A?

A

absolute value of det A (/det A/)

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