power
Calculate exponential values by raising a base number to any exponent power for mathematical operations and scientific calculations.
Instructions
Raise first number to the power of second number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | Base number | |
| exponent | Yes | Exponent |
Input Schema (JSON Schema)
{
"properties": {
"base": {
"description": "Base number",
"type": "number"
},
"exponent": {
"description": "Exponent",
"type": "number"
}
},
"required": [
"base",
"exponent"
],
"type": "object"
}