plots.mw

A parametric plot:  x(t)=t(t-1)(t-3) and y(t)=cos(4t)

> plot([t*(t-1)*(t-3),cos(4*t),t=0..Pi],thickness=3,color=magenta);

[Plot]

A polar plot: r=2cos(5theta)+1

> plot(3*cos(5*theta)+1,theta=0..2*Pi,coords=polar,thickness=3,color=blue);

[Plot]

>