Mathematica and Vector Representation of Planes

140 Views Asked by At

If the vectors $\vec{u}$ and $\vec{v}$ emanate from a point $A$, then its equation is

$\hspace{2in}$$x = A + su + tv$,

where $s, t \in \mathbb{R}$. I'm wondering how I can display these planes in Mathematica.

ppp

Thank you, Kaster (see below).

1

There are 1 best solutions below

5
On BEST ANSWER

This is math.SE, not Mathematica.SE. But your question is simple enough so I can give you an answer

a1 = 1;
a2 = 2;
a3 = 3;
u1 = 1;
u2 = 2;
u3 = 3;
v1 = 4;
v2 = 5;
v3 = 6;
ParametricPlot3D[{a1 + s*u1 + t*v1, a2 + s*u2 + t*v2,a3 + s*u3 + t*v3}, {s, -10, 10}, {t, -10, 10}, AspectRatio -> Automatic]