Exponential notation is a shorthand for showing how many times a number is multiplied by itself. The expression 2⁵ means 2 × 2 × 2 × 2 × 2, which equals 32. Once you understand the two parts of the expression and a few rules for special cases, you can read any exponential notation at a glance.
The Two Parts: Base and Exponent
Every exponential expression has two components. The larger number written on the line is the base, the number being multiplied. The smaller number written above and to the right is the exponent (also called the power), which tells you how many times to use the base as a factor.
In 2⁵, the base is 2 and the exponent is 5. You read it aloud as “two to the fifth power.” The general pattern is aⁿ, read as “a to the nth power,” meaning you multiply a by itself n times. A few exponents have their own names: anything raised to the 2nd power is “squared” (3² is “three squared”), and anything raised to the 3rd power is “cubed” (4³ is “four cubed”).
The most common beginner mistake is treating the exponent as a multiplier instead of a repeat count. For example, 2⁵ does not mean 2 × 5 = 10. It means 2 × 2 × 2 × 2 × 2 = 32. The exponent never multiplies the base directly. It tells you how many copies of the base to multiply together.
Special Exponents: 1 and 0
Any number raised to the 1st power is just itself. So 7¹ = 7, and 453¹ = 453. The exponent of 1 means you’re using the base as a factor exactly once.
Any number raised to the 0 power equals 1. This trips people up because it feels counterintuitive, but it’s consistent across all of mathematics: 5⁰ = 1, 100⁰ = 1, even 999,999⁰ = 1. The one exception is 0⁰, which is generally left undefined.
How Negative Exponents Work
A negative exponent flips the base into a fraction. Instead of multiplying the base by itself, you multiply the reciprocal of the base by itself. The rule is: a⁻ⁿ = 1/aⁿ.
Take 5⁻³ as an example. The negative exponent tells you to take the reciprocal of 5 (which is 1/5) and multiply it by itself 3 times: 1/5 × 1/5 × 1/5 = 1/125. So 5⁻³ = 1/125, or 0.008. Similarly, 8⁻² means 1/8², which is 1/64.
If the base is already a fraction, a negative exponent flips it. For instance, (3/4)⁻² becomes (4/3)², which is 16/9. You swap the numerator and denominator, then apply the exponent as if it were positive.
Reading Scientific Notation
Scientific notation is the most common place you’ll encounter exponential notation in everyday life. It uses powers of 10 to express very large or very small numbers in a compact form. The format is always a decimal number between 1 and 10, multiplied by 10 raised to some power.
The exponent on the 10 tells you how many places to move the decimal point. A positive exponent moves the decimal to the right, making the number larger. A negative exponent moves it to the left, making the number smaller.
Here are a few real-world examples to practice with:
- 3.0 × 10⁸ is the speed of light in meters per second. The exponent 8 means you move the decimal 8 places to the right: 300,000,000.
- 6.248 × 10³ means move the decimal 3 places right: 6,248.
- 4.2 × 10⁻⁵ means move the decimal 5 places to the left: 0.000042.
- 7.6 × 10⁻⁴ means move the decimal 4 places left: 0.00076.
The pattern is straightforward. Positive powers of 10 give you large numbers, negative powers of 10 give you tiny decimals. The coefficient (the number before the ×) provides the significant digits, and the exponent tells you the scale.
The “E” on Calculators and Screens
Calculators and spreadsheets often can’t display the “× 10” format, so they use the letter E (or e) instead. When your calculator shows 3.0E8, it means 3.0 × 10⁸, or 300,000,000. When you see 4.2E-5, that’s 4.2 × 10⁻⁵, or 0.000042.
The E is not a separate number or variable. It simply replaces “× 10^” in the display. Programming languages like Python and JavaScript use this same convention, so you’ll see it in code, data exports, and financial software. If a spreadsheet cell shows 1.5E12, you’re looking at 1.5 trillion.
Common Mistakes to Watch For
Beyond confusing “multiply by the exponent” with “multiply by itself,” a few other errors come up regularly when people work with exponents.
One frequent mistake involves expressions like (a + b)². It’s tempting to distribute the exponent and write a² + b². That’s wrong. Squaring a sum means multiplying (a + b)(a + b), which gives you a² + 2ab + b². The exponent applies to the entire expression, not to each piece individually.
Another pitfall is confusing the order of operations. In the expression 2 × 3², you calculate the exponent first: 3² = 9, then multiply by 2 to get 18. If you mistakenly multiply first (2 × 3 = 6, then square), you’d get 36, which is incorrect. Exponents always come before multiplication in the standard order of operations.
With negative bases, parentheses matter enormously. The expression (-3)² means (-3) × (-3) = 9, a positive result. But -3² means -(3²) = -9, because the exponent applies only to the 3, and the negative sign is applied afterward. Missing this distinction is one of the most common sources of sign errors.
A Quick Reading Checklist
When you encounter an exponential expression, run through these steps:
- Identify the base. This is the full-sized number (or variable) being raised to a power.
- Identify the exponent. This is the superscript number that tells you the repeat count.
- Check the sign of the exponent. Positive means multiply the base by itself. Negative means take the reciprocal first, then multiply.
- Check for parentheses. If the base includes a negative sign or multiple terms, parentheses determine what the exponent applies to.
- For scientific notation, move the decimal. Right for positive exponents on the 10, left for negative.
With practice, reading exponential notation becomes automatic. The expression 6.02 × 10²³ (the number of molecules in a mole of a substance) stops looking intimidating and starts reading like what it is: a very specific, very large number written in the most compact way possible.

