How do I get maple to do a higer order derivative?

Hi people, I am actually taking a maple practice test and am wondering how would I go about doing a higher order derivative of this function.

f(x) = sin(x^2/(x^10+2))*e^(2*x)

I would like to find the 8th deriavtive at x = 0 to 3 decimal places.

The answer is 112.000 but i would still like to know how to solve it as in the real test there will be one just like it.

If someone could give the algorithm that i would put it in that would be great. Used the help feature but it was not all that helpful.

Thanks in advance.

Tabish

8th order derivative

f:=sin(x^2/(x^10+2))*exp(2*x);
eval(diff(f,x$8),x=0);

Note that you need exp(2*x) instead of e^(2*x).

thanks so so much. You are a

thanks so so much. You are a savior

Help on higher order derivative for Maple 12

I test the following:

eval(diff(f,x$8),x=0);

however, I bring this error message,
Error, invalid input: diff received 2, which is not valid for its 2nd argument

Could anyone can help?

 

John

Axel Vogt's picture

x?

sounds, as if your x already has some value, try x:='x'; before using that command

Also do not hesitate to check the help for (D@@8)(f)(0)

thanks you comment. I retry

thanks you comment. I retry it and all thing done well after I open new worksheet.

John

lemelinm's picture

Check the syntax

 I copy and paste the answers of dharr and everything works fine.  The only problem I could think is : an error of syntax or maybe you should do restart and than redo the calculation.

You are right. I restart and

You are right. I restart and redo the calculation, then everything go well! Thanks!

John

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}