Ask Your Question

gsonnenf's profile - activity

2023-04-20 04:17:39 +0200 received badge  Notable Question (source)
2020-12-04 16:57:44 +0200 received badge  Popular Question (source)
2015-10-03 09:54:33 +0200 received badge  Student (source)
2015-10-02 10:17:12 +0200 asked a question How do i display a derivative using view()

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)?