Spectral Methods Flashcards

1
Q

What is a singular matrix?

A

A matrix with no inverse

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

What is a non-singular matrix?

A

A matrix with an inverse

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

What is the result of multiplying a matrix with its inverse?

A

An identity matrix

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

What is the determinant of matrix A if A is singular?

A

determinant = 0

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

What is the determinant of matrix A if A is non-singular?

A

determinant is != 0

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

What is an eigenvalue of a matrix?

A

An eigenvalue is a scalar such that multiplying an n-vector by the matrix and by the eigenvalue give the same result. Also, the n-vector is called an eigenvector

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

How are eigenvalues of a matrix A conventionally written?

A

σ(A) = (λ1, λ2, λ3, …, λk, …, λn)
This is the spectrum of A
|λ1| >= |λk+1|, 1 <= k < n (in descending size order)

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

If λ1 is a unique eigenvalue of A then it is …?

A

The dominant eigenvalue

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

What is the largest eigenvalue called (whether dominant or not)?

A

Spectral radius

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

if λ is a complex number eigenvalue of A, what can we say about the conjugate of λ?

A

It is also an eigenvalue

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

What do the Perron-Frobenius Theorem conditions guarantee?

A

They guarantee they existence of a positive real largest eigenvalue (not necessarily a unique/dominant one though).
This also guarantees a positive real eigenvector for that associated eigenvalue.

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

What does the power method find?

A

An associated eigenvector for a dominant eigenvalue

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

What are the steps for the power method?

A
  1. Choose an initial “guess” for x0
  2. Set i=0.
  3. Compute x_(i+1)=A∙x_i
  4. Increment i
  5. Repeat 3-4 again and again until i≥MAX where MAX is user-defined
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the Rayleigh Quotient help us find?

A

Dominant eigenvalues

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

What do we already need in order to use the Rayleigh Quotient?

A

an approximate eigenvector x

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

What is the Rayleigh Quotient?

A

((A . x) . x^T) / (x . x)

17
Q

If A is non-singular, how do we find the smallest eigenvalue?

A

A’s smallest eigenvalue is 1/(A’s inverse’s largest eigenvalue)