Dot Product, Length, and Orthogonality

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Dot product u * v =

u1v1 + u2v2 + … + unvn

2
New cards

The length (or norm) of a vector v is

||v|| = sqrt(v12 + v22 + …. + vn2)

3
New cards

A vector v with length 1 is called

a unit vector

4
New cards

A set of vectors {u1, u2, ….. , up} in Rn is called an orthogonal set

if ui * uj = 0 when i ≠ j

5
New cards

An orthogonal basis of a subspace W of Rn is a

basis of W that is an orthogonal set.

6
New cards

A set {u1 , …, up} is called an orthonormal set if

it is an orthogonal set and u1 , u2 , …., up are unit vectors

7
New cards

Any orthogonal set of nonzero vectors can

be normalized to get an orthonormal set.

8
New cards

A basis that is orthonormal is called an

orthonormal basis

9
New cards

The orthogonal projection of y onto L is

yL = ((y*u)/(u*u)) * u

10
New cards

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)