What the exponent calculator does
The exponent calculator raises a base to a power and shows the result along with step-by-step working. It handles every common case: positive whole exponents (repeated multiplication), negative exponents (which become reciprocals), fractional and decimal exponents (which are roots), zero exponents, and tricky combinations like negative bases with non-integer powers — where it will tell you the result is not a real number rather than silently returning NaN.
The rules of exponents in one place
- Whole-number exponent: 2⁵ = 2 × 2 × 2 × 2 × 2 = 32 (multiply the base by itself n times).
- Zero exponent: any non-zero number to the 0 power equals 1. So 17⁰ = 1, and (−4)⁰ = 1.
- Negative exponent: 2⁻³ = 1 ÷ 2³ = 1/8 = 0.125. The exponent flips between numerator and denominator.
- Fractional exponent: x^(1/n) is the n-th root of x. So 27^(1/3) = ∛27 = 3, and 16^(1/4) = ⁴√16 = 2.
- General fractional exponent: x^(m/n) = (n-th root of x)ᵐ. So 8^(2/3) = (∛8)² = 2² = 4.
Negative bases with non-integer exponents
Real numbers don't cover every case. (−2)³ = −8 is perfectly fine, but (−2)^0.5 is the square root of −2, which only exists in the complex numbers. This calculator works in the real numbers, so it returns "Not a real number" in that situation rather than an imaginary value. For complex exponents you'd need a tool that returns a + bi results.
Why exponents matter
Exponents are the shorthand of growth and scaling. Compound interest is exponential growth; a population doubling every generation is exponential growth; light spreading over an expanding sphere falls off with the square of distance; CPU performance has historically scaled with powers of two. Once you read 10⁹ as "a billion" and 2¹⁰ as "about a thousand", you start reading the world in terms of these powers.
Scientific notation
For very large or very small results, the calculator also shows scientific notation: 1,024 as 1.024 × 10³, or 0.0000037 as 3.7 × 10⁻⁶. This is the form most physics and engineering tables use because it makes the order of magnitude immediately visible.
Use with the other tools
For roots specifically, the square root calculator also shows simplified radical form. For a full expression engine with parentheses and trig, use the scientific calculator. For compound growth applied to money, the compound interest calculator uses exponents directly.