Lesson illustration

Simplifying Expressions with Exponents and Roots

Hello again. In the previous lesson, you established the calculation priority system: grouping symbols first, then powers, then multiplication or division, then addition or subtraction. This lesson zooms in on the “powers” stage. You will learn how exponent rules compress repeated multiplication, how roots undo powers, and how to simplify numerical expressions without treating the rules as isolated formulas.

These ideas reappear throughout machine learning: squared errors use powers, Euclidean distance uses square roots, and very small or large quantities often use negative exponents. The aim here is reliable numerical simplification, not formal proof.


Exponents: compact repeated multiplication

In

343^4

the number 33 is the base and 44 is the exponent. The exponent tells us how many copies of the base are multiplied:

34=3×3×3×3=813^4 = 3 \times 3 \times 3 \times 3 = 81

Two basic cases are worth making automatic:

a1=aa^1 = a a0=1for a0a^0 = 1 \quad \text{for } a \ne 0

For example,

71=77^1 = 7 70=17^0 = 1

The zero-exponent rule follows a useful pattern. Each time the exponent of 33 decreases by one, the value is divided by 33:

33=27,32=9,31=3,30=13^3 = 27,\qquad 3^2 = 9,\qquad 3^1 = 3,\qquad 3^0 = 1

Be precise about what the exponent applies to. Parentheses determine the base:

(3)2=(3)×(3)=9(-3)^2 = (-3)\times(-3)=9

but

32=(32)=9-3^2 = -(3^2)=-9

In the second expression, the exponent applies only to 33, and the negative sign is applied afterward.

Two cases to avoid for now are 000^0, whose interpretation depends on context, and a negative exponent on zero, such as 020^{-2}, which would require division by zero.


Exponent rules come from counting factors

The following rules work because powers represent repeated multiplication. They are shortcuts, but each shortcut has a condition. In particular, never combine exponents merely because they appear near one another.

Watch Math Antics’ “Algebra Basics: Laws of Exponents” for a visual walkthrough of the rules and their factor-based reasoning.

{"type":"video","title":"Algebra Basics: Laws Of Exponents - Math Antics","learning_duration":748,"video_id":"LkhPRz7Hocg","par_intro":"Math Antics introduces the exponent rules one at a time and verifies them by expanding powers into repeated factors. This is especially useful for seeing why adding exponents belongs to multiplication, while multiplying exponents belongs to a power raised to a power.","par_directions":"Watch consecutively from <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"093095c6\" data-range-start=\"33\" data-range-end=\"89\">zero and one</span> for the two foundation rules. Then watch <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"3bc46da4\" data-range-start=\"89\" data-range-end=\"238\">negative exponents</span>, focusing on the idea that a negative exponent creates a reciprocal. Continue with <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"6ca5a083\" data-range-start=\"238\" data-range-end=\"357\">nested powers</span>, then <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"5cf77193\" data-range-start=\"357\" data-range-end=\"651\">same base rules</span> for multiplication and division. Finish with <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"04544c7b\" data-range-start=\"651\" data-range-end=\"781\">powered products</span>, which explains when an exponent can apply to every factor in parentheses.","video_duration":826,"isV2":true,"blockId":"c9ebd12b-a3b6-466f-9ad6-28b986c7946b","lessonId":"17af21e5-145c-4c7d-a8a4-5d12c8f2efec"}



1. Multiply powers with the same base: add exponents

am×an=am+na^m \times a^n = a^{m+n}

For example,

23×24=23+4=27=1282^3 \times 2^4 = 2^{3+4}=2^7=128

This works because there are seven factors of 22 altogether:

(2×2×2)×(2×2×2×2)(2\times2\times2)\times(2\times2\times2\times2)

The bases must match. You cannot combine 23×342^3 \times 3^4 by adding 33 and 44, because one factor is built from 22s and the other from 33s.

2. Divide powers with the same nonzero base: subtract exponents

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

For example,

5452=542=52=25\frac{5^4}{5^2}=5^{4-2}=5^2=25

The subtraction represents cancelling matching factors:

5×5×5×55×5=5×5\frac{5\times5\times5\times5}{5\times5}=5\times5

When the denominator has more factors, the result has a negative exponent:

3235=325=33\frac{3^2}{3^5}=3^{2-5}=3^{-3}

A negative exponent does not make the number negative. It means take the reciprocal:

an=1ana^{-n}=\frac{1}{a^n}

Therefore,

33=133=1273^{-3}=\frac{1}{3^3}=\frac{1}{27}

A reliable mental translation is: a negative exponent moves the powered quantity across the fraction bar.

3. Raise a power to a power: multiply exponents

(am)n=amn(a^m)^n=a^{mn}

For example,

(23)2=23×2=26=64(2^3)^2=2^{3\times2}=2^6=64

To see why, expand the outer square:

(23)2=23×23(2^3)^2=2^3\times2^3 =23+3=26=2^{3+3}=2^6

The operation is repeated twice, and each repetition contains three factors of 22. That produces six factors total.

4. Apply a power to a product or quotient

When an exponent is outside parentheses, it applies to the entire grouped expression:

(ab)n=anbn(ab)^n=a^n b^n (ab)n=anbn\left(\frac{a}{b}\right)^n=\frac{a^n}{b^n}

For example,

(2×3)2=62=36(2\times3)^2=6^2=36

Applying the exponent to both factors gives the same result:

22×32=4×9=362^2\times3^2=4\times9=36

Likewise,

(62)2=6222=364=9\left(\frac{6}{2}\right)^2=\frac{6^2}{2^2}=\frac{36}{4}=9

One important non-rule prevents many errors:

(a+b)nan+bn(a+b)^n \ne a^n+b^n

For instance,

(2+3)2=52=25(2+3)^2=5^2=25

but

22+32=4+9=132^2+3^2=4+9=13

An exponent distributes across multiplication and division inside parentheses, not addition or subtraction.

{
  "type": "exercise",
  "id": "3df939ea-4a66-4e34-9bcf-158fc432dd3e"
}

Roots: reversing powers

A square root asks for the nonnegative number that gives a value when squared:

49=7\sqrt{49}=7

because

72=497^2=49

The square-root symbol means the principal square root, which is nonnegative. Thus,

49=7\sqrt{49}=7

not 77 and 7-7. Both numbers square to 4949, but the symbol 49\sqrt{49} itself denotes only 77.

A cube root asks which number gives the target value when multiplied by itself three times:

273=3\sqrt[3]{27}=3

because

33=273^3=27

Unlike square roots, cube roots can be negative:

83=2\sqrt[3]{-8}=-2

because

(2)3=8(-2)^3=-8

Here are useful perfect squares and cubes to recognize:

NumberSquare rootCube root
111111
4422
9933
161644
252555
64648844
818199
12512555
21621666

A square root of a product can be split when the quantities are nonnegative:

ab=ab\sqrt{ab}=\sqrt{a}\sqrt{b}

This is useful for simplifying roots that are not perfect squares. For example,

72\sqrt{72}

contains the perfect-square factor 3636:

72=36×2\sqrt{72}=\sqrt{36\times2} =362=\sqrt{36}\sqrt{2} =62=6\sqrt{2}

The number 2\sqrt{2} is not a whole number, so 626\sqrt{2} is an exact simplified answer.

Do not split a square root across addition:

a+ba+b\sqrt{a+b}\ne\sqrt{a}+\sqrt{b}

For a numerical check,

9+16=25=5\sqrt{9+16}=\sqrt{25}=5

whereas

9+16=3+4=7\sqrt{9}+\sqrt{16}=3+4=7

Fractional exponents connect powers and roots

Roots can also be written as fractional exponents:

a1/2=aa^{1/2}=\sqrt{a} a1/3=a3a^{1/3}=\sqrt[3]{a}

More generally,

am/n=(an)ma^{m/n}=\left(\sqrt[n]{a}\right)^m

The denominator tells you the root to take; the numerator tells you the power.

Khan Academy’s “Zero, negative, and fractional exponents” provides a concise explanation of this connection, including expressions that combine roots and negative exponents.

{"type":"video","title":"Zero, negative, and fractional exponents | Pre-Algebra | Khan Academy","learning_duration":284,"video_id":"tOuCdKqO6-s","par_intro":"This Khan Academy segment shows how a fractional exponent represents a root and then combines that idea with ordinary and negative exponents. Watch it to connect the notation to calculations you can verify by hand.","par_directions":"Watch <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"fef4c2dc\" data-range-start=\"311\" data-range-end=\"443\">fractional exponents</span> for the meaning of exponents such as \\(4^{1/2}\\) and \\(8^{1/3}\\). Then view <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"2fb8a515\" data-range-start=\"443\" data-range-end=\"491\">negative fractions</span> to see a negative fractional exponent become a reciprocal. Finish with <span data-type=\"resource_video_timerange\" data-resource-subitem-id=\"2becd124\" data-range-start=\"501\" data-range-end=\"605\">numerators and roots</span>, focusing on why \\(8^{2/3}\\) can be evaluated by taking a cube root and then squaring.","video_duration":844,"isV2":true,"blockId":"03e3e1f3-a5c9-4886-9f6c-94777eae86eb","lessonId":"17af21e5-145c-4c7d-a8a4-5d12c8f2efec"}



For example,

811/2=81=981^{1/2}=\sqrt{81}=9

For an exponent such as 163/416^{3/4}, take the fourth root first, then cube:

163/4=(161/4)316^{3/4}=\left(16^{1/4}\right)^3 =23=2^3 =8=8

A negative fractional exponent combines both ideas:

271/327^{-1/3}

First use the negative-exponent rule:

271/3=1271/327^{-1/3}=\frac{1}{27^{1/3}}

Then evaluate the cube root:

=13=\frac{1}{3}
{
  "type": "exercise",
  "id": "3e90360d-c9fe-476d-9647-41bdaa1c19a3"
}

A systematic simplification example

Consider:

(23)2×811/225×3\frac{(2^3)^2 \times 81^{1/2}}{2^5 \times 3}

Start with the grouped power and the root:

(23)2×811/225×3\frac{(2^3)^2 \times 81^{1/2}}{2^5 \times 3} =23×2×925×3=\frac{2^{3\times2}\times9}{2^5\times3}

Now divide the powers with the same base:

=26×925×3=\frac{2^6\times9}{2^5\times3} =265×93=2^{6-5}\times\frac{9}{3} =2×3=2\times3 =6=6

The calculation is manageable because each rule was applied only where its required structure appeared:

  • (23)2(2^3)^2 is a power raised to a power.
  • 811/281^{1/2} is a square root.
  • 26/252^6 / 2^5 has the same base, so exponents may be subtracted.
  • 9/39/3 is ordinary division.

A useful checklist is:

  1. Identify parentheses and fraction bars.
  2. Evaluate roots and individual powers where practical.
  3. Apply an exponent rule only after checking its structure and conditions.
  4. Rewrite the expression after each substantial simplification.
  5. Evaluate ordinary multiplication, division, addition, and subtraction using the order of operations.

Verify the notation in Python

Python uses ** for exponentiation. Importantly, ^ does not mean “power” in Python; it is a different operation called bitwise XOR.

Run these checks:

from math import sqrt

(2**3)**2 * sqrt(81) / (2**5 * 3)
16**(3/4) * 2**(-2)
(-3)**2
-3**2

The results should be:

6.0
2.0
9
-9

Notice the parentheses in 16**(3/4). Without them, Python would calculate the exponentiation before division, producing a completely different expression. Likewise, the final two lines confirm the mathematical distinction between (-3)**2 and -3**2.

For this stage of the course, use Python to verify a hand-worked answer. If the output differs, inspect parentheses and check whether you applied a rule to the correct base.

{
  "type": "exercise",
  "id": "75d328dc-b0be-4267-b567-23d89a261308"
}

Key takeaways

Exponents record repeated multiplication, while roots reverse powers:

  • a0=1a^0=1 for nonzero aa, and an=1/ana^{-n}=1/a^n.
  • Multiply powers with the same base by adding exponents.
  • Divide powers with the same nonzero base by subtracting exponents.
  • For a power raised to another power, multiply exponents.
  • An exponent outside parentheses applies to all factors in a product or quotient, but not to terms joined by addition or subtraction.
  • a1/2a^{1/2} means a square root and a1/3a^{1/3} means a cube root.
  • Parentheses matter, especially with negative bases and in Python.

Next, you will move from purely numerical calculations to algebraic expressions: combining terms such as 3x+5x23x + 5x - 2 while preserving the meaning of each term.

Can't find a good explanation? Sign up and we'll make it for you