Plotting the space curve of intersection

To get the curve of intersection, let [Maple Math] , [Maple Math] , and then solve [Maple Math] for [Maple Math] as a function of [Maple Math] . The curve is thus given by:

> intcurve:=[t,t^2,1/2*sqrt(16-t^2-4*t^4)];

[Maple Math]

We also need to find the [Maple Math] and which [Maple Math] :

> solve(16-t^2-4*t^4=0,t);

[Maple Math]

> evalf(%);

[Maple Math]

The last two solutions are imaginary so we can ignore them. We thus let [Maple Math] go from -1.37 to 1.37:

> spacecurve(intcurve,t=-1.37..1.37,thickness=3,axes=frame,labels=['x','y','z'],orientation=[60,55]);

[Maple Plot]

Looking good!

>