sqrt
Calculate the square root of any positive number using this mathematical tool. Enter a number to get its square root value with proper error handling for invalid inputs.
Instructions
Calculate square root of a number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| number | Yes | Number to calculate square root of |
Input Schema (JSON Schema)
{
"properties": {
"number": {
"description": "Number to calculate square root of",
"type": "number"
}
},
"required": [
"number"
],
"type": "object"
}