sqrt
Calculate the square root of a number with results rounded to two decimal places for precise mathematical computations.
Instructions
Calculate the square root of a number (rounded to two decimals)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"x": {
"type": "number"
}
},
"required": [
"x"
],
"type": "object"
}