Chapter 6 Flashcards

1
Q

Calculate Matrix Magnitude

A
  1. Multiply matrix by itself. (Should be 1x1)
  2. Result is squared.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Compute Unit Vector

A
  1. Compute Magnitude
  2. ( 1 / ||w|| ) * w
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Distance between two vectors

A
  1. Subtract element wise.
  2. Compute magnitude (result)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Identify if set is orthogonal

A
  1. Multiply elementwise between vectors
  2. Add components. Must be equal to 0
    Keep in mind u1 + u2 = 0 , u2 + u3 = 0, etc.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Express Y as Linear Combination

A
  1. C = ( y * u ) / u * u
    for every basis vector
  2. Combine into equation Y = C1U1 + C2U2 + C3U3
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Calculate yHat / Span / Orthogonal Projection

A
  1. (( y * u ) / (u * u) ) * U
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Orthogonal Projection is also known as

A

Span

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

Span is also known as

A

Orthogonal projection

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

What is an orthonormal set

A
  1. Orthogonal Set
  2. Vectors are “unit vectors”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a Unit Vector

A

Magnitude of 1.
u * u = 1

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