differentiate_symbolic
Compute symbolic derivatives of mathematical expressions with respect to a specified variable, supporting differentiation order and optional simplification.
Instructions
Compute symbolic derivatives of mathematical expressions using SymPy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order | No | Order of derivative (1 for first derivative, 2 for second, etc.) | |
| simplify | No | Whether to simplify the result | |
| variable | No | Variable to differentiate with respect to (e.g., 'x') | x |
| expression | Yes | Mathematical expression to differentiate (e.g., 'x**2 + 3*x + 1') |