limit_expression
Evaluate the limit of a mathematical expression as a variable approaches a point, defaulting to infinity. Use it to analyze asymptotic behavior and settle complexity questions quickly.
Instructions
Asymptotic behaviour: limit of EXPR as var -> point (default oo). 'limit_expression("n*log(n)/n**2", "n")' returns 0 — settles complexity arguments faster than arguing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| var | No | x | |
| expr | Yes | ||
| point | No | oo |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||