1

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).

Willie Wong
  • 73,139
Trancot
  • 4,021
  • If you have a different question, please post a new question by using the Ask Question link to the top right of the page. Do not demolish an old answered question with a new one. This makes the existing answers nonsensical. – Willie Wong Apr 12 '13 at 08:15

1 Answers1

1

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]
Kaster
  • 9,722