Maple Tool2.mws

Maple Tool 2

This tool is designed to be used with Exercise 9 in Section 5.3.

>    x:=t->cos(t); y:=t->sin(t);

x := proc (t) options operator, arrow; cos(t) end proc

y := proc (t) options operator, arrow; sin(t) end proc

>    plot([x(t),y(t), t=0..2*Pi], scaling=constrained, thickness=2);

[Maple Plot]

>