Chapter 1 Intro to Vectors Flashcards

1
Q

what is the picture of all combinations of cu

A

the combinations of cu fill a line through [0]

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

what is the picture of all combinations of cu+dv

A

the combinations of cu fill a plane through [0]

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

what is the picture of all combinations of cu+dv+ew

A

the combinations of cu fill a space through [0]

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

what happens if w can be described by cu+dv

A

we do not get the extra dimension

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

what is true when the dot product is zero

A

the vectors are perpendicular

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

how to find the length of a vector

A

dot product of vector with itself is length squared

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

find cos(a) for vectors u and v

A

cos(a) = (u.v)/(|u||v|)

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

what is angle between [1 0] and [1 1]

A

cos(a)=1/((1)(Sqrt[2])) therefore a=45d

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

what is an inner product

A

another name for dot product, it is inside a matrix

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

since |cos(a)|<=1 what is true about dot product

A

|u.v| <= |u||v|

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

how to compute u.v

A

u1v1+u2v2

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

is dot product commutative?

A

yes

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

what is a unit vector

A

a vector with length 1 u.u=1

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

how to find length of v in matlab

A

norm(v)

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

5 basic problems in LA

A

1) Ax=b -> find x
2) Ax=λx -> find λx
3) Av=σu -> find v,σ,u
4) minimize ||Ax^2||/||x^2||
5) Factor A

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

How do we know is Ax=b has a solution

A

Is b in the column space of A? Then yes

17
Q

What is SVD?

A

find simplest σuv^T

18
Q

What is principle component analysis?

A

find all σuv^T

19
Q

What is the column space?

A

The linear combination of all the coumns

20
Q

Procedure to make C, column space, a basis of A

A

1) if c0 of A is not 0 put it into C
2)for each Cx of A, if Cx is not a combination of C put it into C
C will have r columns <= n, r is rank of A

21
Q

Define rank

A

number of independant rows and columns of A
A=CR R=rref(A)
A->(m x n) -> (m x r)(r x n)

22
Q

Define symmetric matrix

A

S=S^T, for all i,j Si,j=Sj,i

23
Q

Define orthognal matrix

A

Q^T=Q^-1, qi,j={0 for i!=j, 1 for i=j}

24
Q

Describe the elimination process

A

E=series of elimination steps. Start with A, multiply by E, end with U. AE=L and A=LU. Lower triangular L holds forward elimination steps, and U is upper triangular for back substitution.

25
Q

What are eigenvalues and eigenvectors for?

A

They are not for Ax=b they are for du/dt=Au. In the special direction of the eigenvector A acts like a number, the eigenvector, and the problem is one dimensional.

26
Q

What is a positive definite matrix?

A

When the eigenvalues are all positive.

27
Q

What are four special linear combinations?

A

1) 1v+1w, sum
2) 1v-1w, difference
3) 0v+0w, zero vector
4) cv+0w, vector cv in the direction of v, scalar multiple of v

28
Q

Add two column vectors

A
v=[v1;v2] w=[w1;w2]
v+w=[v1+w2;v2+w2]
or
v=(v1,v2) w=(w1,w2)
v+w=(v1+w1,v2+w2)
29
Q

what is a unit vector

A

a vector that u.u=1

30
Q

when is v.w=0

A

then v and w are perpendicular

31
Q

how to multiply Ax by row

A

A=(r1,r2,r3)

Ax = [r1.x, r2.x, r3.x ]

32
Q

how to multiply Ax by column

A

A=[c1,c2,c3]

Ax= x1c1+x2c2+x3*c3

33
Q

What is solution to Ax=b

34
Q

What is the difference matrix

A

[ 1,0,0; 1,-1,0; 0,-1,1 ]

35
Q

What is cyclic difference matrix

A

[ 1,0,-1; -1,1,0; 0,-1,1 ]

36
Q

when are u,v,w independent

A

only 0u+0v+0w=0

37
Q

when are u,v,w dependent

A

many combinations of u+v+w give b=0