4-5.mws

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

>

> 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=yellow,scaling=constrained,axes=none);

[Maple Plot]

>