HomeMath › Exponent Calculator

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.

When to use

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

Formula

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

Inputs

ParameterTypeUnitRequiredDescription
basenumberyesThe number being multiplied by itself. Range: ≥ -1000000000, ≤ 1000000000
exponentnumberyesThe power; may be negative or fractional. A negative base requires an integer exponent. Range: ≥ -1000, ≤ 1000

Outputs

OutputTypeUnitDescription
resultnumberbase raised to the exponent.
scientific_notationstringThe result with 6 significant digits, e.g. '1.024 × 10^3'.
reciprocalnumber1 / result = base^(−exponent) (omitted when the result is 0).
expressionstringThe evaluated power as text.

Example

2^10: {"base":2,"exponent":10}{"result":1024,"scientific_notation":"1.024 × 10^3","reciprocal":0.0009765625,"expression":"2^10 = 1024"}

4^1.5: {"base":4,"exponent":1.5}{"result":8,"reciprocal":0.125}

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

Machine access

Sources

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 calculators