I have a plane $$z=x+3y$$ and an elliptical cylinder $$\frac{x^2}{4} + \frac{y^2}{9}=1$$ and I want to plot their intersection.
I have $$x = \pm 2 \sqrt{1 - \frac{v^2}{9}}$$ and a parametric equation
$$ \vec{r}=\big{\langle} \pm 2 \sqrt{1 - \frac{v^2}{9}}, v, u + 3v \big{\rangle} $$
If I plot this in maple I get a surface, but I am expecting a curve:
plot3d([[-2*sqrt(1 - v^2/9), v, u + 3*v], [2*sqrt(1 - v^2/9), v, u + 3*v]], u = 0 .. 4, v = -3 .. 3)
I don't see why this shape has any vertical (z-dimension) length.

u = 0..4What is $u$ here? – dxiv Jul 17 '21 at 07:01