✴️
✓ Editorially reviewed by Derek Giordano, Founder & Editor · BA Business Marketing

Exponent Calculator

Powers, Roots & Rules

Last reviewed: May 2026

🧮
500 calculators, no signup required
Finance · Health · Math · Science · Business
nnng.com

Exponent Calculator

Calculate any power or root: x^n, nth roots, fractional exponents, and negative exponents. Exponentiation is repeated multiplication, and understanding exponent rules simplifies algebra, physics, finance (compound growth), and computer science (algorithmic complexity).1

Exponent Rules

RuleFormulaExample
Producta^m × a^n = a^(m+n)2³ × 2⁴ = 2⁷ = 128
Quotienta^m / a^n = a^(m−n)10⁵ / 10² = 10³ = 1000
Power of power(a^m)^n = a^(mn)(2³)² = 2⁶ = 64
Negativea^(−n) = 1/a^n2⁻³ = 1/8 = 0.125
Zeroa⁰ = 1999⁰ = 1
Fractionala^(1/n) = ⁿ√a27^(1/3) = ³√27 = 3

Powers of 2

PowerValueUse
2⁸2561 byte range (0–255)
2¹⁰1,0241 KiB
2²⁰1,048,5761 MiB
2³²4,294,967,29632-bit integer limit

Understanding Exponents

An exponent indicates how many times a number (the base) is multiplied by itself. In the expression 2⁵ = 32, the base is 2, the exponent is 5, and the result (32) is called the power. Exponents provide compact notation for very large and very small numbers: 10⁹ = 1,000,000,000 (one billion) is easier to write and reason about than the full number. Scientific notation (3.7 × 10⁸) uses exponents to express any number as a coefficient between 1 and 10 multiplied by a power of 10.

Exponent Rules

Product rule: a^m × a^n = a^(m+n). When multiplying same bases, add exponents: 2³ × 2⁴ = 2⁷ = 128. Quotient rule: a^m ÷ a^n = a^(m−n). When dividing same bases, subtract: 10⁵ ÷ 10² = 10³. Power rule: (a^m)^n = a^(m×n). A power raised to a power multiplies exponents: (3²)³ = 3⁶ = 729. Zero exponent: a⁰ = 1 for any non-zero a. Negative exponent: a^(−n) = 1/a^n. So 2^(−3) = 1/8. Fractional exponent: a^(1/n) = ⁿ√a. So 27^(1/3) = ∛27 = 3.

Exponential Growth and Decay

Exponential growth (population, compound interest, viral spread) and exponential decay (radioactive half-life, drug metabolism, depreciation) are described by functions of the form f(t) = a × b^t. The key characteristic: the rate of change is proportional to the current value. This creates the famous hockey-stick curve — growth appears slow initially, then explodes. COVID-19 spread illustrated this vividly: doubling every 2-3 days meant going from 1,000 to 1,000,000 cases in about 30 days (10 doublings: 2¹⁰ = 1,024).

Large Numbers and Powers of 10

Powers of 10 define the metric prefixes used in science and computing: kilo (10³), mega (10⁶), giga (10⁹), tera (10¹²), peta (10¹⁵). Going smaller: milli (10⁻³), micro (10⁻⁶), nano (10⁻⁹), pico (10⁻¹²). A terabyte hard drive stores 10¹² bytes. A nanometer is 10⁻⁹ meters — the scale of individual atoms. The observable universe is about 8.8 × 10²⁶ meters across. A proton is about 10⁻¹⁵ meters. The ratio between these extremes — roughly 10⁴¹ — illustrates why exponents are indispensable for describing the physical world.

Computational Applications

In computer science, powers of 2 are fundamental: 2¹⁰ = 1,024 (approximately 1 thousand — hence "kilo" in kilobyte). 2²⁰ ≈ 1 million (megabyte). 2³⁰ ≈ 1 billion (gigabyte). 2⁴⁰ ≈ 1 trillion (terabyte). Algorithm complexity often involves exponents: O(2^n) algorithms (brute-force search) become impractical quickly — 2²⁰ = ~1 million operations (fine), but 2⁵⁰ = ~1 quadrillion (years of computation). This exponential barrier is why cryptography works: cracking a 256-bit key requires 2²⁵⁶ operations — more than atoms in the observable universe.

Exponents in Science and Engineering

Scientific notation — expressing numbers as a coefficient times a power of 10 — is essential for working with extreme quantities. Avogadro's number: 6.022 × 10²³ (atoms in a mole). Speed of light: 3 × 10⁸ m/s. Electron mass: 9.109 × 10⁻³¹ kg. Earth's mass: 5.972 × 10²⁴ kg. Without exponential notation, these numbers would be impractical to write, compare, or calculate with. Engineers use engineering notation (exponents in multiples of 3) to align with metric prefixes: 4.7 × 10³ = 4.7 kΩ, 2.2 × 10⁻⁶ = 2.2 μF.

Common Mistakes with Exponents

Several errors are frequently made: Distributing exponents over addition: (a + b)² ≠ a² + b². The correct expansion is a² + 2ab + b². Negative base confusion: (−3)² = 9 (the negative is inside the parentheses), but −3² = −9 (the exponent applies before the negation). Order of operations: 2 × 3² = 18 (not 36) because exponents are evaluated before multiplication. Fractional exponent errors: 8^(2/3) = (∛8)² = 2² = 4, not 8^(2)/8^(3). These mistakes account for a large portion of algebra errors in standardized testing.

Modular Exponentiation and Cryptography

Modern encryption relies on the difficulty of computing discrete logarithms — the inverse of modular exponentiation. RSA encryption uses the fact that computing a^b mod n is fast (using repeated squaring), but finding b given a, a^b mod n, and n is computationally infeasible for large numbers. A typical RSA key uses exponents and moduli with 2,048 bits (617 decimal digits). The security of online banking, e-commerce, and private communications depends entirely on this asymmetry between easy exponentiation and hard logarithm computation.

Exponents in Real-World Applications

Exponential relationships appear throughout science, finance, and engineering. Compound interest follows the formula A = P(1 + r/n)^(nt), where the exponent nt determines how dramatically money grows over time. A $10,000 investment at 7% compounded annually grows to $19,672 in 10 years (exponent 10), $38,697 in 20 years (exponent 20), and $76,123 in 30 years (exponent 30) — the balance roughly doubles with each additional decade because the exponent drives exponential rather than linear growth. Population growth, radioactive decay, bacterial multiplication, and viral spread all follow exponential functions. COVID-19's early spread with a reproduction number of 2.5 meant each generation of infection multiplied cases by 2.5: after 10 generations, one case became 2.5^10 = 9,536 cases. Understanding exponents isn't just academic — it's the foundation for interpreting compound growth and decay in every quantitative field.

Rules of Exponents: A Complete Reference

Exponent rules follow logical patterns that become intuitive with practice. The product rule (a^m × a^n = a^(m+n)) works because multiplying powers with the same base means combining the repeated multiplications: 2³ × 2⁴ = (2×2×2)(2×2×2×2) = 2⁷. The quotient rule (a^m ÷ a^n = a^(m-n)) follows the same logic: dividing cancels factors. The power rule ((a^m)^n = a^(mn)) means raising a power to another power multiplies exponents: (2³)⁴ = 2¹² = 4,096. Zero exponent (a⁰ = 1 for a ≠ 0) follows from the quotient rule: a³ ÷ a³ = a⁰ = 1. Negative exponents (a^(-n) = 1/a^n) extend this pattern: a² ÷ a⁵ = a^(-3) = 1/a³. Fractional exponents (a^(1/n) = ⁿ√a) connect exponents to roots: 8^(1/3) = ³√8 = 2, and 8^(2/3) = (³√8)² = 4. Every rule derives from the fundamental definition of exponents as repeated multiplication.

Common Exponent Mistakes

Several frequent errors plague students and professionals working with exponents. The most common: confusing (ab)² with a²b — the correct expansion is a²b² because the exponent distributes to both factors. Similarly, (a+b)² ≠ a²+b²; it equals a²+2ab+b². This error appears in financial calculations when people square a sum instead of expanding it. Another common mistake: treating negative bases incorrectly. (-3)² = 9 (the negative is inside the parentheses and gets squared), but -3² = -9 (the exponent applies only to 3, then the negative sign is applied). In spreadsheet formulas, =-3^2 returns -9, not 9 — a frequent source of calculation errors. Order of operations places exponents before multiplication and negation, which catches many people off guard.

Scientific Notation and Powers of Ten

Scientific notation expresses numbers as a coefficient times a power of 10: 6.022 × 10²³ (Avogadro's number), 1.602 × 10^(-19) (charge of an electron in coulombs), 9.461 × 10¹⁵ (meters in a light-year). The exponent tells you how many places to shift the decimal: positive exponents shift right (making big numbers), negative exponents shift left (making small numbers). Multiplying numbers in scientific notation is elegant: multiply the coefficients and add the exponents. (3 × 10⁴)(2 × 10³) = 6 × 10⁷. Division subtracts exponents: (6 × 10⁸) ÷ (2 × 10³) = 3 × 10⁵. Engineers use engineering notation, a variant where exponents are always multiples of 3 — corresponding to unit prefixes like kilo (10³), mega (10⁶), giga (10⁹): a 2.4 GHz processor runs at 2.4 × 10⁹ Hz, and 47 kΩ = 47 × 10³ ohms. This convention makes mental conversion to prefixed units immediate.

How to calculate?
Base times itself n times. 2^5=32. Any number to 0=1.

Exponents in Real-World Applications

Exponential relationships appear throughout science, finance, and engineering. Compound interest follows the formula A = P(1 + r/n)^(nt), where the exponent nt determines how dramatically money grows over time. A $10,000 investment at 7% compounded annually grows to $19,672 in 10 years (exponent 10), $38,697 in 20 years (exponent 20), and $76,123 in 30 years (exponent 30) — the balance roughly doubles with each additional decade because the exponent drives exponential rather than linear growth. Population growth, radioactive decay, bacterial multiplication, and viral spread all follow exponential functions. COVID-19's early spread with a reproduction number of 2.5 meant each generation of infection multiplied cases by 2.5: after 10 generations, one case became 2.5^10 = 9,536 cases. Understanding exponents isn't just academic — it's the foundation for interpreting compound growth and decay in every quantitative field.

Rules of Exponents: A Complete Reference

Exponent rules follow logical patterns that become intuitive with practice. The product rule (a^m × a^n = a^(m+n)) works because multiplying powers with the same base means combining the repeated multiplications: 2³ × 2⁴ = (2×2×2)(2×2×2×2) = 2⁷. The quotient rule (a^m ÷ a^n = a^(m-n)) follows the same logic: dividing cancels factors. The power rule ((a^m)^n = a^(mn)) means raising a power to another power multiplies exponents: (2³)⁴ = 2¹² = 4,096. Zero exponent (a⁰ = 1 for a ≠ 0) follows from the quotient rule: a³ ÷ a³ = a⁰ = 1. Negative exponents (a^(-n) = 1/a^n) extend this pattern: a² ÷ a⁵ = a^(-3) = 1/a³. Fractional exponents (a^(1/n) = ⁿ√a) connect exponents to roots: 8^(1/3) = ³√8 = 2, and 8^(2/3) = (³√8)² = 4. Every rule derives from the fundamental definition of exponents as repeated multiplication.

Common Exponent Mistakes

Several frequent errors plague students and professionals working with exponents. The most common: confusing (ab)² with a²b — the correct expansion is a²b² because the exponent distributes to both factors. Similarly, (a+b)² ≠ a²+b²; it equals a²+2ab+b². This error appears in financial calculations when people square a sum instead of expanding it. Another common mistake: treating negative bases incorrectly. (-3)² = 9 (the negative is inside the parentheses and gets squared), but -3² = -9 (the exponent applies only to 3, then the negative sign is applied). In spreadsheet formulas, =-3^2 returns -9, not 9 — a frequent source of calculation errors. Order of operations places exponents before multiplication and negation, which catches many people off guard.

Scientific Notation and Powers of Ten

Scientific notation expresses numbers as a coefficient times a power of 10: 6.022 × 10²³ (Avogadro's number), 1.602 × 10^(-19) (charge of an electron in coulombs), 9.461 × 10¹⁵ (meters in a light-year). The exponent tells you how many places to shift the decimal: positive exponents shift right (making big numbers), negative exponents shift left (making small numbers). Multiplying numbers in scientific notation is elegant: multiply the coefficients and add the exponents. (3 × 10⁴)(2 × 10³) = 6 × 10⁷. Division subtracts exponents: (6 × 10⁸) ÷ (2 × 10³) = 3 × 10⁵. Engineers use engineering notation, a variant where exponents are always multiples of 3 — corresponding to unit prefixes like kilo (10³), mega (10⁶), giga (10⁹): a 2.4 GHz processor runs at 2.4 × 10⁹ Hz, and 47 kΩ = 47 × 10³ ohms. This convention makes mental conversion to prefixed units immediate.

Rules?
Product: a^m*a^n=a^(m+n). Power: (a^m)^n=a^(mn). Negative: a^(-n)=1/a^n.2

Exponents in Real-World Applications

Exponential relationships appear throughout science, finance, and engineering. Compound interest follows the formula A = P(1 + r/n)^(nt), where the exponent nt determines how dramatically money grows over time. A $10,000 investment at 7% compounded annually grows to $19,672 in 10 years (exponent 10), $38,697 in 20 years (exponent 20), and $76,123 in 30 years (exponent 30) — the balance roughly doubles with each additional decade because the exponent drives exponential rather than linear growth. Population growth, radioactive decay, bacterial multiplication, and viral spread all follow exponential functions. COVID-19's early spread with a reproduction number of 2.5 meant each generation of infection multiplied cases by 2.5: after 10 generations, one case became 2.5^10 = 9,536 cases. Understanding exponents isn't just academic — it's the foundation for interpreting compound growth and decay in every quantitative field.

Rules of Exponents: A Complete Reference

Exponent rules follow logical patterns that become intuitive with practice. The product rule (a^m × a^n = a^(m+n)) works because multiplying powers with the same base means combining the repeated multiplications: 2³ × 2⁴ = (2×2×2)(2×2×2×2) = 2⁷. The quotient rule (a^m ÷ a^n = a^(m-n)) follows the same logic: dividing cancels factors. The power rule ((a^m)^n = a^(mn)) means raising a power to another power multiplies exponents: (2³)⁴ = 2¹² = 4,096. Zero exponent (a⁰ = 1 for a ≠ 0) follows from the quotient rule: a³ ÷ a³ = a⁰ = 1. Negative exponents (a^(-n) = 1/a^n) extend this pattern: a² ÷ a⁵ = a^(-3) = 1/a³. Fractional exponents (a^(1/n) = ⁿ√a) connect exponents to roots: 8^(1/3) = ³√8 = 2, and 8^(2/3) = (³√8)² = 4. Every rule derives from the fundamental definition of exponents as repeated multiplication.

Common Exponent Mistakes

Several frequent errors plague students and professionals working with exponents. The most common: confusing (ab)² with a²b — the correct expansion is a²b² because the exponent distributes to both factors. Similarly, (a+b)² ≠ a²+b²; it equals a²+2ab+b². This error appears in financial calculations when people square a sum instead of expanding it. Another common mistake: treating negative bases incorrectly. (-3)² = 9 (the negative is inside the parentheses and gets squared), but -3² = -9 (the exponent applies only to 3, then the negative sign is applied). In spreadsheet formulas, =-3^2 returns -9, not 9 — a frequent source of calculation errors. Order of operations places exponents before multiplication and negation, which catches many people off guard.

Scientific Notation and Powers of Ten

Scientific notation expresses numbers as a coefficient times a power of 10: 6.022 × 10²³ (Avogadro's number), 1.602 × 10^(-19) (charge of an electron in coulombs), 9.461 × 10¹⁵ (meters in a light-year). The exponent tells you how many places to shift the decimal: positive exponents shift right (making big numbers), negative exponents shift left (making small numbers). Multiplying numbers in scientific notation is elegant: multiply the coefficients and add the exponents. (3 × 10⁴)(2 × 10³) = 6 × 10⁷. Division subtracts exponents: (6 × 10⁸) ÷ (2 × 10³) = 3 × 10⁵. Engineers use engineering notation, a variant where exponents are always multiples of 3 — corresponding to unit prefixes like kilo (10³), mega (10⁶), giga (10⁹): a 2.4 GHz processor runs at 2.4 × 10⁹ Hz, and 47 kΩ = 47 × 10³ ohms. This convention makes mental conversion to prefixed units immediate.

Fractional?
x^(1/2)=sqrt(x). x^(1/3)=cube root. See our Log Calculator for inverses.

Exponents in Real-World Applications

Exponential relationships appear throughout science, finance, and engineering. Compound interest follows the formula A = P(1 + r/n)^(nt), where the exponent nt determines how dramatically money grows over time. A $10,000 investment at 7% compounded annually grows to $19,672 in 10 years (exponent 10), $38,697 in 20 years (exponent 20), and $76,123 in 30 years (exponent 30) — the balance roughly doubles with each additional decade because the exponent drives exponential rather than linear growth. Population growth, radioactive decay, bacterial multiplication, and viral spread all follow exponential functions. COVID-19's early spread with a reproduction number of 2.5 meant each generation of infection multiplied cases by 2.5: after 10 generations, one case became 2.5^10 = 9,536 cases. Understanding exponents isn't just academic — it's the foundation for interpreting compound growth and decay in every quantitative field.

Rules of Exponents: A Complete Reference

Exponent rules follow logical patterns that become intuitive with practice. The product rule (a^m × a^n = a^(m+n)) works because multiplying powers with the same base means combining the repeated multiplications: 2³ × 2⁴ = (2×2×2)(2×2×2×2) = 2⁷. The quotient rule (a^m ÷ a^n = a^(m-n)) follows the same logic: dividing cancels factors. The power rule ((a^m)^n = a^(mn)) means raising a power to another power multiplies exponents: (2³)⁴ = 2¹² = 4,096. Zero exponent (a⁰ = 1 for a ≠ 0) follows from the quotient rule: a³ ÷ a³ = a⁰ = 1. Negative exponents (a^(-n) = 1/a^n) extend this pattern: a² ÷ a⁵ = a^(-3) = 1/a³. Fractional exponents (a^(1/n) = ⁿ√a) connect exponents to roots: 8^(1/3) = ³√8 = 2, and 8^(2/3) = (³√8)² = 4. Every rule derives from the fundamental definition of exponents as repeated multiplication.

Common Exponent Mistakes

Several frequent errors plague students and professionals working with exponents. The most common: confusing (ab)² with a²b — the correct expansion is a²b² because the exponent distributes to both factors. Similarly, (a+b)² ≠ a²+b²; it equals a²+2ab+b². This error appears in financial calculations when people square a sum instead of expanding it. Another common mistake: treating negative bases incorrectly. (-3)² = 9 (the negative is inside the parentheses and gets squared), but -3² = -9 (the exponent applies only to 3, then the negative sign is applied). In spreadsheet formulas, =-3^2 returns -9, not 9 — a frequent source of calculation errors. Order of operations places exponents before multiplication and negation, which catches many people off guard.

Scientific Notation and Powers of Ten

Scientific notation expresses numbers as a coefficient times a power of 10: 6.022 × 10²³ (Avogadro's number), 1.602 × 10^(-19) (charge of an electron in coulombs), 9.461 × 10¹⁵ (meters in a light-year). The exponent tells you how many places to shift the decimal: positive exponents shift right (making big numbers), negative exponents shift left (making small numbers). Multiplying numbers in scientific notation is elegant: multiply the coefficients and add the exponents. (3 × 10⁴)(2 × 10³) = 6 × 10⁷. Division subtracts exponents: (6 × 10⁸) ÷ (2 × 10³) = 3 × 10⁵. Engineers use engineering notation, a variant where exponents are always multiples of 3 — corresponding to unit prefixes like kilo (10³), mega (10⁶), giga (10⁹): a 2.4 GHz processor runs at 2.4 × 10⁹ Hz, and 47 kΩ = 47 × 10³ ohms. This convention makes mental conversion to prefixed units immediate.

e^x?
Exponential function. e=2.718. Used in growth, probability, calculus.3

Exponents in Real-World Applications

Exponential relationships appear throughout science, finance, and engineering. Compound interest follows the formula A = P(1 + r/n)^(nt), where the exponent nt determines how dramatically money grows over time. A $10,000 investment at 7% compounded annually grows to $19,672 in 10 years (exponent 10), $38,697 in 20 years (exponent 20), and $76,123 in 30 years (exponent 30) — the balance roughly doubles with each additional decade because the exponent drives exponential rather than linear growth. Population growth, radioactive decay, bacterial multiplication, and viral spread all follow exponential functions. COVID-19's early spread with a reproduction number of 2.5 meant each generation of infection multiplied cases by 2.5: after 10 generations, one case became 2.5^10 = 9,536 cases. Understanding exponents isn't just academic — it's the foundation for interpreting compound growth and decay in every quantitative field.

Rules of Exponents: A Complete Reference

Exponent rules follow logical patterns that become intuitive with practice. The product rule (a^m × a^n = a^(m+n)) works because multiplying powers with the same base means combining the repeated multiplications: 2³ × 2⁴ = (2×2×2)(2×2×2×2) = 2⁷. The quotient rule (a^m ÷ a^n = a^(m-n)) follows the same logic: dividing cancels factors. The power rule ((a^m)^n = a^(mn)) means raising a power to another power multiplies exponents: (2³)⁴ = 2¹² = 4,096. Zero exponent (a⁰ = 1 for a ≠ 0) follows from the quotient rule: a³ ÷ a³ = a⁰ = 1. Negative exponents (a^(-n) = 1/a^n) extend this pattern: a² ÷ a⁵ = a^(-3) = 1/a³. Fractional exponents (a^(1/n) = ⁿ√a) connect exponents to roots: 8^(1/3) = ³√8 = 2, and 8^(2/3) = (³√8)² = 4. Every rule derives from the fundamental definition of exponents as repeated multiplication.

Common Exponent Mistakes

Several frequent errors plague students and professionals working with exponents. The most common: confusing (ab)² with a²b — the correct expansion is a²b² because the exponent distributes to both factors. Similarly, (a+b)² ≠ a²+b²; it equals a²+2ab+b². This error appears in financial calculations when people square a sum instead of expanding it. Another common mistake: treating negative bases incorrectly. (-3)² = 9 (the negative is inside the parentheses and gets squared), but -3² = -9 (the exponent applies only to 3, then the negative sign is applied). In spreadsheet formulas, =-3^2 returns -9, not 9 — a frequent source of calculation errors. Order of operations places exponents before multiplication and negation, which catches many people off guard.

Scientific Notation and Powers of Ten

Scientific notation expresses numbers as a coefficient times a power of 10: 6.022 × 10²³ (Avogadro's number), 1.602 × 10^(-19) (charge of an electron in coulombs), 9.461 × 10¹⁵ (meters in a light-year). The exponent tells you how many places to shift the decimal: positive exponents shift right (making big numbers), negative exponents shift left (making small numbers). Multiplying numbers in scientific notation is elegant: multiply the coefficients and add the exponents. (3 × 10⁴)(2 × 10³) = 6 × 10⁷. Division subtracts exponents: (6 × 10⁸) ÷ (2 × 10³) = 3 × 10⁵. Engineers use engineering notation, a variant where exponents are always multiples of 3 — corresponding to unit prefixes like kilo (10³), mega (10⁶), giga (10⁹): a 2.4 GHz processor runs at 2.4 × 10⁹ Hz, and 47 kΩ = 47 × 10³ ohms. This convention makes mental conversion to prefixed units immediate.

Typing?
x^n text. x**n Python. x^y calc button.4

How to Use This Calculator

  1. Enter base — Number to raise.
  2. Enter exponent — Power.
  3. See result — With steps.

Tips and Best Practices

a^0 = 1 always. Convention (even 0^0 usually = 1).

Negative flips. 2^(-3)=1/8.

Fractional = roots. x^(1/2) is square root.

Powers of 2 for CS. 2^10=1024, 2^20=~1M.

See also: Logarithm · Scientific · Compound Interest

📚 Sources & References
  1. [1] Khan Academy. "Exponents." KhanAcademy.org
  2. [2] Wolfram. "Exponentiation." MathWorld
  3. [3] NIST. "Exponential." DLMF.NIST.gov
  4. [4] OpenStax. "Exponents." OpenStax.org
Editorial Standards — Every calculator is built from peer-reviewed formulas and official data sources, editorially reviewed for accuracy, and updated regularly. Read our full methodology · About the author