![[Maple Plot]](22.gif)
> plot([cos(t),sin(t),t=0..2*Pi],scaling=constrained,axes=none);
> m:=[cos(x),cos(n*x),x=0..Pi];
![]()
> plot({m$n=1..6},axes=none);
Draw this pretty leaf:
> w:=1+cos(t)/2:z:=t/6-sin(2*t)/12:x:=w*cos(z):y:=w*sin(z):
plot([x,y,t=0..12*Pi],axes=none,scaling=constrained);
![[Maple Plot]](28.gif)
![]()
> m:=[x,binomial(100,k)*x^(100-k)*(1-x)^k,x=0..1]:
> plot({m$k=0..100},axes=none);

> m:=64;
> a:=plot([[r*cos(t+2*Pi*k/m),r*sin(t+2*Pi*k/m),t=3..5]$k=1..m],scaling=constrained,color=red,axes=none):
> b:=plot([[r*cos(t+2*Pi*k/m),-r*sin(t+2*Pi*k/m),t=3..5]$k=1..m],scaling=constrained,color=blue,axes=none):
> with(plots):
> display(a,b);
Reference: T. Cook: The
Curves of Life.
[0,4
]>
plot(cos(7*t/2)+1/4,t=0..4*Pi,coords=polar,axes=none,scaling=constrained);
![[Maple Plot]](212.gif)
> plot(2-cos(3*t)-cos(31*3*t/32),t=0..64*Pi,coords=polar,
numpoints=1000,axes=none,scaling=constrained);
![[Maple Plot]](213.gif)
Reference: William F. Rigge, Envelope Rosettes,
Amer. Math. Monthly, (1920), p. 152.
![[Maple Plot]](214.gif)
> plot(100+t+15*cos(3.05*t), t = 0
.. 200, coords =
polar, axes = none,scaling=constrained);