Construct this pretty flower :

> plot((1+cos(3*t)+sin(3*t)^2),t=0..2*Pi,coords=polar,axes=none,scaling=constrained);

[Maple Plot]

Contruct the line segment s joining (cos(t),0) with (0,sin(t)) as t ranges over [0,2 Pi ]

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> m:=[[x,0],[0,y]];

m := [[cos(t), 0], [0, sin(t)]]

> t:=n*Pi/50;

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct the velocity vector field along a constant motion around a circle

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> m:=[[x,y],[x-y,y+x]];

m := [[cos(t), sin(t)], [cos(t)-sin(t), sin(t)+cos(...

> t:=n*Pi/50;

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct this figure

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> m:=[[x,y],[x-t*y,y+t*x]];

m := [[cos(t), sin(t)], [cos(t)-t*sin(t), sin(t)+t*...

> t:=n*Pi/50;

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct the line segments joining [cos(t),sin(t)] with [cos(2t),sin(2t)] as t ranges over [0,2 Pi ]

> restart;

> x1:=cos(t);

x1 := cos(t)

> y1:=sin(t);

y1 := sin(t)

> x2:=cos(2*t);

x2 := cos(2*t)

> y2:=sin(2*t);

y2 := sin(2*t)

> m:=[[x1,y1],[x2,y2]];

m := [[cos(t), sin(t)], [cos(2*t), sin(2*t)]]

> t:=k*Pi/50;

t := 1/50*k*Pi

> plot([m$k=1..100],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct this figure

> restart;

> x1:=cos(t);

x1 := cos(t)

> y1:=sin(t);

y1 := sin(t)

> x2:=cos(3*t);

x2 := cos(3*t)

> y2:=sin(3*t);

y2 := sin(3*t)

> m:=[[x1,y1],[x2,y2]];

m := [[cos(t), sin(t)], [cos(3*t), sin(3*t)]]

> t:=k*Pi/50;

t := 1/50*k*Pi

> plot([m$k=1..100],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct this graph associated with the logistic equation with a=3.7

> x:=0.7;

x := .7

> a:=3.7;

a := 3.7

> y:=a*x*(1-x);

y := .777

> m:=[];

m := []

> for k to 100 do m:=[op(m),[x,x],[x,y]]:x:=y:y:=a*x*(1-x):od:

> plot(m,scaling=constrained);

[Maple Plot]

>

Draw 20 concentric circles as thus:

> restart;

> x:=r*cos(t);

x := r*cos(t)

> y:=r*sin(t);

y := r*sin(t)

> m:=[x,y,t=0..2*Pi];

m := [r*cos(t), r*sin(t), t = 0 .. 2*Pi]

> plot([m$r=1..20],color=red,scaling=constrained,axes=none);

[Maple Plot]

Construct the circles with center at (cos(t),sin(t)) passing through the point (1,0) with t ranging over [0,2 Pi ]

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> r:=(2-2*x)^(1/2);

r := sqrt(2-2*cos(t))

> m:=[x+r*sin(s),y+r*cos(s),s=0..2*Pi];

m := [cos(t)+sqrt(2-2*cos(t))*sin(s), sin(t)+sqrt(2...

> t:=n*Pi/50;

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,axes=none,scaling=constrained);

[Maple Plot]

Construct the circles with center at (cos(t),sin(t)) and tangent to the y-axis with t ranging over [0,2 Pi ]

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> r:=abs(x);

r := abs(cos(t))

> m:=[x+r*sin(s),y+r*cos(s),s=-Pi..Pi];

m := [cos(t)+abs(cos(t))*sin(s), sin(t)+abs(cos(t))...

> t:=n*Pi/50;

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,axes=none,scaling=constrained);

[Maple Plot]

Construct the circles with center at (cos(t),sin(t)) and passing through (2cos(t)/3+cos(2t)/3,2sin(t)/3+sin(2t)/3) with t ranging over [0,2 Pi ]

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> x1:=2/3*x+1/3*cos(2*t);y1:=2/3*y-1/3*sin(2*t);

x1 := 2/3*cos(t)+1/3*cos(2*t)

y1 := 2/3*sin(t)-1/3*sin(2*t)

> r:=((x-x1)^2+(y-y1)^2)^(1/2);

r := sqrt((1/3*cos(t)-1/3*cos(2*t))^2+(1/3*sin(t)+1...

> m:=[x+r*sin(s),y+r*cos(s),s=0..2*Pi];

m := [cos(t)+sqrt((1/3*cos(t)-1/3*cos(2*t))^2+(1/3*...
m := [cos(t)+sqrt((1/3*cos(t)-1/3*cos(2*t))^2+(1/3*...

> t:=n*Pi/50;

>

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,axes=none,scaling=constrained);

[Maple Plot]

Construct this figure:

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> x1:=3/4*x+1/4*cos(3*t);y1:=3/4*y-1/4*sin(3*t);

x1 := 3/4*cos(t)+1/4*cos(3*t)

y1 := 3/4*sin(t)-1/4*sin(3*t)

> r:=((x-x1)^2+(y-y1)^2)^(1/2);

r := sqrt((1/4*cos(t)-1/4*cos(3*t))^2+(1/4*sin(t)+1...

> m:=[x+r*sin(s),y+r*cos(s),s=0..2*Pi];

m := [cos(t)+sqrt((1/4*cos(t)-1/4*cos(3*t))^2+(1/4*...
m := [cos(t)+sqrt((1/4*cos(t)-1/4*cos(3*t))^2+(1/4*...

> t:=n*Pi/50;

>

t := 1/50*n*Pi

> plot([m$n=1..100],color=red,axes=none,scaling=constrained);

[Maple Plot]

Construct this pattern:

> restart;

> x:=cos(t);

x := cos(t)

> y:=sin(t);

y := sin(t)

> m:=[x+t*sin(s),y+t*cos(s),s=0..2*Pi];

m := [cos(t)+t*sin(s), sin(t)+t*cos(s), s = 0 .. 2*...

> t:=n*Pi/20;

t := 1/20*n*Pi

> plot([m$n=1..100],color=red,axes=none,scaling=constrained);

[Maple Plot]

Construct the reflections of a light ray inside a square :

> restart;

> m:=1.7123:x:=0:y:=0:v:=[[x,y]]:

> for k to 100 do xx:=floor(x)+1:yy:=floor(y)+1:if (yy-y)>m*(xx-x) then x:=xx:y:=m*x else y:=yy:x:=y/m:fi: v:=[op(v),[1-abs(x-2*floor(x/2)-1),1-abs(m*x-2*floor(m*x/2)-1)]] od:

> plot(v,scaling=constrained);

[Maple Plot]

>