> x:=t*cos(2*t)^2+t*sin(t)^2; > y:=t*cos(2*t)^2-t*sin(t)^2; > z:=Pi*abs(t); 2 2 x := t cos(2 t) + t sin(t) 2 2 y := t cos(2 t) - t sin(t) z := Pi | t | > with(plots): > spacecurve([x,y,z],t=-8*Pi..-Pi,numpoints=2000, > axes='FRAMED');
> x:=(3+cos(12*t))*sin(t); > y:=(3+cos(12*t))*cos(t); > z:=Pi*t; x := (3 + cos(12 t)) sin(t) y := (3 + cos(12 t)) cos(t) z := Pi t > spacecurve([x,y,z],t=0..10*Pi,numpoints=1000, > axes='NONE',scaling='CONSTRAINED', > thickness=2,orientation=[45,75]);