Final Exam (need to memorize)

0.0(0)
Studied by 14 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

flashcard set

Earn XP

Description and Tags

- Properties of determinants - Formulas - Conditions for methods - things to remember

Last updated 7:20 PM on 12/11/23
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

What is another way to express the following determinants?
det(u, v+w)
det (u+v, w)

det(u, v) + det(u, w)
det(u, w) + det(v, w)

2
New cards

What is another way to express the following determinant?
det(u, kv) where k is a scalar multiple.

k det(u, v) = det(ku, v)

3
New cards

How does swapping columns/rows affect the determinant?

det(u, v)

The determinant of the permutation (det(P)) is…

  • positive if even row exchanges

  • negative if odd row exchanges

- det(v, u)

4
New cards

How can the following matrix be rewritten?

| ta tb |
| c d |

t * | a b | = t * det(matrix)
| c d |

There is linearity in the rows

5
New cards

What is the determinant of a matrix that has 2 equal rows or columns?

zero

6
New cards
<p>What happens to the determinant of a matrix when…</p><ul><li><p>subtract <em>l </em>* row i from row k</p></li></ul>

What happens to the determinant of a matrix when…

  • subtract l * row i from row k

The determinant of the matrix doesn’t change, since the cofactor of the mutation evaluates to zero

<p>The determinant of the matrix doesn’t change, since the cofactor of the mutation evaluates to zero</p>
7
New cards

What is the determinant of a matrix with a row of zeros?

zero

8
New cards

What is the determinant of an upper/lower triangular or diagonal matrix?

The determinant is the product of the diagonal entries

  • product of pivots assuming no row exchanges

9
New cards

What is the determinant of a matrix A that is not invertible (singular)?

zero

  • A matrix is invertible if it’s determinant does NOT equal zero

10
New cards

What is the det(AB)

  • A and B are two different matrices

det(A) * det(B)

11
New cards

What is the det(A-1)

  • A inverse

A(inverse) * A = Identity… therefore

  • det(A(inv)) * det(A) = 1 (det of identity)

  • det(A(inv)) = 1 / det(A)

12
New cards

What is the following determinant?

det(A²)

det(A²) = det(AA) = det(A) * det(A)

13
New cards

What is the following determinant?

det(2A)

det(2A) = 2n * det(A)

14
New cards

What is the following determinant?

det(AT)

det(A)

15
New cards

What is Cramers rule?

  • Conditions

  • Formula

Given a system Ax = b, Cramer’s rule gives a formula to find each component of x, such that

Cramer’s rule is only applicable IF A is an invertible matrix (det does not equal 0)

Matrix Bi is a matrix in which the ith column of A is replaced with the vector b and every other column is maintained

  • xi = det(Bi) / det(A)

16
New cards

What is the formula for the inverse of matrix A?

Each entry of the C (cofactor) matrix is given by…

  • cij = (-1)i + j det(Mij)

  • M is the cofactor matrix

<p>Each entry of the C (cofactor) matrix is given by…</p><ul><li><p>c<sub>ij</sub> = (-1)<sup>i + j</sup> det(M<sub>ij</sub>)</p></li><li><p>M is the cofactor matrix</p></li></ul>
17
New cards

Let A, B, and C be three points in R²

What is the area of a parallelogram determined by vectors AB. and AC?

knowt flashcard image
18
New cards

What is the area of the triangle formed by ABC?

knowt flashcard image
19
New cards

What is the volume of the parallelepiped?

  • Let A, B, C, and D be three points in R³

<p></p>
20
New cards

What is the volume of the pyramid or tetrahedron?

  • Let A, B, C, and D be three points in R³

<p></p>
21
New cards

How do you find an eigenvalue(s)?

  • solve the characteristic equation det(A - λI) = 0

  • Each root is an eigenvalue of the matrix A

<ul><li><p>solve the characteristic equation det(A - <span>λ</span><em><span>I</span></em><span>) = 0</span></p></li><li><p><span>Each root is an eigenvalue of the matrix A</span></p></li></ul>
22
New cards

How do you find eigenvectors?

  • find linearly independent vectors (a basis) of λ-eigenspace N(A - λI) for each eigenvalue λ

  • The geometric multiplicity of an eigenvalue λ is dim N(A - λI), which is the number of linearly independent eigenvector associated with λ

23
New cards

How can the determinate of a matrix be expressed with eigenvalues?

det (A) = product of all eigenvalues

24
New cards

What can be said about the eigenvalues of a matrix that is NOT invertible?

zero is an eigenvalue of the matrix

the number of non-zero eigenvalues is the same as the rank of the matrix A

25
New cards

What are the eigenvalues of Ak ?

(eigenvalues of A)k

26
New cards

What are the eigenvalues of cA + dI ?

c(eigenvalue of A) + d for each eigenvalue of A

27
New cards

When is the matrix A (n x n) diagonalizable?

If and only if

  • A has n linearly independent eigenvectors (x1, x2, . . . , xn)

28
New cards

When are two matrices A and B similar?

  • In the context of diagonalization

If there exists and invertible matrix C such that…

  • A = CBC-1

These two matrices have the same eigenvalues (hence the same trace and determinants)

29
New cards

The Spectral Theorem

Every real symmetric matrix S can be factors into the form

  • QΛQT, where Q is a real orthogonal matrix and Λ is a real diagonal matrix Λ

  • Find the eigenvalues of the matrix S

  • Find the eigenvectors to each eigenvalue value

    • If any two eigenvectors stem from the same eigenvalue… use gram Schmidt to find orthogonal vector of the two

  • Normalize the eigenvectors (divide eigenvectors by magnitude of eigenvector)

  • Each normalized eigenvector is in matrix Q and the diagonal matrix is made up of eigenvalues of S

30
New cards

What are the 5 tests for positive definiteness of a (symmetric) n x n matrix S?

  1. All eigenvalues of S are positive

  2. xTSx > 0 for any non-zero vector x in Rn

  3. S = ATA for a full column rank matrix A (Cholesky Factorization)

  4. All Dk > 0, where Dk is the determinant of the left-upper k by k submatrix of A

  5. S has n pivots and all pivots are positive

31
New cards

What are the five tests for a positive semi definite (symmetric) n x n matrix S?

  1. All eigenvalues of S are non-negative

  2. xTSx >= 0 for any vector x in Rn

  3. S = ATA for a matrix A (Cholesky Factorization)

  4. All Dk >= 0, where Dk is the determinant of the left-upper k by k submatrix of A

  5. All pivots of S are positive

Explore top notes

note
Chapter 7 - Enzymes
Updated 1279d ago
0.0(0)
note
Conformity
Updated 542d ago
0.0(0)
note
Riñón
Updated 1202d ago
0.0(0)
note
Chapter 7 Vocab
Updated 1242d ago
0.0(0)
note
Chapter 7 - Enzymes
Updated 1279d ago
0.0(0)
note
Conformity
Updated 542d ago
0.0(0)
note
Riñón
Updated 1202d ago
0.0(0)
note
Chapter 7 Vocab
Updated 1242d ago
0.0(0)