analyze_formula
Analyze mathematical properties of formulas including domain, range, and critical points to understand function behavior and characteristics.
Instructions
Analyzes mathematical properties of a formula (domain, range, critical points).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | basic | |
formula | Yes |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "basic",
"enum": [
"basic",
"detailed",
"critical_points"
],
"title": "Analysis Type",
"type": "string"
},
"formula": {
"title": "Formula",
"type": "string"
}
},
"required": [
"formula"
],
"type": "object"
}