Intermediate level

Powers

A power is shorthand for multiplying the same factor by itself. Learn the base and the exponent, the laws of exponents, powers of a product and of a quotient, zero and negative exponents, the monotonicity of exponentiation, and scientific notation.

Before you start

This topic builds on earlier ideas. Before you start, it's worth working through the lessons below — they'll make everything click:

Where this is used

Real situations where you count exactly the way this lesson teaches:

  • Drives and memory sticks
    A "64 GB" stick shows up in the file explorer as 59.6 GB: the maker counts 64 · 10⁹ bytes, the system divides by 2³⁰ = 1,073,741,824. Nobody stole the missing 4.4 GB — two different powers did.
  • Saving money
    Compound interest is a power, not a product: 10,000 at 4% a year grows to 10,000 · 1.04¹⁰ = 14,802 over a decade, not the 14,000 that "4% ten times over" suggests.
  • Food safety
    Bacteria in a warm dish divide every 20 minutes, so after n hours there are 2³ⁿ times as many. Two hours on the counter is 2⁶ = 64 times the cells, six hours is 2¹⁸ = 262,144 times — four thousand times worse than the two-hour figure. That is why the rules set a two-hour cooling window instead of saying "do not leave it out overnight": inside an exponent every extra hour costs eight times as much.

All formulas

  • Definition of a power

    an=aaan factorsa^n = \underbrace{a \cdot a \cdot \ldots \cdot a}_{n \text{ factors}}

    a is the base, n is the exponent

  • Multiplying powers with the same base

    aman=am+na^m \cdot a^n = a^{m+n}

    add the exponents

  • Dividing powers with the same base

    aman=amn\frac{a^m}{a^n} = a^{m-n}

    subtract the exponents

  • A power of a power

    (am)n=amn(a^m)^n = a^{m \cdot n}

    multiply the exponents

  • A power of a product

    (ab)n=anbn(a \cdot b)^n = a^n \cdot b^n

    raise each factor separately

  • A power of a quotient

    (ab)n=anbn(b0)\left(\frac{a}{b}\right)^n = \frac{a^n}{b^n} \quad (b \neq 0)

    raise the numerator and the denominator separately

  • Zero and negative exponents

    a0=1,an=1an(a0)a^0 = 1, \quad a^{-n} = \frac{1}{a^n} \quad (a \neq 0)

    a negative exponent means a reciprocal

  • Monotonicity in the base

    0a<b    an<bn(n1)0 \le a < b \implies a^n < b^n \quad (n \ge 1)

    with the same exponent, the larger base gives the larger power

  • Monotonicity in the exponent

    m<n    {am<anfor a>1am>anfor 0<a<1m < n \implies \begin{cases} a^m < a^n & \text{for } a > 1 \\ a^m > a^n & \text{for } 0 < a < 1 \end{cases}

    a base above 1 makes the power grow, a base between 0 and 1 makes it shrink

A power is shorthand for multiplication of the same factor by itself:

an=aaan factorsa^n = \underbrace{a \cdot a \cdot \ldots \cdot a}_{n \text{ factors}}

The number aa is the base and nn is the exponent — it says how many times the base appears as a factor:

25=22222=322^5 = 2 \cdot 2 \cdot 2 \cdot 2 \cdot 2 = 32

The second power is called a square (525^2 reads "five squared") and the third one a cube (535^3 is "five cubed").

The laws of exponents

Every law follows straight from the definition — write the power out as a product and count the factors.

Multiplying powers with the same base adds the exponents:

aman=am+na^m \cdot a^n = a^{m+n}

because 2322=(222)(22)=252^3 \cdot 2^2 = (2 \cdot 2 \cdot 2) \cdot (2 \cdot 2) = 2^5.

Dividing subtracts them:

aman=amn\frac{a^m}{a^n} = a^{m-n}

And raising a power to a power multiplies them:

(am)n=amn(a^m)^n = a^{m \cdot n}
Write as a single power: 3⁴ · 3³ ÷ 3²

Raising to a power distributes over multiplication and division, but not over addition:

(ab)n=anbn(ab)n=anbn(b0)(a \cdot b)^n = a^n \cdot b^n \qquad \left(\frac{a}{b}\right)^n = \frac{a^n}{b^n} \quad (b \neq 0)

Both are one law: dividing is multiplying by the reciprocal, so a quotient is raised to a power by raising the numerator and the denominator separately. Writing it out shows why:

(23)3=232323=222333=2333=827\left(\frac{2}{3}\right)^3 = \frac{2}{3} \cdot \frac{2}{3} \cdot \frac{2}{3} = \frac{2 \cdot 2 \cdot 2}{3 \cdot 3 \cdot 3} = \frac{2^3}{3^3} = \frac{8}{27}

By contrast (a+b)nan+bn(a + b)^n \neq a^n + b^n — check it on (1+2)2=9(1 + 2)^2 = 9 while 12+22=51^2 + 2^2 = 5.

Compute (3/5)² and (1/2)⁴.

Zero and negative exponents

What does a0a^0 mean? "Multiply the base by itself zero times" says nothing, so the answer comes from the division law:

a0=ann=anan=1(a0)a^0 = a^{n-n} = \frac{a^n}{a^n} = 1 \quad (a \neq 0)

So a0=1a^0 = 1 is not an arbitrary convention — it is the only value that keeps the division law true. Negative exponents follow the same track:

an=1an(a0)a^{-n} = \frac{1}{a^n} \quad (a \neq 0)

A negative exponent means a reciprocal, not a negative result: 23=182^{-3} = \frac{1}{8} is a positive number.

For a fraction the two laws meet in one handy consequence: (ab)n=anbn=bnan\left(\frac{a}{b}\right)^{-n} = \frac{a^{-n}}{b^{-n}} = \frac{b^n}{a^n}, that is, flip the fraction and raise it. Hence (23)2=(32)2=94\left(\frac{2}{3}\right)^{-2} = \left(\frac{3}{2}\right)^2 = \frac{9}{4}.

What is 5⁻² ?

The monotonicity of exponentiation

Powers can be compared without working out their values — provided only one thing about them differs.

When the exponent is the same, the base decides. Among non-negative bases, the larger base gives the larger power:

0a<b    an<bn(n1)0 \le a < b \implies a^n < b^n \quad (n \ge 1)

That settles 34<443^4 < 4^4 and (13)5<(12)5\left(\frac{1}{3}\right)^5 < \left(\frac{1}{2}\right)^5 straight away, with nothing computed.

When the base is the same, the exponent decides — but the direction depends on whether that base is above or below one:

m<n    {am<anfor a>1am>anfor 0<a<1m < n \implies \begin{cases} a^m < a^n & \text{for } a > 1 \\ a^m > a^n & \text{for } 0 < a < 1 \end{cases}

The reason takes one sentence: every further power multiplies by the base, and multiplying by a number above 11 makes things bigger while multiplying by one between 00 and 11 makes them smaller. Hence 23<252^3 < 2^5 (8<328 < 32), but 0.53>0.550.5^3 > 0.5^5 (0.125>0.031250.125 > 0.03125). A base of 11 is the boundary where nothing changes at all: 1n=11^n = 1 for every nn.

When the base and the exponent both differ, neither rule is enough — you have to bring the powers to a common form or compute the values. The pair 353^5 and 535^3 shows that intuition fails here: the larger base loses, since 35=2433^5 = 243 while 53=1255^3 = 125. There is more force in the exponent than in the base.

Which is larger: 2¹⁰ or 10²? And 0.9¹⁰ or 0.9³?

Monotonicity is also why exponentiation can be undone: since a power with a fixed base above 11 grows with its exponent, every value corresponds to exactly one exponent — and that exponent is what a logarithm looks for.

Scientific notation

Powers of ten keep very large and very small numbers short. In scientific notation a number is written as a10na \cdot 10^n with 1a<101 \le a < 10:

300000000=31080.00042=4.2104300\,000\,000 = 3 \cdot 10^8 \qquad 0.00042 = 4.2 \cdot 10^{-4}

The exponent says how far the decimal point moves: to the right when positive, to the left when negative.

An exponent need not be a whole number: am/na^{m/n} makes sense and means exactly amn\sqrt[n]{a^m} — that is the subject of its own topic, rational exponents.

Practice

Work through a set of exercises — they get harder as you go. At the end you'll see your score and the mistakes worth reviewing.

Exercise 1 of 8Score: 0
4² =

Common mistakes

  • Multiplying the base by the exponent252^5 is 3232, not 1010; the exponent counts factors, it does not multiply.
  • Adding exponents when powers are added — the laws cover multiplication and division; 23+242^3 + 2^4 has to be computed as 8+16=248 + 16 = 24.
  • Dropping the bracket on a negative base(2)4=16(-2)^4 = 16, but 24=16-2^4 = -16.
  • Reading 232^{-3} as a negative number — a negative exponent gives a reciprocal, that is 18\frac{1}{8}.
  • Raising only the numerator(23)3\left(\frac{2}{3}\right)^3 is 827\frac{8}{27}, not 83\frac{8}{3}; the denominator is raised just like the numerator.
  • Assuming a higher exponent always gives a bigger number — with a base between 00 and 11 it is the other way round: 0.55<0.530.5^5 < 0.5^3.
  • Comparing powers "by the base" when the exponents differ too53=1255^3 = 125 is smaller than 35=2433^5 = 243.

Formula card

Topic: Powers

  • Definition of a power

    an=aaan factorsa^n = \underbrace{a \cdot a \cdot \ldots \cdot a}_{n \text{ factors}}

    a is the base, n is the exponent

  • Multiplying powers with the same base

    aman=am+na^m \cdot a^n = a^{m+n}

    add the exponents

  • Dividing powers with the same base

    aman=amn\frac{a^m}{a^n} = a^{m-n}

    subtract the exponents

  • A power of a power

    (am)n=amn(a^m)^n = a^{m \cdot n}

    multiply the exponents

  • A power of a product

    (ab)n=anbn(a \cdot b)^n = a^n \cdot b^n

    raise each factor separately

  • A power of a quotient

    (ab)n=anbn(b0)\left(\frac{a}{b}\right)^n = \frac{a^n}{b^n} \quad (b \neq 0)

    raise the numerator and the denominator separately

  • Zero and negative exponents

    a0=1,an=1an(a0)a^0 = 1, \quad a^{-n} = \frac{1}{a^n} \quad (a \neq 0)

    a negative exponent means a reciprocal

  • Monotonicity in the base

    0a<b    an<bn(n1)0 \le a < b \implies a^n < b^n \quad (n \ge 1)

    with the same exponent, the larger base gives the larger power

  • Monotonicity in the exponent

    m<n    {am<anfor a>1am>anfor 0<a<1m < n \implies \begin{cases} a^m < a^n & \text{for } a > 1 \\ a^m > a^n & \text{for } 0 < a < 1 \end{cases}

    a base above 1 makes the power grow, a base between 0 and 1 makes it shrink

Frequently asked questions

Related articles