3.5.5 Defining DerivativesYou can define the derivative in Mathematica of a function f of one argument simply by an assignment like f'[x_] = fp[x]. This defines the derivative of to be . In this case, you could have used = instead of :=. The rule for f'[x_] is used to evaluate this derivative.
Out[2]= |  |
Differentiating again gives derivatives of .
Out[3]= |  |
This defines a value for the derivative of at the origin.
Out[4]= |  |
The value for g'[0] is used.
Out[5]= |  |
This defines the second derivative of g, with any argument.
Out[6]= |  |
The value defined for the second derivative is used.
Out[7]= |  |
To define derivatives of functions with several arguments, you have to use the general representation of derivatives in Mathematica.
Defining derivatives. This defines the second derivative of g with respect to its second argument. This uses the definition just given.
Out[9]= |  |
|