finals: sections 5.9 - 7.4 Flashcards

1
Q

what is a probability vector?

A

a vector with nonnegative entries that add up to one

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

what is a stochastic matrix?

A

a square matrix that holds probability vectors

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

what is a markov chain?

A

a sequence of probability vectors such that
x1 = Px0, x2 = Px1, …., where xk+1 = Pxk

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

what is a steady state vector?

A

a probability vector for a stochastic matrix P such that Pq =q

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

if P is a stochastic matrix, then ______________

A

1 is an eigenvalue of P

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

when is a stochastic matrix regular?

A

if there exists a positive integer k such that P^k has strictly positive entries

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

what is the dot product (inner product) of two vectors?

A

u^T * v

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

what is a unit vector?

A

a vector of length 1

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

why do we care about orthogonal basis?

A

the weights can be computed easily

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

why are orthonormal matrices important in computer algorithms?

A

for matrix computations

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

an mxn matrix has orthonormal columns if and only if ________

A

U^T * U = I

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

what is an orthogonal matrix?

A

a square matrix U such that U^T = U^-1 and U has orthonormal columns <– implied by saying U is an orthogonal matrix

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

what are the properties of the dot product?

A

1) u (dot) v = v (dot) u
2) (u + v) (dot) w = u (dot) w + v (dot) w
3) (cu) (dot) v = c(u (dot) v) = u (dot) (cv)
4) u (dot) u >= 0, u (dot) u = 0 if and only if u = 0

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

what is the definition of the length (or norm) of a vector?

A

||v|| = √(v * v) = √(v1^2 + v2^2 + … Vn^2)
and
||v^2|| = v * v

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

for u and v in R^n, the distance between u and v, written as dist(u, v) is the length of the vector u - v. That is, ______________

A

dist(u, v) = ||u - v||

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

when are two vectors orthogonal to each other?

A

when their dot product equals zero

17
Q

two vectors are orthogonal to each other if and only if (use Pythagorean theorem) __________

A

||u + v||^2 = ||u||^2 + ||v||^2
if the length of (u + v)^2 is equal to the length of u squared plus v squared

18
Q

if S + {u1, …, up} is an orthogonal set of nonzero vectors in R^n , then S is ____________

A

linearly independent and a basis for the subspace spanned by S

19
Q

what is an orthogonal basis for W?

A

it is a set of vectors that are orthogonal and are also a basis for W

20
Q

what is an orthonormal set?

A

an orthogonal set of all unit vectors

21
Q

an mxn matrix has orthonormal columns if and only if ____________

A

U^T*U = I

22
Q

what is a symmetric matrix?

A

a matrix A such that A^T = A

23
Q

if A is symmetric, then any two eigenvectors from different eigenspaces are ______________

A

orthogonal

24
Q

an nxn matrix A is orthogonally diagonalizable if and only if ____________

A

A is symmetric

25
Q

what is orthogonally diagonalizable?

A

A = PDP^-1, but since a is orthogonal, P^-1 = P^T so
A = PDP^T

26
Q

when is the length of Axk maximized?

A

when x = v1, the eigenvector corresponding to the largest eigenvalue

27
Q

what is the definition of the singular value decomposition?

A

let A be an mxn matrix with rank r, then there exists an mxn matrix Σ for which the diagonal entries in D and the first r singular values of A, and there exists an mxm orthogonal matrix U and an nxn orthogonal matrix V such that A = UΣV^T

28
Q

is the SVD, are U and V unique?

A

no

29
Q

what are the singular values of a matrix A?

A

the square roots of the eigenvalues of A^T * A

30
Q

which matrix factorizations always exist for any matrix?

A

SVD ONLY