1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Dot product u * v =
u1v1 + u2v2 + … + unvn
The length (or norm) of a vector v is
||v|| = sqrt(v12 + v22 + …. + vn2)
A vector v with length 1 is called
a unit vector
A set of vectors {u1, u2, ….. , up} in Rn is called an orthogonal set
if ui * uj = 0 when i ≠j
An orthogonal basis of a subspace W of Rn is a
basis of W that is an orthogonal set.
A set {u1 , …, up} is called an orthonormal set if
it is an orthogonal set and u1 , u2 , …., up are unit vectors
Any orthogonal set of nonzero vectors can
be normalized to get an orthonormal set.
A basis that is orthonormal is called an
orthonormal basis
The orthogonal projection of y onto L is
yL = ((y*u)/(u*u)) * u
Gram - Schmidt process to produce an orthogonal basis for W using a given basis for a subspace W.
v1 = w1
v2 = w2 - ((w2 * v1)/(v1 * v1))v1 (formating is hard, the second part of the equation is literally just the orthogonal projection of y onto L with w2 replacing y and v1 replacing u)