Analysis 3D, Der Hut und Verwandtes

Mathematik mit MuPAD 4, Prof. Dr. Dörte Haftendorn 02  Update Juni 07

https://mathe.web.leuphana.de             www.mathematik-verstehen.de

####################################################################

Hut in der Vorlesung, 3D- Lernen

plotfunc3d(9-x^2-y^2,x=-5..5,y=-5..5,ViewingBoxZRange=-10..10)

MuPAD graphics

Mit Ebene in Höhe a

plotfunc3d(9-(x^2+y^2),a,x=-5..5,y=-5..5,a=-10..10,ViewingBoxZRange=-10..10)

MuPAD graphics

image

Edlere Ausführung mit beweglichen Kurven

hut:=(x,y)->9-(x^2+y^2); hut(x,y)

math

math

hutg:=plot::Function3d(hut(x,y),x=-5..5,y=-5..5,ViewingBoxZRange=-10..10):

plot(hutg)

MuPAD graphics

schnittezy:=plot::Curve3d([x,y,hut(x,y)],x=-5..5,y=-3..3,

            LineWidth=2,LineColor=[1,1,0], Axes=Origin):

plot(schnittezy,hutg)

MuPAD graphics

image

schnittezx:=plot::Curve3d([x,y,hut(x,y)],y=-5..5,x=-3..3,

            LineWidth=2,LineColor=[1,0,1])

math

plot(hutg, schnittezx)

MuPAD graphics

r:=a->sqrt(9-a):rr:=5:

schnittexy:=plot::Curve3d([r(a)*cos(t),r(a)*sin(t),a],t=0..2*PI,a=-10..9,

            LineWidth=2,LineColor=[0.2,1,0.2])

math

plot(schnittexy,hutg,schnittezx, schnittezy)

MuPAD graphics

 

 

 

 

schraubetoll:=plot::Curve3d([r(a)*cos(t),r(a)*sin(t),a*t],t=0..6*PI,a=-10..9,

            LineWidth=2,LineColor=[0.2,1,0.2])

math

rr:=4:  schraube:=plot::Curve3d([t*cos(t),t*sin(t),t],t=0..a,a=16*PI..0,

            LineWidth=1,LineColor=[0.2,1,0.2],

AnimationStyle=BackAndForth)

math

plot(schraube)

MuPAD graphics

billig:=plot::Curve3d([cos(t),sin(t),t],t=0..a, a=0..20*PI,Mesh=300):plot(billig)

MuPAD graphics

indien:=plot::Curve3d([1/t*cos(t),1/t*sin(t),t],t=0..a, a=0..20*PI,Mesh=300):plot(indien)

MuPAD graphics

Tanne:=plot::Curve3d([60/t*cos(t),60/t*sin(t),t],t=0.3..a, a=0..20*PI,Mesh=300,

ViewingBox=[-5..5,-6..5,0..60]

):plot(Tanne)

MuPAD graphics

Schornstein:=plot::Function3d((60/(x^2+y^2)),x=-5..5,y=-5..5,ViewingBoxZRange=0..60)

math

plot(Schornstein,Tanne)

MuPAD graphics

Schornstein2:=plot::Function3d((60/sqrt(x^2+y^2)),x=-5..5,y=-5..5,ViewingBoxZRange=0..60):

plot(Schornstein2,Tanne)

MuPAD graphics