Chapter 6 Flashcards
1
Q
Calculate Matrix Magnitude
A
- Multiply matrix by itself. (Should be 1x1)
- Result is squared.
2
Q
Compute Unit Vector
A
- Compute Magnitude
- ( 1 / ||w|| ) * w
3
Q
Distance between two vectors
A
- Subtract element wise.
- Compute magnitude (result)
4
Q
Identify if set is orthogonal
A
- Multiply elementwise between vectors
- Add components. Must be equal to 0
Keep in mind u1 + u2 = 0 , u2 + u3 = 0, etc.
5
Q
Express Y as Linear Combination
A
- C = ( y * u ) / u * u
for every basis vector - Combine into equation Y = C1U1 + C2U2 + C3U3
6
Q
Calculate yHat / Span / Orthogonal Projection
A
- (( y * u ) / (u * u) ) * U
7
Q
Orthogonal Projection is also known as
A
Span
8
Q
Span is also known as
A
Orthogonal projection
9
Q
What is an orthonormal set
A
- Orthogonal Set
- Vectors are “unit vectors”
10
Q
What is a Unit Vector
A
Magnitude of 1.
u * u = 1