limit
Calculate the limit of a function as a variable approaches a specific value. Ideal for analyzing mathematical behavior and solving calculus problems.
Instructions
Calculate the limit of a function as it approaches a value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approach | Yes | Value the variable approaches | |
expression | Yes | Function to evaluate limit | |
variable | Yes | Variable approaching the limit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"approach": {
"description": "Value the variable approaches",
"type": "number"
},
"expression": {
"description": "Function to evaluate limit",
"type": "string"
},
"variable": {
"description": "Variable approaching the limit",
"type": "string"
}
},
"required": [
"expression",
"variable",
"approach"
],
"type": "object"
}