divide
Perform precise division of two numbers or fractions with 64-bit floating point accuracy using this arithmetic tool from the Math MCP Server. Input numbers to receive a calculated result.
Instructions
Divides two numbers with 64 bit floating point precision and returns a 64 bit float. For example, dividing 10 by 2 would return 5.0. You can also use fractions if you want to, like 1/2 for number_1 and 1/3 for number_2.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number_1 | Yes | ||
number_2 | Yes |
Input Schema (JSON Schema)
{
"properties": {
"number_1": {
"anyOf": [
{
"type": "integer"
},
{
"type": "number"
}
],
"title": "Number 1"
},
"number_2": {
"anyOf": [
{
"type": "integer"
},
{
"type": "number"
}
],
"title": "Number 2"
}
},
"required": [
"number_1",
"number_2"
],
"type": "object"
}