MathGroup Archive 2006

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Derivative of a function with multiple variables

  • To: mathgroup at smc.vnet.net
  • Subject: [mg69516] Re: [mg69467] Derivative of a function with multiple variables
  • From: "Carl K. Woll" <carlw at wolfram.com>
  • Date: Thu, 14 Sep 2006 06:56:44 -0400 (EDT)
  • References: <200609130802.EAA18366@smc.vnet.net>

Adel Elsabbagh wrote:
> Hi all,
> 
> I am sure this is easy to many of you
> 
> Assume I have f = f[x,y,z]
> I would like to construct a simple function g[f[x,y,z]] that will
> generate the Hessian. i.e.
> g[f[x,y,z]]=
> {{Derivative[2,0,0][f][x,y,z], Derivative[1,1,0][f][x,y,z],
> Derivative[1,0,1][f][x,y,z]},
> {Derivative[1,1,0][f][x,y,z], Derivative[0,2,0][f][x,y,z],
> Derivative[0,1,1][f][x,y,z]},
> {Derivative[1,0,1][f][x,y,z], Derivative[0,1,1][f][x,y,z],
> Derivative[0,0,2][f][x,y,z]}}.
> 
> Any help?
> 

Here is a simple way to obtain the result you want (in version 5.2):

In[23]:=
D[f[x,y,z],{{x,y,z},2}]

Out[23]=
{{Derivative[2, 0, 0][f][x, y, z], Derivative[1, 1, 0][f][x, y, z], 
Derivative[1, 0, 1][f][x, y, z]},
   {Derivative[1, 1, 0][f][x, y, z], Derivative[0, 2, 0][f][x, y, z], 
Derivative[0, 1, 1][f][x, y, z]},
   {Derivative[1, 0, 1][f][x, y, z], Derivative[0, 1, 1][f][x, y, z], 
Derivative[0, 0, 2][f][x, y, z]}}

Carl Woll
Wolfram Research


  • Prev by Date: Re: Derivative of a function with multiple variables
  • Next by Date: Re: question on changing 'type' of numbers
  • Previous by thread: Re: Derivative of a function with multiple variables
  • Next by thread: Re: Derivative of a function with multiple variables