home / Math / exponent calculator

Exponent Calculator

The Exponent Calculator is a free online tool that raises a base to a power. It handles negative and fractional exponents, shows the result in both decimal and scientific notation, and lists the exponent rules that govern how powers combine.

Modify the values and click the Calculate button to use.

Related: Root Calculator | Scientific Notation Calculator | Log Calculator

What an Exponent Does

An exponent is repeated multiplication: 2⁵ is 2 × 2 × 2 × 2 × 2 = 32. That definition covers positive whole numbers, and everything else — zero, negatives, fractions — follows from making the rules stay consistent.

Exponent Rules Chart

RuleFormExample
Productxa × xb = xa+b2³ × 2² = 2⁵ = 32
Quotientxa / xb = xa−b2⁵ / 2² = 2³ = 8
Power of a power(xa)b = xab(2³)² = 2⁶ = 64
Power of a product(xy)a = xaya(2×3)² = 4×9 = 36
Zero exponentx0 = 1Any non-zero base
Negative exponentx−a = 1 / xa2−3 = 1/8 = 0.125
Fractional exponentxa/b = b√(xa)82/3 = 4

Why x0 = 1

Follow the quotient rule: xa / xa = xa−a = x0. Any number divided by itself is 1, so x0 must be 1. The same logic gives negative exponents: x2 / x5 = x−3, and computing the division directly gives 1/x³.

00 is the one genuinely contested case. It is defined as 1 in combinatorics and most programming languages, and left undefined in analysis, because the limit depends on how you approach it.

Powers Chart

n2n3n5n10n
123510
24925100
38271251,000
4168162510,000
5322433,125100,000
82566,561390,625100,000,000
101,02459,0499,765,62510,000,000,000

Where Exponents Appear

Compound interest, population growth, radioactive decay, sound intensity, earthquake magnitude, computer memory sizes and algorithmic complexity all rest on exponents. The reason is that exponential growth describes anything whose rate of change is proportional to its current size — which covers a remarkable share of natural and financial processes.

Frequently Asked Questions

What does a negative exponent mean?

Reciprocal, not negative result. 2−3 is 1/8, a positive number. Only a negative base can make the result negative.

How do I calculate a fractional exponent?

The denominator is the root and the numerator is the power: 82/3 means the cube root of 8, squared — 2² = 4.

Is 2³ the same as 3²?

No. 2³ = 8 and 3² = 9. Exponentiation is not commutative, unlike multiplication.