divide
Calculate division of two numbers by dividing the first number by the second number. Handles mathematical division operations with proper error checking.
Instructions
Divide first number by second number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | Dividend (number to be divided) | |
| b | Yes | Divisor (number to divide by) |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"description": "Dividend (number to be divided)",
"type": "number"
},
"b": {
"description": "Divisor (number to divide by)",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}