Parametric form of a plane

Can you please explain to me how to get from a nonparametric equation of a plane like this:

$$ x_1−2x_2+3x_3=6$$

to a parametric one. In this case the result is supposed to be

$$ x_1 = 6-6t-6s$$ $$ x_2 = -3t$$ $$ x_3 = 2s$$

Many thanks.


Solution 1:

Welcome to math.stackexchange!

A plane can be defined by three things: a point, and two non-colinear vectors in the plane (think of them as giving the plane a grid or coordinate system, so you can move from your first point to any other using them).

So first, we need an initial point: since there are many points in the plane, we can pick randomly. I'll just take $x_1=6,x_2=0$ so that $x_3=0$ and we see that the point $(6,0,0)$ solves the equation.

Now I need two vectors in the plane. I can do this by finding two other points in the plane, and subtracting them from this one (the difference of two vectors points from one to the other, so if both points are in the plane their difference will point along it). I'll take the points $(0,-3,0)$, and $(0,0,2)$. Notice the simple construction of all my points: set two variables to zero and find out what the third one should be. You can almost always do this, and it's probably the easiest way to go.

So my vectors are going to be these two points minus the original one I found. $$(0,-3,0)-(6,0,0)=(-6,-3,0)$$ $$(0,0,2)-(6,0,0)=(-6,0,2)$$ Now any vector in the plane, when scaled, is still in the plane. So I can define my plane like this: $$(6,0,0)+(-6,-3,0)t+(-6,0,2)s$$

I.e. start at the first point, and move $t$ amount in one direction and $s$ amount in another, where $t$ and $s$ range over the real numbers, so they cover the whole plane. Note that each of the scaled vectors, when plugged into the equation, give $0$. So for any point here, we're doing $6+0+0=6$, which solves the original equation. Splitting this up in terms of components $(x_1,x_2,x_3)$ instead of points, we get $$x_1=6-6t-6s$$ $$x_2=-3t$$ $$x_3=2s$$

There are infinitely many other parameterizations that could have worked, so your answer could look completely different while still being completely correct. But this is probably the logic they used, in case you were wondering.

Solution 2:

One way to do it is to let $x_1 = t$ and $x_2=s$ and then solve for $x_3$.

Solution 3:

There is more than one way to write any plane is a parametric way. To write a plane in this way, pick any three points $A$, $B$, $C$ on that plane, not all in one line. Then $$f(s, t) = A + (B-A)s + (C-A)t$$