> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/math-functions/power.md).

# Power

Calculates a number raised to a power

```mathematica
Power(4, 2) → 16
Power(2, -1) → 0.5
```

#### **Inputs**

`Power(base, exponent)`

* `base` - The number to raise to the `exponent` power. If `base` is negative, `exponent` must be an integer.
* `exponent` - The exponent to raise `base` to.
