solve_math_problem
Solve word problems and mathematical expressions by entering the problem. Optionally, view step-by-step solutions for detailed understanding.
Instructions
Solve a word problem or mathematical expression (may request user input)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
problem | Yes | The math problem to solve | |
showSteps | No | Show step-by-step solution |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"problem": {
"description": "The math problem to solve",
"type": "string"
},
"showSteps": {
"description": "Show step-by-step solution",
"type": "boolean"
}
},
"required": [
"problem"
],
"type": "object"
}