calculate
Perform basic arithmetic calculations including addition, subtraction, multiplication, and division using two numbers to solve math problems.
Instructions
Perform basic arithmetic calculations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The arithmetic operation to perform | |
| a | Yes | First number | |
| b | Yes | Second number |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"description": "First number",
"type": "number"
},
"b": {
"description": "Second number",
"type": "number"
},
"operation": {
"description": "The arithmetic operation to perform",
"enum": [
"add",
"subtract",
"multiply",
"divide"
],
"type": "string"
}
},
"required": [
"operation",
"a",
"b"
],
"type": "object"
}