lecture 4 - determinant part 2 Flashcards

1
Q

What is a submatrix?

A

A matrix obtained by certain cancelling rows/columns

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

What is a minor?

A

Determinant of a submatrix

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

What is a major?

A

Determinant of the largest square matrix

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

What is a complement submatrix?

A

For element a(i,j), cancels out the ith row and jth column.

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

What is complement minor?

A

Anotated by M(i,j)
Determinant of complement submatrix

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

What is a cofactor?

A

A generic element of a complement minor.
Anoted A(i,j)
A(i,j) = (-1)^(i + j) * M(i,j)
(-1) alternated negation

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

How to find adjugate matrix?

A
  • transpose A > A^T
  • find the complement minors (M(i,j)) for each element.
  • find the cofactor for each element. (-1)^(i+j) * M(i,j)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is laplace theorem?

A

determinant of A can be computed as the scalar product of each row/column by the vector of its corresponding cofactor.
det(A) = SUM [ a(i,j) * A(i,j) for each i,j in a row.

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

What is an inverse matrix?

A

For square matrix A, inverse matrix is A * A^-1 = 1 = I
I = identity matrix which is one diagonal line of 1s in a matrix of 0s.

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

What is invertible?

A

If exists a square matrix B where AB = I = BA then matrix is said to be invertible.
Matrix is invertible IFF A is non-singular (det != 0)

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

What is the invertible product?

A

(AB)^-1 = B^-1 * A^-1 where A and B are square and invertible

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

When will a matrix have an inverse?

A
  • if it is a square matrix
  • AND if it has a determinant of NOT 0 (non-singular)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how to calculate inverse of a matrix?

A
  • find det(A)
  • find the adjugate matrix
    > if 2 X 2, swap a,d + negate
    b,c
    > if 3 X 3 > use adj matrix formula (transpose, cofactor)
  • multiply by 1 / det(A)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly