Exponent Calculator

Calculate any base raised to any power, including negative and fractional exponents.

^

Quick Exponents

Quick Bases

2^10

1,024

Powers of 2
ExponentValue
2^01
2^12
2^24
2^38
2^416
2^532
2^664
2^7128
2^8256
2^9512
2^101,024
2^112,048

How to Use the Exponent Calculator

This exponent calculator (also used as a power calculator, x to the y calculator, or e^x calculator) raises any base to any power in one step. It handles positive and negative exponents, fractions, decimals, and scientific notation output, so the same tool works for homework, physics problems, computer-science byte math, and compound-interest checks. All math runs in your browser, so you can tweak either number and watch the result update immediately.

  1. Enter the base. This is the number being raised to a power. It can be positive, negative, or a decimal. Examples: 2, −3, 0.5, 10, 2.71828 (for e^x calculations).
  2. Enter the exponent. This is the power. Whole numbers multiply the base by itself n times. Fractions take roots: 0.5 is the square root, 1/3 is the cube root. Negative exponents flip the result into a reciprocal: −1 gives 1/base, −2 gives 1/base².
  3. Read the result. The result panel shows the standard-notation answer, a scientific-notation version for very large or very small numbers, and a step-by-step expansion for small integer exponents. If the base is an integer between 2 and 20, a powers table below fills in every exponent from 0 to 11 so you can scan neighboring values.

Special values worth remembering: any nonzero number to the power of 0 equals 1, any number to the power of 1 equals itself, and a negative base with an even exponent gives a positive result while an odd exponent gives a negative result. This exponential calculator also accepts e (2.71828...) and π (3.14159...) as decimal inputs for natural-growth and geometry problems, and it handles base-10 and base-2 exponent work that shows up constantly in engineering, finance, and computing.

Exponent Rules and Laws

Basic Definition

An exponent is shorthand for repeated multiplication. a^n means a multiplied by itself n times. So 2^5 = 2 × 2 × 2 × 2 × 2 = 32. By convention a^1 = a, and a^0 = 1 for any nonzero a. That last one trips up a lot of people, but it keeps every exponent rule below consistent.

Negative Exponents

A negative exponent means take the reciprocal of the positive-exponent version: a^(−n) = 1 / a^n. So 2^(−3) = 1 / 2^3 = 1/8 = 0.125. Negative exponents do not produce negative numbers; they produce fractions smaller than 1 (for bases greater than 1). To get an actually negative result you need a negative base raised to an odd exponent, like (−2)^3 = −8.

Fractional Exponents

A fractional exponent represents a root. a^(1/n) is the nth root of a: the number that, multiplied by itself n times, gives back a. So 27^(1/3) = 3 (because 3 × 3 × 3 = 27), and 16^(1/4) = 2. For combined fractions, a^(m/n) = (nth root of a) raised to the m, so 8^(2/3) = 2^2 = 4.

The Seven Exponent Rules

Product rule:     aⁿ × aᵐ = aⁿ⁺ᵐ       (2³ × 2⁴ = 2⁷ = 128)
Quotient rule:    aⁿ / aᵐ = aⁿ⁻ᵐ       (2⁵ / 2² = 2³ = 8)
Power rule:       (aⁿ)ᵐ = aⁿˣᵐ         ((2³)² = 2⁶ = 64)
Distribute mult:  (ab)ⁿ = aⁿ × bⁿ      ((2 × 5)³ = 8 × 125 = 1000)
Distribute div:   (a/b)ⁿ = aⁿ / bⁿ     ((3/2)² = 9/4 = 2.25)
Negative:         a⁻ⁿ = 1/aⁿ            (2⁻³ = 1/8)
Zero:             a⁰ = 1                (7⁰ = 1)
Fractional:       a^(1/n) = ⁿ√a        (8^(1/3) = 2)
Fractional 2:     a^(m/n) = (ⁿ√a)ᵐ     (8^(2/3) = 4)

Natural Exponential: e^x

The natural base e ≈ 2.71828 is the most important constant in continuous growth math. e^x appears in continuously compounded interest (A = P × e^(rt)), population growth, radioactive decay, probability distributions, and almost every differential-equation solution in physics and engineering. e is defined as the limit of (1 + 1/n)^n as n grows without bound, which is the idealized rate of a process that compounds infinitely many times per period.

Base 10 and Base 2: The Engineer's Exponents

Two bases dominate applied work. Base 10 powers underpin scientific notation (6.02 × 10^23 for Avogadro's number), decibels, pH, the Richter scale, and any unit involving prefixes like kilo (10^3), mega (10^6), and giga (10^9). Base 2 powers dominate computing: 2^10 = 1,024 is why a kilobyte is often treated as 1,024 bytes rather than 1,000. A 32-bit unsigned integer holds values up to 2^32 − 1 = 4,294,967,295, and a 64-bit integer pushes that to 2^64 − 1, roughly 1.8 × 10^19.

Worked Examples

A handful of reference results that come up constantly:

2⁸   = 256                 (8-bit byte range)
3⁴   = 81
5³   = 125
10⁶  = 1,000,000           (one million)
e¹   ≈ 2.71828
e²   ≈ 7.389
0.5¹⁰ ≈ 0.000977            (halving ten times)
1.07¹⁰ ≈ 1.967              (7% growth for 10 years doubles)
(−2)⁴ = 16                  (even exponent, positive)
(−2)⁵ = −32                 (odd exponent, negative)

Quick-Reference Table: Powers of 2, 10, and e

n2^n10^ne^n (≈)
0111.000
12102.718
241007.389
381,00020.09
41610,00054.60
532100,000148.4
6641,000,000
712810,000,000
8256100,000,000
95121,000,000,000
101,024
124,096
1665,536

Storage-sized powers of 2, the ones you actually hit in practice:

PowerValueName
2¹⁰1,0241 Kilobyte (KiB)
2²⁰1,048,5761 Megabyte (MiB)
2³⁰1,073,741,8241 Gigabyte (GiB)
2³²4,294,967,296Max 32-bit unsigned integer
2⁶⁴~1.84 × 10¹⁹Max 64-bit unsigned integer

Where Exponents Show Up in the Real World

Exponents are not just a homework topic. They are the shape of almost every process that builds on itself: money, crowds, data, radioactive atoms, sound intensity, earthquakes. Once you notice the pattern, the same formula keeps reappearing across finance, biology, engineering, and computing, which is exactly why an exponential calculator is a tool most people actually use a few times a month.

Real-World Appearances

The big ones, and the formulas that generate them:

  • Compound interest: A = P(1 + r)^t. A $10,000 deposit at 7% for 30 years grows to 10,000 × 1.07^30 = $76,123. The exponent is doing all the heavy lifting.
  • Moore's law: transistor counts on a chip have doubled roughly every two years, so count ≈ C₀ × 2^(years/2). Forty years of that is 2^20 ≈ a million-fold increase, which is exactly what happened from the early 1970s to the 2010s.
  • Exponential decay: radioactive material, drug clearance, and cooling all follow N = N₀ × e^(−kt). After one half-life, half the original remains; after 10 half-lives, only 1/2^10 = about 0.1% is left.
  • Richter scale: each full unit on the Richter scale is 10× more ground motion and about 31.6× more released energy. A magnitude 7 quake moves the ground 10^2 = 100 times more than a magnitude 5.
  • Decibels: dB is a logarithmic unit defined through exponents. A 10 dB increase is 10× more power; 20 dB is 100×. A jet engine at 140 dB is 10^9 = one billion times the sound power of a whisper at 50 dB.

Computer Storage: 2^10 vs 10^3

Computers count in powers of 2 because memory addresses are binary. A kilobyte (KiB) in the strict computing sense is 2^10 = 1,024 bytes, a mebibyte is 2^20 ≈ 1.049 million bytes, and a gibibyte is 2^30 ≈ 1.074 billion bytes. Storage marketers use powers of 10 instead, which happens to save them about 7% per prefix:

UnitStrict (binary, 2^n)Marketing (decimal, 10^n)Gap
1 KB vs 1 KiB1,0241,0002.4%
1 MB vs 1 MiB1,048,5761,000,0004.9%
1 GB vs 1 GiB1,073,741,8241,000,000,0007.4%
1 TB vs 1 TiB1,099,511,627,7761,000,000,000,00010.0%

This is why a 1 TB drive shows up in your operating system as about 931 GiB. The drive actually holds 10^12 bytes, but Windows counts in 2^30-sized gigabytes and reports the smaller number. Nobody is lying; they are just using different exponent bases.

Exponential Growth Is Deceptive

The old chessboard-and-rice legend is the clearest demonstration. Place one grain on the first square, two on the second, four on the third, doubling each time. The first row (8 squares) needs 255 grains, a teaspoonful. The eighth square is 128 grains, still tiny. Square 32 is 2^31 = 2.1 billion grains, the annual rice harvest of a small country. Square 64 is 2^63 = 9.22 × 10^18 grains, more than 1,000 years of global rice production. The jump from square 32 to square 64 is the entire point: exponential growth looks flat for a long time and then explodes in the last stretch.

SquareGrains on this square (2^(n−1))Running total
111
8128255
1632,76865,535
322,147,483,648~4.3 billion
48~1.41 × 10¹⁴~2.8 × 10¹⁴
649.22 × 10¹⁸1.84 × 10¹⁹

This is also why compound interest over 40 years looks nothing like compound interest over 10. The first decade is almost linear; the fourth decade is where the total balance doubles once more on its own.

Common Mistakes With Exponents

A short list of errors that cost students and adults partial credit every day:

  • a^(m+n) is not a^m + a^n. 2^(3+2) = 2^5 = 32, but 2^3 + 2^2 = 8 + 4 = 12. The product rule adds exponents when you multiply the powers, not when you add them.
  • (a + b)^2 is not a^2 + b^2. It is a^2 + 2ab + b^2. So (3 + 4)^2 = 49, not 9 + 16 = 25. The cross term 2ab is the part people drop.
  • 0^0 is contested. Most combinatorics, algebra, and programming languages define it as 1 because it makes polynomial and power-series formulas work cleanly. Some calculus contexts treat it as indeterminate. Use 1 unless a textbook tells you otherwise.
  • Negative bases need parentheses. −2^4 is read as −(2^4) = −16, while (−2)^4 = +16. Missing parentheses flip the sign.
  • Scientific notation is still exponents. 6.02 × 10^23 is a base of 6.02 times a power of 10, not a new operation. Multiplying numbers in scientific notation uses the product rule: (a × 10^m)(b × 10^n) = (ab) × 10^(m+n).

Frequently Asked Questions

An exponent tells you how many times to multiply a base number by itself. In 2⁵, the base is 2 and the exponent is 5, meaning 2 × 2 × 2 × 2 × 2 = 32. Exponents appear in scientific notation (6.02 × 10²³ atoms per mole), compound interest (P × (1+r)ⁿ), computer storage (2³² bytes = 4 GB), and exponential growth and decay models.

Related Calculators