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

   

八月三日作業
要看VRML檔請先下載觀看程式:按此下載
1.Construct a VRML file illustrating the intersection of two cylinders having the same radius, with axes meet and perpendicular to each other.    
2.Construct the portion of the cylinder x^2 + z^2 = 0.81 lying outside x^2 + y^2 =1. 按我看解答
3.Construct the solid bounded by the parabolic cylinder z = 4 - y^2 and the elliptic paraboloid z = x^2 + 3y^2.    
4.Construct the Astroidal Ellipsoid given by x = (cos(u)cos(v))^3, y = (sin(u)cos(v))^3 z = sin^3(v)    
5.Construct this surface:    
6.Construct this surface:    
 

 

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:

> r:=0.9:

> x:=r*cos(t):

> z:=r*sin(t):

> y1:=sqrt(1-z^2):

> y:=(1-s)*y1+s*1.5:

> a:=plot3d([x,y,z],t=0..2*Pi,s=0..1,scaling=constrained,grid=[100,10],color=red):

> b:=plot3d([(1-2*s)*x,y1,z],t=0..2*Pi,s=0..1,scaling=constrained,grid=[100,10],color=yellow):

> c:=plot3d([x,-y,z],t=0..2*Pi,s=0..1,scaling=constrained,grid=[100,10],color=red):

> d:=plot3d([(1-2*s)*x,-y1,z],t=0..2*Pi,s=0..1,scaling=constrained,grid=[100,10],color=yellow):

> with (plots):

Warning, the name changecoords has been redefined

> display(a,b,c,d);

[Maple Plot]