Unit 3 Flashcards

1
Q

Transpose

A

a function that swaps rows and cols

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

symbol for transpose

A

a vector to the power of T

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

what is V^T)^T equal to

A

V

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

what is L^T equal to

A

U and vise versa

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

what is P^T *P equal to

A

PP^T and Identity

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

what is P^T equal to

A

P^-1

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

what is (A*B)^T equal to

A

B^T A^T

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

what is norm

A

the sum of every item in a vector squared then square rooted

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

notation for norm of v

A

||V||

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

what is a scalar value (lowercase alpha) multiplied by the norm of a vector

A

the norm of the vector multiplied by scalar value

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

what is norm squared of v

A

V^t * V

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

what is the error

A

e(x) and the goal is to make it as small as possible

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

notation for best approx of x

A

x*

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

what is required to find the best fit line of x

A

columns of a must be linearly independent

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

meaning of e(x) being 0

A

means that the system has a unique solution

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

Steps in detemining least squared

A
  1. decide which model to fit
  2. convert to least squares Ax= b–> phi alpha = y
  3. solve using LU or inverse
17
Q

what is phi

A

matrix of x values and the coefficients of b

18
Q

what is lowercase alpha

A

unknowns

19
Q
A