Exponent Calculator

Next

Enter a base and an exponent, the calculator returns base^exponent with full precision, switching to scientific notation automatically when the result is too long to read. It handles the full range of exponents: positive integers (2^10), negative integers (2^-3), decimals (5^1.5), zero, and fractional roots (27^(1/3) = 3).

How to calculate an exponent

  1. 1

    Enter the base

    The number being raised to a power. Any real number: 2, 10, 0.5, -3, π.

  2. 2

    Enter the exponent

    The power. Positive, negative, integer, or decimal. For a cube root, enter one third as a decimal such as 0.3333.

  3. 3

    Read the result

    Exact decimal for reasonable sizes, scientific notation (e.g. 1.024e+30) for very large or very small outputs.

  4. 4

    Check the result by hand

    For a small integer exponent you can expand the power yourself to check the result (2^5 = 2·2·2·2·2 = 32).

The rules of exponents

A handful of identities cover almost every calculation you will run into:

Rule Form Example
Zero exponent a^0 = 1 (for a ≠ 0) 5^0 = 1
Negative exponent a^-n = 1 / a^n 2^-3 = 1/8 = 0.125
Fractional exponent a^(1/n) = nth root of a 27^(1/3) = 3
Mixed fractional a^(m/n) = (nth root of a)^m 8^(2/3) = 4
Product of powers a^m · a^n = a^(m+n) 2^3 · 2^4 = 2^7
Power of a power (a^m)^n = a^(m·n) (2^2)^3 = 2^6 = 64
Same exponent a^n · b^n = (a·b)^n 2^3 · 5^3 = 10^3

Powers that show up everywhere

Expression Value
2^10 1,024, “1K” in binary computing
2^16 65,536, 16-bit address space
2^20 1,048,576, “1M” in binary
2^32 4,294,967,296, IPv4 address count
10^6 1,000,000
10^9 1,000,000,000, “a billion” in US English
e ≈ 2.71828 Natural log base
(1 + r)^n Compound interest growth factor

Negative and fractional exponents in the wild

Negative exponents are everywhere in physics and engineering units, kg·m·s^-2 is a newton, N·m^-2 is a pascal, mol^-1 shows up in chemistry. Fractional exponents appear in geometry (side length from volume: V^(1/3)), finance (annualised return from a multi-year growth factor) and decay (e^-kt).

Precision and overflow

The calculation uses 64-bit IEEE 754 double-precision numbers. That means:

  • Integer precision up to 2^53 − 1 (about 9.007 × 10^15).
  • Floating-point precision of about 15–17 significant decimals.
  • Overflow to Infinity beyond roughly 1.8 × 10^308.

Very large integer exponents (e.g. 2^1024 and beyond) overflow and return Infinity. Very small results (e.g. 0.5^2048) underflow to 0. The calculator flags both conditions rather than silently displaying a wrong number.

Frequently Asked Questions

1,024. It is also exactly 2^10, which is why “1K” in binary-ish contexts (like RAM sizes) means 1,024 rather than 1,000. Use the data-storage converter to see where this matters in practice.

Use a fractional exponent written as a decimal. For the cube root of 27 enter base 27 and exponent 0.3333, the result is close to 3. For the fifth root of 1024 use exponent 0.2 (the answer is 4).

Mathematicians still argue about it. Most calculators and programming languages define 0^0 = 1 for convenience, especially in combinatorics and series expansions. The tool returns 1 to match that convention.

Results above about 1.8 × 10^308 overflow the 64-bit double-precision range used by the tool. For arbitrary-precision arithmetic on huge numbers, use a language with BigInt or a dedicated math package.

Yes: the base and the exponent you enter are sent to our server, where the calculation runs. They are not stored and are not used for anything else.

Related Tools

Tool available in other languages