# 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.
