Math

Exponent & Power Calculator

Calculate powers and roots, and apply the exponent rules without the sign and order errors.

Need this done properly for your business?

Radiatus delivers secure cloud, DevOps & compliance engineering.

Book a free consult

The rules that do all the work

Multiplying powers of the same base adds the exponents; dividing subtracts them; raising a power to a power multiplies them. So x³ × x⁴ is x⁷, x⁷ ÷ x³ is x⁴, and (x³)⁴ is x¹². The frequent error is multiplying exponents when the operation is multiplication of terms — that rule belongs to nesting, not to multiplying.

Why anything to the power of zero is 1

Not a convention chosen for convenience. Since x³ ÷ x³ is x⁰ by the subtraction rule and is obviously 1, x⁰ must equal 1 for the rules to stay consistent. The same argument gives negative exponents: x⁻² is 1/x², because continuing to subtract past zero must keep halving the pattern. 0⁰ is the exception, left undefined because different limiting arguments give different answers.

Fractional exponents are roots

x^(1/2) is the square root and x^(1/3) the cube root, with x^(m/n) meaning the nth root of x to the power m. This unifies powers and roots into one operation, which is why calculators need no separate root function. It also explains why negative numbers have no real even root: (−4)^(1/2) would need a number squaring to −4, and no real number does.

Order of operations catches everyone

−3² is −9, not 9, because exponentiation binds tighter than the unary minus; (−3)² is 9. And 2^3^2 evaluates right to left as 2^9 = 512, not (2³)² = 64. Most programming languages follow both conventions, but spreadsheets differ on the first: Excel evaluates −3^2 as 9, which disagrees with standard mathematical notation and has caused real errors in financial models.

Growth is faster than intuition allows

Exponential growth outruns any polynomial eventually, and "eventually" arrives sooner than expected. Doubling something 30 times multiplies it by more than a billion. The rule of 72 gives a quick handle: dividing 72 by a percentage growth rate gives the approximate doubling time, so 6 percent growth doubles in about 12 years.

Very large exponents overflow silently

Standard floating point tops out near 1.8 × 10³⁰⁸, beyond which results become infinity. Integer types overflow far sooner and, in some languages, wrap around to negative numbers without any error. Computing large powers safely means using arbitrary-precision arithmetic, or working with logarithms when only the magnitude is needed.

Frequently Asked Questions

Privacy & Security

All processing happens locally in your browser — nothing is uploaded.

Data: None
Client-side-Side
Active
v1.0

How to Use

Enter a base and exponent to compute the power.

Disclaimer: This tool is provided "as is" without warranty of any kind. Results are for educational and utility purposes.