symbolic_partial_derivative
Compute partial derivatives of multivariable expressions by specifying the variable and order. Other variables are treated as constants.
Instructions
Partial derivative ∂^n/∂var^n (multivariable). Treats other vars as constants. Example: expression: "x^2y + sin(z)", variable: "x", order: 2 → 2y
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order | No | Derivative order (1=first, 2=second, etc.) | |
| variable | Yes | Variable to differentiate w.r.t. | |
| expression | Yes | Multivariable expression, e.g. 'x^2*y + sin(z)' |