回最上方
回首頁 MAPLE作業 數學教材教法網站 有關MAPLE的連結 寄信給我  
我做網頁的工具 苗栗縣立致民國中  

   

七月二十五日作業
Construct the line segments joining points of the curve with the corresponding center of curvature for each of the following: the nephroid, the astroid, the deltoid and the cardioid.
1.第一個  
2.第二個  
3.第三個  
4.第四個  
Construct an animation displaying the various positions of the osculating circle of the following curves:
5.The astroid: (3 cos t + cos 3t, 3 sin t - sin 3t)  
6.he deltoid: (2 cos t + cos 2t, 2 sin t - sin 2t)  
7.The cardioid: (2 cos t - cos 2t, 2 sin t - sin 2t)  
8.The cycloid: (t + sin t, cos t)  
9.The ellipse: (5 cos t, 3 sin t)  
10.The "egg": (5*cos(t)-cos(2t), 3*sin(t)-sin(2t) 按我看解答
11.The lemniscate of Bernoulli: (cos t / (2-(cost)^2), sin t cos t / (2-(cost)^2))  
12.The curve (5 cos(t)^2 + sin(2 t), 3 cos(3 t) - sin(4 t))  
13.The spiral:  
 

 

Maple作業
7/04
7/06
7/11
7/13
7/18
7/20
7/25
7/27
8/01
8/03
8/08
8/10

> restart:

> with(plots):

Warning, the name changecoords has been redefined

> x:=5*cos(t)-cos(2*t):

> y:=3*sin(t)-sin(2*t):

> a:=plot([x,y,t=0..2*Pi],scaling=constrained,axes=none,color=black):

> x1:=diff(x,t):

> y1:=diff(y,t):

> x2:=diff(x1,t):

> y2:=diff(y1,t):

> f:=((x1)^2+(y1)^2)/(x1*y2-x2*y1):

> xc:=x-f*y1:

> yc:=y+f*x1:

> r:=((x1)^2+(y1)^2)^(3/2)/abs(x1*y2-x2*y1):

> b:=animate([xc+r*cos(s),yc+r*sin(s),s=0..2*Pi],t=0..2*Pi,axes=none,
scaling=constrained,color=blue,frames=50):

> c:=animate([(1-s)*xc+s*x,(1-s)*yc+s*y,s=0..1],t=0..2*Pi,axes=none,
scaling=constained,color=red,frames=50):

> display(a,b,c);

[Maple Plot]