7-1-3
> restart;
> x:=2*cos(t)+cos(-2*t):;
> y:=2*sin(t)+sin(-2*t):;
> a:=plot([x,y,t=-Pi..Pi],color=red,scaling=constrained):
> a:;
> x1:=diff(x,t):;
> y1:=diff(y,t):;
> x2:=diff(x1,t):;
> y2:=diff(y1,t):;
> f:=x1^2+y1^2:;
> g:=x1*y2-y1*x2:;
> r:=f^(3/2)/abs(g):;
> xc:=x-f/g*y1:;
> yc:=y+f/g*x1:;
> m:=[[x,y],[xc,yc]]:
> t:=n*2*Pi/100+0.001:
> plot([m$n=0..100],scaling=constrained,color=blue,axes=none);
>