3.5.1 Differentiation
Partial differentiation operations. This gives .
Out[1]= |  |
This gives the third derivative.
Out[2]= |  |
You can differentiate with respect to any expression that does not involve explicit mathematical operations.
Out[3]= |  |
D does partial differentiation. It assumes here that y is independent of x.
Out[4]= |  |
If does in fact depend on , you can use the explicit functional form y[x]. Section 3.5.4 describes how objects like y'[x] work.
Out[5]= |  |
Instead of giving an explicit function y[x], you can tell D that y implicitly depends on x. D[y, x, NonConstants->{y}] then represents , with implicitly depending on .
Out[6]= |  |
|