square_root
Calculate the square root of any number to solve mathematical problems and perform precise calculations for equations and measurements.
Instructions
Calculate the square root of a number.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"title": "X",
"type": "number"
}
},
"required": [
"x"
],
"type": "object"
}