Exponent Calculator
Compute any base raised to any power — including positive, negative, fractional, and decimal exponents.
Reviewed by the ToolNestr Editorial Team — July 2026
Step-by-step
2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 = 1,024
How exponentiation works
Exponentiation is a mathematical operation that involves two numbers: the base x and the exponent y. When y is a positive integer, xy simply means multiplying x by itself y times. For example, 25 = 2 × 2 × 2 × 2 × 2 = 32. This is the simplest case and the foundation for understanding more complex exponents.
When the exponent is zero, any non-zero base raised to the power of zero equals 1. This follows from the quotient rule: xa / xa = 1, and by the quotient law, this equals xa-a = x0 = 1. A negative exponent indicates the reciprocal: x-n = 1 / xn. So 2-3 = 1 / 23 = 1/8.
Fractional exponents combine powers and roots. The exponent m/n means taking the nth root first then raising to the mth power (or vice versa): xm/n = (ⁿ√x)ᵐ. For instance, 82/3 = (³√8)² = 2² = 4. Decimal exponents like 20.5 are equivalent to fractional exponents and are computed using the same root-power relationship.
The formula explained
Basic exponent formula
xy = x × x × ... × x (y times)
For positive integer exponents, this is straightforward multiplication repeated y times. For other exponents, the calculator uses the general power function.
General case
xy = exp(y × ln(x))
For real exponents, the calculator uses the identity xy = ey × ln(x), where ln is the natural logarithm and exp is the exponential function.
Worked example: 210
Step 1: Base = 2, Exponent = 10 (positive integer)
Step 2: Multiply 2 by itself 10 times: 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2
Step 3: Compute sequentially: 2² = 4, 2³ = 8, 2⁴ = 16, 2⁵ = 32, 2⁶ = 64, 2⁷ = 128, 2⁸ = 256, 2⁹ = 512, 2¹⁰ = 1,024
Therefore: 210 = 1,024
Investors & Finance
Compound interest uses exponential growth: A = P(1 + r)t. Understanding exponents helps you model investment growth over time, calculate loan amortization, and project future values of assets with compound returns.
Students
Exponents are the foundation of algebra, appearing in polynomials, exponential functions, and scientific notation. Mastering exponents is essential for calculus, physics, chemistry, and engineering coursework at every level.
Computer Scientists
Exponents describe algorithm complexity (2n for exponential time), data storage (210 = 1,024 bytes in a kilobyte), and numeric representation in floating-point systems. Exponents are central to computational theory.
Scientists & Engineers
Exponential functions model radioactive decay, population growth, signal attenuation, and many natural phenomena. Scientific notation uses powers of 10 to represent very large and very small numbers compactly.
How to use the exponent calculator
Enter the base
Type the base number (x) that you want to raise to a power. This can be any real number — positive, negative, integer, or decimal.
Enter the exponent
Type the exponent (y). This can be any real number — positive, negative, integer, fractional, or decimal. The calculator handles all cases.
Read the result
The result appears instantly with the expression shown. For integer exponents, a step-by-step multiplication breakdown is displayed below.
Tips for working with exponents
Order of operations matters
In expressions like -2⁴, the exponent is applied before the negative sign by convention: -(2⁴) = -16. The parentheses in (-2)⁴ = 16 change the result. Always use parentheses to avoid ambiguity when the base is negative.
Exponents grow very fast
Exponential growth is deceptive. 2¹⁰ = 1,024 might seem manageable, but 2²⁰ = 1,048,576, and 2³⁰ = 1,073,741,824. Each addition of 10 to the exponent multiplies the result by roughly 1,000. This rapid growth is why exponentials model compound interest, population explosions, and computing power.
Fractional exponent tricks
When dealing with fractional exponents, remember that x1/2 = √x, x1/3 = ³√x, and x2/3 = (³√x)². The denominator of the fraction indicates the root and the numerator indicates the power. You can take the root first or apply the power first — the result is the same.
Beware of overflow
Very large exponents can produce numbers that exceed the maximum representable value in JavaScript (about 1.79 × 10³⁰⁸). The calculator will display "Infinity" in such cases. For practical purposes, most real-world applications stay well within these bounds.
Related tools
Frequently asked questions
What is an exponent?
An exponent (or power) indicates how many times a base number is multiplied by itself. For example, 2³ = 2 × 2 × 2 = 8. The exponent is 3 and the base is 2.
What does a negative exponent mean?
A negative exponent means the reciprocal: x⁻ⁿ = 1 / xⁿ. For example, 2⁻³ = 1 / 2³ = 1/8 = 0.125.
What is a fractional exponent?
A fractional exponent combines a power and a root: x^(m/n) = (ⁿ√x)ᵐ. For example, 8^(2/3) = (³√8)² = 2² = 4.
What is a zero exponent?
Any non-zero number raised to the power of zero equals 1. That is, x⁰ = 1 for any x ≠ 0. The case 0⁰ is undefined in most contexts.
What are the laws of exponents?
The key laws are: xᵃ × xᵇ = x^(a+b), xᵃ / xᵇ = x^(a-b), (xᵃ)ᵇ = x^(a×b), and (xy)ᵃ = xᵃ × yᵃ. These are the foundation for algebraic manipulation.