Let $V = \text{span}\{(1,1,0,-1), (0, 1, 1, -2) (1,2,2,1)\}$
- Find an orthonormal basis for V.
- Find the projection of $x = (2, 4, 3, -2)$ onto V. Interpret your answer geometrically.
For the most part, I have no problems here. Using Gram-Schmidt, I found a normalised orthonormal basis;
$B = \frac{1}{\sqrt3}\begin{pmatrix}1\\1\\0\\-1\end{pmatrix}, \frac{1}{\sqrt3}\begin{pmatrix}-1\\0\\1\\-1\end{pmatrix}, \frac{1}{\sqrt78}\begin{pmatrix}1\\4\\6\\5\end{pmatrix} $
These are all unit vectors, say $v_1, v_2, v_3$, therefore $\text{Proj}_{V}x = (x\cdot v_1)v_1 + (x\cdot v_2)v_2 + (x\cdot v_3)v_3$
So I find a projection; $\text{Proj}_{V}x = \begin{pmatrix}\frac23\\\frac53\\3\\2\end{pmatrix} $
But what does it mean by "Interpret your answer geometrically"?