symbolic_limit
Compute limits of symbolic expressions with support for L'Hôpital's rule. Handles finite and infinite limit points like 0, inf, +inf, -inf.
Instructions
Limit lim[x→point] f(x). Supports L'Hôpital (0/0, ∞/∞). point: '0', 'inf', '+inf', '-inf'. Example: expression: "sin(x)/x", variable: "x", point: "0" → 1
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| point | Yes | Limit point: '0', 'inf', '+inf', '-inf' | |
| variable | Yes | Variable approaching limit | |
| expression | Yes | Expression, e.g. 'sin(x)/x' |