square
Calculate the square of any number to determine its value multiplied by itself, useful for mathematical computations and problem-solving.
Instructions
Calculate the square of a number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"type": "number"
}
},
"required": [
"a"
],
"type": "object"
}