Ask Your Question
1

How do i display a derivative using view()

asked 2015-10-02 10:17:12 +0200

gsonnenf gravatar image

I can currently display the form of an integral in latex using:

f(x) = x + x^2
view( integral(f(x),x, hold=True) ) #displays the form of the derivative

But i can't figure out how to do it for a derivative:

f(x) = x + x^2
view( derivative(f(x),x, hold=True) ) #fails
view( derivative(f(x),x) ) # takes derivative then displays answer instead of the problem

Is their any easy way to do this? If not, whats the recommended way to fake it (inline latex etc)?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-10-02 10:44:57 +0200

tmonteil gravatar image

updated 2015-10-02 10:45:24 +0200

As you can see, the problem is not about viewing the formula in LaTeX/pdf, but about telling Sage not to compute the derivative. Indeed , it seems that the derivative method does not support a hold argument (yet).

sage: f(x) = x + x^2
sage: derivative(f(x),x)
2*x + 1
sage: derivative(f(x),x, hold=True)
TypeError: derivative() got an unexpected keyword argument 'hold'
edit flag offensive delete link more

Comments

1

Apparently the long-delayed http://trac.sagemath.org/ticket/6756 would implement this, or at least should implement it but maybe hasn't yet...

kcrisman gravatar imagekcrisman ( 2015-10-03 10:44:51 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2015-10-02 10:17:12 +0200

Seen: 537 times

Last updated: Oct 02 '15