Gram-Schmidt and Projections

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/3

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.

4 Terms

1
New cards

What is the Gram-Schmidt process?

A method to convert a linearly independent set \{v_1,…,v_n\} into an orthonormal basis \{u_1,…,u_n\}: u_1=\frac{v_1}{\|v_1\|}, u_k=\frac{v_k-\sum^{k-1}_{j=1}\langle v_k,u_j\rangle u_j}{\|v_k-\sum^{k-1}_{j=1}\langle v_k,u_j\rangle u_j\|}

2
New cards

What is the orthogonal projection of a vector v onto a subspace W?

The unique vector proj_W(v)\in W such that v-proj_w(v)\in W^{\bot}. It minimizes the distance from v to W.

3
New cards

Projection onto a line spanned by u\in V is calculated by…

proj_u(v)=\frac{\langle v,u\rangle}{\langle u,u \rangle}u

4
New cards

What are common uses for the Gram-Schmidt process?`

The Gram-Schmidt process is used to:

  • Construct an orthonormal basis from any linearly independent set

  • Simplify computations in QR decomposition

  • Make inner product calculations easier

  • Facilitate orthogonal projections and applications in least squares problems.