Say the place is parametrized as $x_1 = y_1 + y_2$ , $x_2=y_1-y_2 , x_3 = y_1+y_2$ and a point in $\mathbb{R}^3$ $x_1 = 2 , x_2 = 1 , x_3 = 3$
What would be the most efficient way to find the projection without using a normal vector (noticing that the plane is characterized by $(1,1,1)$ and $(1,-1,1)$, then finding that the normal vector is $(1,0,-1)$)? where then we have $(2,1,3) - t(1,0,-1) = (x_1^0 , x_2^0 , x_3^0) + y_1(1,1,1) + y_2(1,-1,1)$ and solving for the scalars etc.
I understand there is a "Normal equation" I could use, but I am not familiar with the concept, any hints are much appreciated