limit_expression
Find the asymptotic behavior of an expression as a variable approaches a point (default infinity), simplifying complexity analysis or mathematical reasoning.
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 |