How to compute derivative in Maxima -



How to compute derivative in Maxima -

i want calculate 7th derivative of tan(x) @ x=pi/4 in maxima:

f(x) := diff(tan(x), x, 7); f(%pi / 4);

yet cannot result. new user of maxima , cannot find related topic on line. please help me, give thanks you!

i this,

at(diff(tan(x),x,7),[x=%pi/4]);

the function diff returns function result. can evaluate function @ point using at function.

another way of doing so,

f: diff(tan(x), x, 7); at(f, [x=%pi/4]);

now f variable holds output of diff , at used evaluate @ point.

i hope helps.

maxima

Comments

Popular posts from this blog

java - Bypassing "final local variable defined in an enclosing type" -

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -