Exponent Calculator
Solve any power equation y = bˣ — enter any two of base, exponent, or result and the calculator returns the third with a full step-by-step working, expanded multiplication, logarithm derivation, and a property breakdown of the answer.
Solve y = b ^ x
Leave one field blank — the calculator solves for it automatically.
Powers of 2, 3, and 10 (n = 0 to 10)
A quick reference for the bases that show up most often — binary, ternary, and decimal. Tap any cell to send those values into the calculator.
| n | 2ⁿ | 3ⁿ | 10ⁿ |
|---|---|---|---|
| 0 | |||
| 1 | |||
| 2 | |||
| 3 | |||
| 4 | |||
| 5 | |||
| 6 | |||
| 7 | |||
| 8 | |||
| 9 | |||
| 10 |
Exponent rules at a glance
Product
aᵐ · aⁿ = aᵐ⁺ⁿ
2³ · 2⁵ = 2⁸ = 256
Quotient
aᵐ ÷ aⁿ = aᵐ⁻ⁿ
5⁶ ÷ 5² = 5⁴ = 625
Power of a power
(aᵐ)ⁿ = aᵐⁿ
(3²)⁴ = 3⁸ = 6 561
Power of a product
(a · b)ⁿ = aⁿ · bⁿ
(2·5)³ = 2³ · 5³ = 1 000
Zero exponent
a⁰ = 1 (a ≠ 0)
1 729⁰ = 1
Negative exponent
a⁻ⁿ = 1 / aⁿ
2⁻³ = 1 / 8 = 0.125
Fractional exponent
a^(m/n) = ⁿ√(aᵐ)
27^(2/3) = ∛27² = 9
Identity
a¹ = a
13.7¹ = 13.7
What Is An Exponent Calculator?
An exponent calculator solves the equation y = bx for any one of its three variables. The base b is the number being multiplied, the exponent x counts how many times that base is multiplied by itself, and the result y is whatever comes out. Fill any two and the calculator works out the third — directly, through a logarithm, or by taking a root.
This tool covers integer, negative, decimal, fractional, and scientific-notation inputs. It shows the expanded multiplication for small whole exponents, the change-of-base formula for missing exponents, and the n-th root extraction when the base is unknown. It pairs naturally with the scientific calculator, the scientific notation calculator, and the root calculator.
How Exponents Work
Exponent counts the multiplications
Writing 3⁴ means three multiplied by itself four times — that is 3 × 3 × 3 × 3 = 81. The base sits on the line, the exponent sits as a superscript, and the exponent literally counts the factors. Every other rule in this section follows from that single definition.
Three solving directions
Knowing any two of {base, exponent, result} fixes the third. Direct evaluation handles a missing result, logarithms recover a missing exponent, and the n-th root recovers a missing base. The calculator picks the right method automatically based on which field is empty.
Negative and fractional exponents extend the rule
A negative exponent flips the base into the denominator (a⁻ⁿ = 1 / aⁿ). A fractional exponent is a root (a^(1/n) = ⁿ√a). The same y = bˣ formula keeps working — the exponent simply takes a wider set of values.
Logarithms reverse the operation
If b raised to x equals y, then log_b(y) equals x. Logarithms and exponents are inverse functions of each other. The same equation can therefore be read two ways — exponential form (bˣ = y) or logarithmic form (log_b y = x).
6 Ways To Use This Exponent Calculator
Compute powers quickly
Drop the base and the exponent into the form and read the result instantly — useful for homework, lab calculations, and any time the answer is faster than reaching for a scientific calculator.
Solve for the missing exponent
Know the base and the answer? Leave the exponent blank. The calculator applies the change-of-base logarithm formula log_b(y) = ln(y) / ln(b) and shows every numeric step.
Recover the base
Know the exponent and the answer? Leave the base blank. The calculator takes the x-th root automatically and confirms by raising the recovered base back to the original exponent.
Practice negative exponents
Negative exponents flip the base under one — this calculator shows that 2⁻³ becomes 1 / 2³ = 0.125, with the inversion step spelled out so the rule sticks.
Convert exponents to roots
Fractional exponents are radicals — a^(1/n) equals the n-th root of a, and a^(m/n) equals the n-th root of aᵐ. Use the calculator on 27^(1/3) to see why the answer is 3.
Build intuition for big numbers
The powers-of-10 row of the reference table shows scientific notation in action. Click any cell to load that case into the calculator and read its full property breakdown.
Best Practices For Working With Exponents
Always identify which variable is missing before you start solving. The three cases — missing result, missing exponent, missing base — call for completely different operations (direct multiplication, a logarithm, and an n-th root). Confusing them is the single most common source of textbook errors with exponentials.
When solving by logarithm, prefer the natural log (ln) for the change-of-base formula. Every scientific calculator and programming-language standard library ships with ln, so log_b(y) = ln(y) / ln(b) is the most portable identity. The common log (log₁₀) is equally valid, but ln tends to keep more significant digits in practice.
For very large or very small results, switch to scientific notation. Floating-point arithmetic loses significant digits once a number crosses 10¹⁵. The calculator automatically formats results above that threshold (and below 10⁻⁶) in scientific form and reports the digit count so the order of magnitude is always visible.
Why Exponents Matter
Finance & compound growth
Compound interest, dividend reinvestment, and SIPs are all exponential — the future value of P at rate r for n compounding periods is P · (1 + r)ⁿ. Doubling time is found through log₂ on the growth factor. Every retirement calculator rests on this one identity.
Science & decay
Radioactive decay, drug elimination, capacitor discharge, and bacterial-population reduction all follow N(t) = N₀ · e^(−kt). The half-life t½ = ln 2 / k is solved by a logarithm — exactly the operation this calculator performs on the missing-exponent case.
Computer science
Data structures and algorithms speak the language of exponents. Binary search is O(log₂ n). Recursive Fibonacci without memoisation is O(φⁿ). Storage capacities double every few years (Moore's law) — 2¹⁰ = 1 024, 2²⁰ ≈ 10⁶, 2³⁰ ≈ 10⁹ — a fact every kilobyte / megabyte / gigabyte ratio reflects.
Mathematics curriculum
Exponents appear in every secondary and university maths course — algebra, pre-calculus, calculus, discrete maths, and probability. Mastering the eight basic exponent rules unlocks polynomials, logarithms, derivatives of eˣ, and most of statistics' distribution families.
Where Exponent Problems Get Tricky
Zero to the zero
0⁰ is an indeterminate form. Limits approach 0⁰ from different directions can give 0, 1, or anything in between depending on the path. Some texts adopt 0⁰ = 1 by convention for power series; this calculator flags it as undefined to keep the answer honest.
Negative base, fractional exponent
(−4)^(1/2) is not a real number — it's the imaginary number 2i. The calculator refuses non-integer exponents on negative bases rather than returning a complex value. Use an integer exponent or a positive base.
Logarithms of zero or negatives
log_b(y) is only defined for positive y, and the base must be positive and not equal to 1. The calculator blocks these cases and returns a clear error so the impossibility is visible immediately.
Floating-point drift
log(81) / log(3) returns 3.99999… in plain JavaScript before the snap-to-integer correction. The calculator rounds within 1e-9 so log₃ 81 comes back as exactly 4. Verify by raising back to the recovered exponent — the calculator's last step does that automatically.
The Core Exponent Formulas
Product rule
aᵐ · aⁿ = aᵐ⁺ⁿ
Add exponents when multiplying same-base powers.
Quotient rule
aᵐ ÷ aⁿ = aᵐ⁻ⁿ
Subtract exponents when dividing same-base powers.
Power of a power
(aᵐ)ⁿ = aᵐⁿ
Multiply exponents when raising a power to a power.
Power of a product
(a · b)ⁿ = aⁿ · bⁿ
Distribute the exponent across factors.
Power of a quotient
(a / b)ⁿ = aⁿ / bⁿ
Distribute the exponent across the fraction.
Zero exponent
a⁰ = 1 (a ≠ 0)
Anything to the zero power equals one.
Identity exponent
a¹ = a
A first power gives the base back unchanged.
Negative exponent
a⁻ⁿ = 1 / aⁿ
Negative exponents flip the base into the denominator.
Fractional exponent
a^(m/n) = ⁿ√(aᵐ)
Numerator is the power; denominator is the root.
Change of base (log)
log_b y = ln y / ln b
Convert any log to a natural log.
Exponent ⇄ log identity
bˣ = y ⇔ x = log_b y
Reads the same equation two ways.
Exponential growth
N(t) = N₀ · eʳᵗ
Continuous compounding form.
Common Exponent Mistakes
- 1
Treating addition like multiplication
aᵐ + aⁿ is not aᵐ⁺ⁿ. The product rule only collapses exponents under multiplication of same-base powers. Sums of powers usually don't simplify at all.
- 2
Distributing across a sum
(a + b)ⁿ ≠ aⁿ + bⁿ. The power of a product rule works for multiplication and division, not for addition or subtraction. Use the binomial theorem for the correct expansion.
- 3
Forgetting the parentheses around a negative base
−3² is read as −(3²) = −9, but (−3)² = 9. Without the parentheses the exponent binds tighter than the sign.
- 4
Confusing −x and x⁻¹
−5 is the additive inverse of 5; 5⁻¹ is the multiplicative inverse (= 1/5 = 0.2). They share a minus sign but mean different operations.
- 5
Mixing log bases
log₃ 81 = 4 but log₁₀ 81 ≈ 1.908. Different bases give different numerical answers — always check which base the problem expects, and convert with the change-of-base formula if needed.
- 6
Reading 0.5 as 0.05
A common slip on calculator entry. 9^0.5 = 3 (the square root of 9), but 9^0.05 ≈ 1.117. Inspect your decimal places before committing.
Real-Life Uses Of Exponents
Exponential growth
Compound interest, population doubling, viral spread, and Moore's law are all governed by N(t) = N₀ · (1 + r)ᵗ. A 7 % yearly rate doubles the principal in about ten years — the rule of 72 is just an approximation of log₂(1.07)⁻¹.
Exponential decay
Radioactive isotopes, drug concentrations, RC-circuit voltages, and a cup of hot coffee cooling all decay as N(t) = N₀ · e^(−kt). Carbon-14 dating uses this directly — measure the remaining fraction, solve for t via a logarithm.
Computer science
Binary storage is exponentiation in disguise — 8 bits address 256 values (2⁸), 10 bits address 1 024 (2¹⁰), 30 bits address a billion (2³⁰). The same identity drives address space, file sizes, and algorithm complexity.
Scientific notation
Every physical measurement of cosmic or microscopic scale is written as a · 10ᵇ. Avogadro's number 6.022 × 10²³ and the Planck length 1.616 × 10⁻³⁵ both rely on exponents to stay readable.
Methodology you can verify
Every result is computed from the canonical IEEE-754 implementations of Math.pow, Math.log, and the change-of-base formula log_b(y) = ln(y) / ln(b). Integer-exponent expansions multiply the base by itself directly. Recovered values within 1e-9 of an integer are snapped back so log₃ 81 returns exactly 4. Every solved value is verified by substituting it back into y = bˣ — visible as the last step on every calculation. Read more on the methodology and editorial policy pages.
Frequently Asked Questions
Related Calculators
More math and growth-rate tools that pair naturally with exponents.
- Scientific CalculatorAdvanced trig, log, exponent, root, factorial, and memory functions.
- Scientific Notation CalculatorConvert to and from scientific, engineering, and E-notation with arithmetic support.
- Root CalculatorSquare root, cube root, and any nth root with step-by-step simplification.
- Half-Life CalculatorHalf-life, radioactive decay, decay constant, mean lifetime, and Carbon-14 dating with step-by-step derivations and a 15-isotope library.
- Compound Interest CalculatorSee how your investment grows with the power of compounding.