min
Determine the smallest number in a given list of numerical values using this mathematical tool, designed to simplify accurate calculations for precise analysis and problem-solving.
Instructions
Finds the minimum value from a list of numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numbers | Yes | Array of numbers to find the minimum of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numbers": {
"description": "Array of numbers to find the minimum of",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"numbers"
],
"type": "object"
}