subtract
Calculate the difference between two numbers by subtracting the second value from the first. Use this tool to perform subtraction operations and find numerical differences.
Instructions
Subtract second number from first number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | Number to subtract from | |
| b | Yes | Number to subtract |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"description": "Number to subtract from",
"type": "number"
},
"b": {
"description": "Number to subtract",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}