Texas Instruments TI-89 and TI-92 Plus Computer |
|
|
|
Version | 1.0 (Monday, September 11, 1999) |
Download | [ dp.89f | dp.9xf ] (780 bytes) |
Description | Single and mixed partial derivatives of one or higher orders. |
Screen shots |
|
Documentation | Usage:
dp(Expr,VarOrList) Expr: A continuous function. VarOrList: The explicit variable(s) or a list of explicit variables. The order of the derivative is specified with an exponent for each variable(s). If VarOrList is a single variable or expression, a single expression will be returned; otherwise if VarOrList is a list of variables or expressions, a list of expressions will be returned. Note: The calculator's derivative function d() will return partial derivatives, but only to the first order. I have seen several other functions available on the Internet that will return partial derivatives of higher orders, but none of them will calculate mixed partial derivatives at higher orders as this one does (9/11/99). Return value:
Examples:
2. dp(x2y3 ,
{x , y}) (fx(x,y),
fy(x,y))
3. dp(x2y3 ,
x2) (fxx(x,y))
4. dp(x2y3 ,
x*y) (fxy(x,y))
5. dp(x2y3 ,
x2*y2)
(fxxyy(x,y))
6. dp(x2y3,
{x2 , y2 ,
x2*y2})
(fxx(x,y) ,
fyy(x,y) , fxxyy(x,y))
|