power
Calculate mathematical power operations by raising any base number to a specified exponent for quick exponentiation results.
Instructions
Raise a number to a power.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base | Yes | ||
exponent | Yes |
Input Schema (JSON Schema)
{
"properties": {
"base": {
"title": "Base",
"type": "number"
},
"exponent": {
"title": "Exponent",
"type": "number"
}
},
"required": [
"base",
"exponent"
],
"type": "object"
}