Jump to content

Anyone know Maple ?


Recommended Posts

Well, it's worth 10% of my year in Maths...

So here's the things...

The surface of a hill is given with the following equation f(x,y)= exp(-3*x^2-y^2); . A "THING" is located at the initial point P(1, 3/2) and wants to make the ascension while maintaining at each point of its trajectory, the direction of the maximum variation rate.

The thing is I have to find and represent it on the same figure :

a ) the surface;

b ) the ascension trajectory (gradients, differential equation of the trajectory and the particular solution, parametric equations)

c ) the projection of the traject on the domain (parametric equations)

d ) the trajectory at the same altitude h = 0,4 (parametric equations),

Instructions:

The window in which it is displayed must be -2 <= x <= 2 ; -2 <= y <= 2 et 0 <= z <= 1, axes are of the type framed and the style of the surface, wireframe

The curves must be of different colors and large=3.

Can anyone help me ?

Link to comment
Share on other sites

I'm afraid I can't help you, but I have a question :P

Do you know of any online information regarding Maple? I'll be using it next year, so maybe I can try it out already when I have some free time.

Link to comment
Share on other sites

no online info unfortunatly...and the labs I do in class are in french... care to try ?

A friend gave me clues and I was finally able to do the problem...want to know how ?

>restart: with(plots): with(linalg):
>f:=(x,y)->(-3*x^2-y^2);
>bla:=plot3d(f(x,y),x=-2..2,y=-2..2,view=[-2..2,-2..2,0..1],axes=framed,style=wireframe):
>display(bla);
>gradient:=((diff(f(x,y),x),diff(f(x,y),y)));
>subs(x=1,y=3/2,vector[gradient]]);
>trajectory:=diff(y(x),x)=gradient[2]/gradient[1];
>dsolve(diff(y(x),x)=y(x)/(3*x),y(x));
>dsolve({diff(y(x),x)=y(x)/(3*x),y(1)=3/2},y(x));
>x[a]:=t;
>y[a]:=3*t^(1/3)/2;
>plot([x[a],y[a],t=0..1]);
>ble:spacecurve([x[a],y[a],f(x[a],y[a])],t=0..1,color=pink,thickness=3):
>bli:spacecurve([x[a],y[a],0],t=0..1,color=orange,thickness=3):
>blo:spacecurve(sqrt(ln(1/0.4)/3)*cos(t),sqrt(ln(1/0.4))*sin(t),0.4],t=0..2*Pi,color=blue,thickness=3):
>display(bla,ble,bli,blo);

I you need any explanations, tell me :P

Link to comment
Share on other sites

Sorry akya, if you were using mathmatica I could help, but I don't have maple.

I told you :P I posted the solution ;)

Found it finally :P

Maple is a program used to simplify the calculations and display 3d graphs...it can serve for all sorts of mathematical problems..

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...