explain_formula
Interpret and clarify mathematical formulas by providing detailed explanations and optional examples to enhance understanding and application.
Instructions
Explain a mathematical formula interactively
Input Schema
Name | Required | Description | Default |
---|---|---|---|
examples | No | Include examples | |
formula | Yes | The formula to explain |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"examples": {
"description": "Include examples",
"type": "boolean"
},
"formula": {
"description": "The formula to explain",
"type": "string"
}
},
"required": [
"formula"
],
"type": "object"
}