Previous Up Next

13.7.1  Gradient

The derive command finds partial derivatives of a multivariable expression. diff and grad can be used synonymously for derive here.

Example

Find the gradient of F(x,y,z)=2x2yxz3.

derive(2*x^2*y-x*z^3,[x,y,z])

or:

diff(2*x^2*y-x*z^3,[x,y,z])

or:

grad(2*x^2*y-x*z^3,[x,y,z])
     

2· 2 x yz3,2 x2,−3 x z2
          
normal(ans())
     

x yz3,2 x2,−3 x z2
          

To find the critical points of F(x,y,z)=2x2yxz3:

solve(derive(2*x^2*y-x*z^3,[x,y,z]),[x,y,z])
     


0,y,0

          

Previous Up Next