Linear Algebra Flashcards

(21 cards)

1
Q

In SVD how can you find the orthogonal basis for the row space of A

A

The row space is shown by the columns of Q1 that correspond to the non zero eigenvalues of AtA

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

In SVD how can you find the orthogonal basis for the null space of A

A

The null space is given by the columns of Q1 that correspond to the zero eigenvalues of AtA

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

Method for SVD

A

Just finding the eigenvectors of AtA and AAt and putting sqrt of eigenvalues on leading diagonal.

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

What is full rank

A

All the columns/rows in the matrix are linearly independent

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

What is the rank of a matrix

A

The number of linearly independent column vectors in the matrix, OR the number of linearly independent row vectors in the matrix.

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

Relation of a matrices rank to it’s row echelon form

A

Equal to the number of non zero rows in the row echelon matrix

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

What does the pseudo inverse do

A

If matrix A maps r-dimensional row space to r-dimensional column space. A+ is the matrix which inverts this

A+A x = x

A+ b is in the row space for any b

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

Is A = Q1 Σ Q2t what does A+ equal

A

A+ = Q2 Σ+ Q1t

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

What is a rank deficient matrix

A

One that isn’t full rank

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

Befit of using pseudo inverse with ill conditioned least squares problem

A

It enhances the stability of the calculations. For example a small deviation in a value in b could otherwise cause a large change in the solution, but this no longer happens when using pseudo inverse.

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

How to find l1 norm of a vector

A

Sum the magnitude of each term

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

How to find the l2 norm of a vector

A

Sum the squares of the values in the matrix and sqrt

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

Find the l infinity norm of a matrix

A

The maximum individual value in the vector

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

Definition of a matrix norm

A

Norm of Ax divided by norm of x (for all x)

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

What condition number implies problem is well conditioned

A

Order 20-50

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

What condition number magnitude implies an ill conditioned problem

A

Much more than 100

17
Q

Condition for a matrix A to be positive definite

A

All the eigenvalues of A are positive

The determinant of all the principal minors are positive

xt A x is positive for all non zero x

18
Q

Condition for a matrix A to be positive semi-definite

A

xt A x is positive for all non zero x

19
Q

What can we do as an alternative to LU decomp when A is a symmetric positive definite matrix

20
Q

What does a high condition number make the fitting problem sensitive to

A

Perturbations or round off errors in the right hand side (b)

21
Q

What’s the effective rank of a matrix

A

Found the same way as rank, number of non zero eigenvalues values, but you can neglect v small eigenvalues, thus reducing the rank.