I was trying to find the distance between the point $z = (0,0,1,0)$ to the plane $\Pi$ that passes through the point $x_{0} = (1,0,0,0) $ and is parallel to the vectors $v_{1} = (1,-1,1,-1)$ and $v_{2} = (0,2,2,0)$.
It is done using the Gram-Schmidt procedure in the solutions, but there are some steps in the middle that I do not understand.
For example, the solution defines $\Pi_{0} = \operatorname{Span}(v_{1},v_{2})$ and says $\Pi = \Pi_{0} + x_{0}$, I dont see how? Seems like a translation of the plane?
Also, in the next step, it says that the distance between the point $z$ and the plane $\Pi$ is same as the distance between the point $z-x_{0}$ and the plane $\Pi_{0}$?
And in the last step, it applies the Gram-Schmidt procedure to the vectors $v_{1},v_{2},z-x_{0}$, yielding orthonormal vectors $(w_{1},w_{2},w_{3})$?
And the required distance is $|w_{3}|$.
I see this involves a bit of visualization or technicality, any help in understnding the above points is nice!
$\Pi_0=Span(v_1, v_2)$ represent the plane parallel to vectors $v_1,v_2$ but it passes through origin. To make it contain the point $x_0$ you add $x_0$ to $\Pi_0$.
Similarly the distance between $z$ and $x_0$ is same as the distance between $z-x_0$ and origin if we shift the origin to $x_0$.
Not really sure about the last doubt.