# Exponent Calculator

> Raises a base to any real exponent (base^exponent), including negative and fractional exponents, and reports the reciprocal and a scientific-notation form.

- Calculator id: `exponent` · Category: Math (`math`) · Tool name: `calculate_exponent`
- Canonical page: https://tttkmbb.com/math/exponent · This document: https://tttkmbb.com/math/exponent.md · JSON definition: https://tttkmbb.com/math/exponent.json

## Purpose

Raises a base to any real exponent (base^exponent), including negative and fractional exponents, and reports the reciprocal and a scientific-notation form.

**Use when:** You need a power such as 2^10, 1.05^30 or 8^(1/3), or a quick check of how large a power gets.

**Do not use when:** You need the exponent that produces a given result (use logarithm) or the n-th root with sign handling for negatives (use nth-root).

## Input

| Parameter | Type | Unit | Required | Description |
| --- | --- | --- | --- | --- |
| `base` | number |  | required | The number being multiplied by itself. (min -1000000000, max 1000000000) |
| `exponent` | number |  | required | The power; may be negative or fractional. A negative base requires an integer exponent. (min -1000, max 1000) |

## Output

| Field | Type | Unit | Description |
| --- | --- | --- | --- |
| `result` | number |  | base raised to the exponent. |
| `scientific_notation` | string |  | The result with 6 significant digits, e.g. '1.024 × 10^3'. |
| `reciprocal` | number |  | 1 / result = base^(−exponent) (omitted when the result is 0). |
| `expression` | string |  | The evaluated power as text. |

## Formula

`result = base^exponent; for a fractional exponent p/q: base^(p/q) = (base^(1/q))^p; base^(−n) = 1 / base^n`

## Data Sources

- Wikipedia – Exponentiation — https://en.wikipedia.org/wiki/Exponentiation (reference, retrieved 2026-09-23)
- Wolfram MathWorld – Power — https://mathworld.wolfram.com/Power.html (reference, retrieved 2026-09-23)

Data freshness: `static`. Deterministic formula with fixed constants; results never go stale. Inputs supplied by the caller determine the output.

## API

- `GET https://tttkmbb.com/api/v1/calculate/exponent?base=…&exponent=…`
- `POST https://tttkmbb.com/api/v1/calculate/exponent` with JSON body `{"inputs": {…}}`
- Response: unified envelope (`success`, `request`, `result.values`, `result.units`, `sources`, `freshness`, `timestamp`, `next_actions`, `links`); see https://tttkmbb.com/docs/response-format.md
- Schema: https://tttkmbb.com/api/v1/calculators/exponent · OpenAPI operationId `calculate_exponent` in https://tttkmbb.com/openapi.json
- Authentication: none. Rate limit: fair use, see https://tttkmbb.com/docs/rate-limits.md.

## MCP

- Server: `https://tttkmbb.com/mcp` (Streamable HTTP, JSON-RPC 2.0, no auth)
- Tool:  `run_calculator` with `{"calculator_id": "exponent", "inputs": {…}}`

## Example

- 2^10: inputs `{"base":2,"exponent":10}` → `{"result":1024,"scientific_notation":"1.024 × 10^3","reciprocal":0.0009765625,"expression":"2^10 = 1024"}`
- 4^1.5: inputs `{"base":4,"exponent":1.5}` → `{"result":8,"reciprocal":0.125}`

```
GET https://tttkmbb.com/api/v1/calculate/exponent?base=2&exponent=10
```

## Limitations

You need the exponent that produces a given result (use logarithm) or the n-th root with sign handling for negatives (use nth-root). All values are computed from the formula above; no measurement or live data is involved.

## FAQ

**Why is a negative base with a fractional exponent rejected?**

(−8)^(1/3) has no unique real value in general (the principal value is complex). Use nth-root, which returns the real root −2 for odd roots.

**What is 0^0?**

The calculator returns 1, the convention used in combinatorics and by most programming languages; some contexts treat it as undefined.

## Related

- [Nth Root Calculator](https://tttkmbb.com/math/nth-root.md) — Inverse operation: the root of a number.
- [Logarithm Calculator](https://tttkmbb.com/math/logarithm.md) — Find the exponent from the result.
- [Scientific Notation Converter](https://tttkmbb.com/math/scientific-notation.md) — Express very large or small powers compactly.
