Mathovia

Algebra / Preliminaries

Integer Exponents

Exponents are shorthand for repeated multiplication, and a small set of rules governs every way you'll ever combine them. This lesson defines the notation carefully, derives each rule from the repeated-multiplication definition so you can rebuild it from scratch if you forget it, collects all of the rules in one reference table with examples, walks through multi-rule problems one step at a time, catalogs the mistakes that cost the most points, and finishes with ten practice problems and full solutions.

M
Written by
Mathovia Team
Editorial Team

Every polynomial, scientific-notation figure, and compound-interest formula you’ll meet later leans on a small set of exponent rules. This lesson collects all of them in one place, explains why each one is true instead of asking you to memorize it, shows each one in action with numbers and then with variables, and finishes with practice problems you can work yourself before checking the hidden answer.

If you only take one thing away: every rule below is a consequence of a single idea, that an exponent counts repeated factors. Once you see that, the eight rules stop being eight separate facts and become one fact viewed from eight angles.

What Is an Integer Exponent?

An exponent tells you how many times to multiply a number (the base) by itself. In the expression \(a^{n}\), \(a\) is the base and \(n\) is the exponent (also called the power). For a positive whole number \(n\):

$$ a^{n} = \underbrace{a \times a \times \cdots \times a}_{n \text{ times}} $$

For example, \(2^{4} = 2 \times 2 \times 2 \times 2 = 16\). The exponent is not a separate multiplier — \(2^{4}\) is not \(2 \times 4\); those give different numbers entirely (\(16\) versus \(8\)).

How to read them. \(2^{4}\) is “two to the fourth power” or just “two to the fourth.” Two cases have their own names: \(a^{2}\) is ”\(a\) squared” (it’s the area of a square with side \(a\)) and \(a^{3}\) is ”\(a\) cubed” (the volume of a cube with edge \(a\)). An exponent of 1 is almost never written, because \(a^{1} = a\) — one factor of \(a\) is just \(a\).

Where the base stops. The base is only the thing the exponent is physically attached to. In \(5x^{3}\) the base is \(x\), not \(5x\), so \(5x^{3}\) means \(5 \cdot x \cdot x \cdot x\). If you want the 5 included you must write \((5x)^{3} = 125x^{3}\). Parentheses are not decoration here; they change the answer.

“Integer” exponents extend this idea to every whole number — positive, zero, and negative. The table below states the rule for each case; every one of them can be re-derived from the repeated-multiplication definition above if you ever forget it.

Why Zero and Negative Exponents Have to Mean What They Mean

Repeated multiplication makes sense for \(n = 1, 2, 3, \dots\), but “multiply 2 by itself zero times” or “negative three times” is nonsense as a sentence. So instead of inventing meanings, mathematicians extended the pattern that already existed. Start at \(2^{4}\) and walk down one exponent at a time:

PowerValueStep from the row above
\(2^{4}\)\(16\)
\(2^{3}\)\(8\)\(16 \div 2\)
\(2^{2}\)\(4\)\(8 \div 2\)
\(2^{1}\)\(2\)\(4 \div 2\)
\(2^{0}\)\(1\)\(2 \div 2\)
\(2^{-1}\)\(\dfrac{1}{2}\)\(1 \div 2\)
\(2^{-2}\)\(\dfrac{1}{4}\)\(\dfrac{1}{2} \div 2\)
\(2^{-3}\)\(\dfrac{1}{8}\)\(\dfrac{1}{4} \div 2\)

Dropping the exponent by one always divides by the base. Keep that single habit going past \(2^{1}\) and you are forced into \(2^{0} = 1\) and \(2^{-3} = \tfrac{1}{8}\). Nothing was chosen arbitrarily — those definitions are the only ones that keep the pattern (and therefore all the rules below) unbroken.

Notice also what this table does not say: none of the negative-exponent values are negative. Going down the ladder shrinks the value toward zero, it never crosses into negatives.

Building the Rules from Repeated Multiplication

Before the reference table, here is where each rule comes from. Read these once and you will never need to memorize the table — you can rebuild any row in ten seconds on scratch paper.

Product Rule. Count the factors on each side:

$$ a^{3} \cdot a^{2} = (a \cdot a \cdot a)(a \cdot a) = a^{5} = a^{3+2} $$

Multiplying powers of the same base pools their factors, so the counts add.

Quotient Rule. Cancel matching factors:

$$ \frac{a^{5}}{a^{2}} = \frac{a \cdot a \cdot a \cdot \cancel{a} \cdot \cancel{a}}{\cancel{a} \cdot \cancel{a}} = a^{3} = a^{5-2} $$

Dividing removes factors, so the counts subtract.

Power Rule. A power of a power means repeating the whole block:

$$ \left(a^{3}\right)^{2} = a^{3} \cdot a^{3} = a^{6} = a^{3 \cdot 2} $$

Two groups of three factors is six factors, so the counts multiply.

Power of a Product. Multiplication can be reordered freely:

$$ (ab)^{3} = (ab)(ab)(ab) = (a \cdot a \cdot a)(b \cdot b \cdot b) = a^{3}b^{3} $$

Power of a Quotient. Same argument with division:

$$ \left(\frac{a}{b}\right)^{3} = \frac{a}{b} \cdot \frac{a}{b} \cdot \frac{a}{b} = \frac{a^{3}}{b^{3}} $$

Zero Exponent. Divide a power by itself two different ways and set the results equal:

$$ \frac{a^{4}}{a^{4}} = a^{4-4} = a^{0} \qquad \text{and} \qquad \frac{a^{4}}{a^{4}} = 1 ;\Longrightarrow; a^{0} = 1 \quad (a \neq 0) $$

Negative Exponent. Now let the bottom exponent win:

$$ \frac{a^{2}}{a^{5}} = a^{2-5} = a^{-3} \qquad \text{and} \qquad \frac{\cancel{a} \cdot \cancel{a}}{\cancel{a} \cdot \cancel{a} \cdot a \cdot a \cdot a} = \frac{1}{a^{3}} ;\Longrightarrow; a^{-3} = \frac{1}{a^{3}} $$

Negative Exponent of a Quotient. Chain the two previous rules:

$$ \left(\frac{a}{b}\right)^{-n} = \frac{1}{\left(\dfrac{a}{b}\right)^{n}} = \frac{1}{\dfrac{a^{n}}{b^{n}}} = \frac{b^{n}}{a^{n}} = \left(\frac{b}{a}\right)^{n} $$

Every derivation above used positive exponents and basic arithmetic only, which is exactly the point: the rules are consistent with each other by construction.

Properties of Integer Exponents

Assume \(a\) and \(b\) are nonzero real numbers and \(m, n\) are integers.

RuleStatementExampleWhat it does
Product Rule\(a^{m} \cdot a^{n} = a^{m+n}\)\(x^{4} \cdot x^{3} = x^{7}\)Same base multiplied: add exponents
Quotient Rule\(\dfrac{a^{m}}{a^{n}} = a^{m-n}\)\(\dfrac{x^{9}}{x^{4}} = x^{5}\)Same base divided: subtract exponents
Power Rule\(\left(a^{m}\right)^{n} = a^{mn}\)\(\left(x^{2}\right)^{5} = x^{10}\)Power of a power: multiply exponents
Power of a Product\((ab)^{n} = a^{n} b^{n}\)\((3x)^{2} = 9x^{2}\)Exponent hits every factor inside
Power of a Quotient\(\left(\dfrac{a}{b}\right)^{n} = \dfrac{a^{n}}{b^{n}}\)\(\left(\dfrac{x}{4}\right)^{3} = \dfrac{x^{3}}{64}\)Exponent hits top and bottom
Zero Exponent\(a^{0} = 1\)\((-7)^{0} = 1\)Any nonzero base, one step
Negative Exponent\(a^{-n} = \dfrac{1}{a^{n}}\)\(y^{-3} = \dfrac{1}{y^{3}}\)Flip the factor, drop the minus
Negative Exponent of a Quotient\(\left(\dfrac{a}{b}\right)^{-n} = \left(\dfrac{b}{a}\right)^{n}\)\(\left(\dfrac{2}{5}\right)^{-2} = \dfrac{25}{4}\)Invert the fraction, drop the minus

Two structural things to notice. First, the last rule is really just the Negative Exponent rule applied to a fraction: flipping the fraction and dropping the minus sign lands on the same value. Second, the two “power of” rules distribute across multiplication and division only. There is no rule for \((a+b)^{n}\), and that gap is deliberate — no such rule exists.

Why the \(a \neq 0\) restriction? Because three of these rules would divide by zero otherwise: \(a^{0}\) is justified by \(a^{n}/a^{n}\), and \(a^{-n}\) literally puts \(a\) in a denominator. Nonzero bases keep every row honest.

Example 1: Evaluating Numeric Expressions

Each row applies exactly one rule from the table above to a purely numeric expression. Work down the column and say the rule name out loud as you go — naming the rule is what makes it stick.

ExpressionRule AppliedResult
\(6^{2} \cdot 6^{3}\)Product Rule: \(6^{2+3}\)\(6^{5} = 7{,}776\)
\(2^{-2} \cdot 2^{5}\)Product Rule: \(2^{-2+5}\)\(2^{3} = 8\)
\(9^{0}\)Zero Exponent Rule\(1\)
\((-4)^{0}\)Zero Exponent Rule (negative base still works)\(1\)
\(3^{-4}\)Negative Exponent Rule\(\dfrac{1}{3^{4}} = \dfrac{1}{81}\)
\(\dfrac{10^{5}}{10^{2}}\)Quotient Rule: \(10^{5-2}\)\(10^{3} = 1{,}000\)
\(\dfrac{7^{4}}{7^{4}}\)Quotient Rule: \(7^{4-4}\)\(7^{0} = 1\)
\(\left(2^{3}\right)^{2}\)Power Rule: \(2^{3 \cdot 2}\)\(2^{6} = 64\)
\((2 \cdot 5)^{3}\)Power of a Product: \(2^{3} \cdot 5^{3}\)\(8 \cdot 125 = 1{,}000\)
\(\left(\dfrac{3}{4}\right)^{2}\)Power of a Quotient\(\dfrac{9}{16}\)
\(\left(\dfrac{2}{3}\right)^{-3}\)Negative Exponent of a Quotient: \(\left(\dfrac{3}{2}\right)^{3}\)\(\dfrac{27}{8}\)

Sanity-check the third-from-last row a second way: \((2 \cdot 5)^{3} = 10^{3} = 1{,}000\), matching \(8 \cdot 125\). Whenever a rule feels shaky, evaluate the expression both ways with small numbers. Agreement is strong evidence you applied it correctly; disagreement tells you instantly that you didn’t.

Example 2: Simplifying Variable Expressions

The same rules apply when the base is a variable instead of a number — you’re never actually “computing” a final value, just rewriting the expression in its simplest form. By convention, “simplest form” means each base appears once and no exponent is negative.

ExpressionRule AppliedSimplified Form
\(\left(x^{3}\right)^{4}\)Power Rule: \(x^{3 \cdot 4}\)\(x^{12}\)
\((2y)^{3}\)Power of a Product\(8y^{3}\)
\(\left(\dfrac{a}{b}\right)^{-2}\)Negative Exponent of a Quotient\(\dfrac{b^{2}}{a^{2}}\)
\(x^{5}y^{-2} \cdot x^{-3}y^{4}\)Product Rule, applied to each base separately\(x^{2}y^{2}\)
\(\dfrac{x^{7}y^{3}}{x^{2}y^{5}}\)Quotient Rule, applied to each base separately\(\dfrac{x^{5}}{y^{2}}\)
\(\left(3x^{2}y^{-1}\right)^{-2}\)Power of a Product, then Negative Exponent\(\dfrac{y^{2}}{9x^{4}}\)
\(\left(\dfrac{2x}{y^{2}}\right)^{3}\)Power of a Quotient, then Power of a Product\(\dfrac{8x^{3}}{y^{6}}\)
\(\left(4a^{3}\right)^{0}\)Zero Exponent Rule (with \(a \neq 0\))\(1\)

For the fourth row, group matching bases before combining: \(x^{5} \cdot x^{-3} = x^{2}\) and \(y^{-2} \cdot y^{4} = y^{2}\), so the simplified expression is \(x^{2}y^{2}\). The fifth row works the same way with subtraction: \(x^{7-2} = x^{5}\) and \(y^{3-5} = y^{-2}\), and that \(y^{-2}\) becomes \(y^{2}\) in the denominator.

The sixth row is worth slowing down on, because two rules stack. The outer \(-2\) reaches every factor inside the parentheses, including the coefficient: \(3^{-2} \cdot x^{-4} \cdot y^{2}\). Then \(3^{-2} = \tfrac{1}{9}\) and \(x^{-4} = \tfrac{1}{x^{4}}\), leaving \(\dfrac{y^{2}}{9x^{4}}\). Note that \(3^{-2}\) became \(\tfrac{1}{9}\), not \(-9\) and not \(-6\).

Working with Negative Exponents Across the Fraction Bar

Most textbook simplification problems become much faster with one reframing: a negative exponent means the factor is on the wrong side of the fraction bar. Move it, flip the sign of its exponent, and you’re done.

$$ \frac{x^{-2}y^{3}}{z^{-4}} = \frac{y^{3}z^{4}}{x^{2}} $$

The \(x^{-2}\) slid down and became \(x^{2}\); the \(z^{-4}\) slid up and became \(z^{4}\); the \(y^{3}\) already had a positive exponent, so it stayed put. No rule was broken — this is the Negative Exponent rule used twice, just done visually instead of algebraically.

Two guardrails on this shortcut:

  • It applies to factors, not terms. In \(\dfrac{x^{-1} + y}{2}\), the \(x^{-1}\) is added, not multiplied, so it cannot be relocated on its own. Rewrite it in place as \(\dfrac{1}{x}\) and combine with a common denominator instead.
  • A coefficient with a positive exponent stays home. \(5x^{-3} = \dfrac{5}{x^{3}}\). The 5 never moves, because the \(-3\) was never attached to it.

Worked Example A: Combining Several Rules

Simplify \(\dfrac{2^{6} \cdot 2^{-2}}{2^{1}}\) using the table above, one step at a time.

Step 1 — apply the Product Rule to the numerator:

$$ 2^{6} \cdot 2^{-2} = 2^{6 + (-2)} = 2^{4} $$

Step 2 — apply the Quotient Rule to divide by the denominator:

$$ \frac{2^{4}}{2^{1}} = 2^{4-1} = 2^{3} $$

Step 3 — evaluate the remaining power:

$$ 2^{3} = 8 $$

The final answer is \(8\). Notice each step used exactly one rule — that’s the reliable way to work any multi-rule exponent problem instead of trying to simplify everything at once.

Worked Example B: Coefficients, Variables, and Negative Exponents Together

Simplify \(\dfrac{\left(4x^{3}y^{-2}\right)^{2}}{\left(2x^{-1}y\right)^{3}}\).

Step 1 — clear the outer exponents with Power of a Product and the Power Rule. Each outer exponent reaches every factor inside, coefficients included:

$$ \left(4x^{3}y^{-2}\right)^{2} = 4^{2}x^{6}y^{-4} = 16x^{6}y^{-4} $$

$$ \left(2x^{-1}y\right)^{3} = 2^{3}x^{-3}y^{3} = 8x^{-3}y^{3} $$

Step 2 — divide the coefficients and apply the Quotient Rule base by base:

$$ \frac{16x^{6}y^{-4}}{8x^{-3}y^{3}} = 2 \cdot x^{6-(-3)} \cdot y^{-4-3} = 2x^{9}y^{-7} $$

Step 3 — clean up the negative exponent:

$$ 2x^{9}y^{-7} = \frac{2x^{9}}{y^{7}} $$

The order matters here. Outer exponents first, then combine like bases, then remove negative exponents last. Trying to fix negative exponents while outer parentheses are still in play is where most sign errors are born. Also watch \(6 - (-3) = 9\); subtracting a negative exponent is a classic slip.

Worked Example C: Exponents in Scientific Notation

Scientific notation is nothing but exponent rules applied to base 10, which is why it shows up in this chapter. Multiply \(\left(3 \times 10^{5}\right)\left(4 \times 10^{-8}\right)\).

Step 1 — regroup so the numbers and the powers of ten are together:

$$ (3 \cdot 4) \times \left(10^{5} \cdot 10^{-8}\right) $$

Step 2 — apply the Product Rule to the powers of ten:

$$ 12 \times 10^{5 + (-8)} = 12 \times 10^{-3} $$

Step 3 — renormalize so the leading factor is between 1 and 10:

$$ 12 \times 10^{-3} = 1.2 \times 10^{1} \times 10^{-3} = 1.2 \times 10^{-2} = 0.012 $$

Same rules, no new machinery. This is a good preview of why the rules are worth automating: in science and engineering you use them dozens of times a page without thinking about them.

Exponents and the Order of Operations

Exponents are evaluated before multiplication, division, addition, and subtraction, but after anything inside grouping symbols. Three consequences trip people up constantly:

  • \(3 \cdot 2^{3} = 3 \cdot 8 = 24\), not \(6^{3} = 216\). The exponent acts on the 2 before the multiplication happens.
  • \(-2^{4} = -\left(2^{4}\right) = -16\), while \((-2)^{4} = 16\). The unary minus is applied after the exponent unless parentheses say otherwise.
  • Stacked exponents evaluate top-down: \(2^{3^{2}} = 2^{9} = 512\), not \(\left(2^{3}\right)^{2} = 64\). If you mean the second one, write the parentheses.

When in doubt, add parentheses to your own work. They cost nothing and they remove all ambiguity for whoever reads it next, including future you.

Where These Rules Show Up Later

  • Polynomials. Multiplying \(3x^{2}\) by \(5x^{4}\) to get \(15x^{6}\) is the Product Rule; every polynomial multiplication is just this repeated across terms.
  • Scientific notation. Distances, masses, and tolerances are all written as \(c \times 10^{n}\), and every calculation with them uses the product and quotient rules on base 10.
  • Compound interest and growth. \(A = P(1+r)^{n}\) is a power of a product; comparing balances at two different times means dividing two such powers, which is the Quotient Rule.
  • Rational exponents and radicals. The next step is letting \(n\) be a fraction, where \(a^{1/2} = \sqrt{a}\). Those rules are the exact eight above with fractional exponents allowed, so nothing new has to be memorized.
  • Calculus. The derivative shortcut \(\dfrac{d}{dx}x^{n} = nx^{n-1}\) works for negative integers precisely because \(x^{-n} = 1/x^{n}\) is defined the way it is here.

Common Mistakes to Avoid

  • Confusing \(a^{n}\) with \(a \times n\). \(4^{3} = 64\), not \(4 \times 3 = 12\).
  • Treating a negative exponent as a negative number. \(2^{-4} = \dfrac{1}{16}\), a small positive fraction — the minus sign moves the term to a denominator, it doesn’t make the value negative.
  • Mixing up \(-a^{2}\) and \((-a)^{2}\). Without parentheses, the exponent binds to \(a\) only, so \(-5^{2} = -\left(5^{2}\right) = -25\). With parentheses, \((-5)^{2} = 25\). These are genuinely different values — always check which one a problem is actually asking for.
  • Applying the Product or Quotient Rule to different bases. \(3^{2} \times 4^{3}\) cannot be combined into a single power — those rules only work when the base is identical on both sides. (You can sometimes force a match: \(4^{3} = \left(2^{2}\right)^{3} = 2^{6}\).)
  • Adding exponents when you should multiply them. \(\left(x^{3}\right)^{4} = x^{12}\), not \(x^{7}\). Multiplication of powers adds; a power of a power multiplies.
  • Distributing an exponent over a sum. \((a+b)^{2} \neq a^{2}+b^{2}\). Test it: \((3+4)^{2} = 49\) but \(3^{2}+4^{2} = 25\).
  • Letting an exponent reach a coefficient it isn’t attached to. \(3x^{-2} = \dfrac{3}{x^{2}}\), not \(\dfrac{1}{3x^{2}}\). Compare \((3x)^{-2} = \dfrac{1}{9x^{2}}\).
  • Forgetting to raise the coefficient inside parentheses. \((2y)^{3} = 8y^{3}\), not \(2y^{3}\). If the coefficient is inside, it gets the exponent too.
  • Sign slips when subtracting negative exponents. \(\dfrac{x^{4}}{x^{-3}} = x^{4-(-3)} = x^{7}\), not \(x^{1}\).
  • Assuming \(a^{0} = 0\). It’s 1 for every nonzero base, and \(0^{0}\) is left undefined in this lesson.

Practice Problems

Work each problem yourself before opening the answer. Every solution shows the rule used, not just the final number.

Problem 1. Evaluate \(7^{0} \times 7^{-2}\).

Show answer

Step 1 — apply the Product Rule:

$$ 7^{0} \times 7^{-2} = 7^{0 + (-2)} = 7^{-2} $$

Step 2 — apply the Negative Exponent Rule:

$$ 7^{-2} = \frac{1}{7^{2}} = \frac{1}{49} $$

Answer: \(\dfrac{1}{49}\)

Problem 2. Simplify \((3x^{2})^{3}\).

Show answer

Step 1 — apply the Power of a Product Rule:

$$ (3x^{2})^{3} = 3^{3} \cdot \left(x^{2}\right)^{3} $$

Step 2 — apply the Power Rule to the variable factor:

$$ 3^{3} \cdot x^{2 \cdot 3} = 27x^{6} $$

Answer: \(27x^{6}\)

Problem 3. Evaluate \(\dfrac{5^{2}}{5^{5}}\).

Show answer

Step 1 — apply the Quotient Rule:

$$ \frac{5^{2}}{5^{5}} = 5^{2-5} = 5^{-3} $$

Step 2 — apply the Negative Exponent Rule:

$$ 5^{-3} = \frac{1}{5^{3}} = \frac{1}{125} $$

Answer: \(\dfrac{1}{125}\)

Problem 4. Simplify \(\left(\dfrac{2}{a}\right)^{-3}\).

Show answer

Step 1 — apply the Negative Exponent of a Quotient Rule:

$$ \left(\frac{2}{a}\right)^{-3} = \left(\frac{a}{2}\right)^{3} $$

Step 2 — apply the Power of a Quotient Rule:

$$ \left(\frac{a}{2}\right)^{3} = \frac{a^{3}}{2^{3}} = \frac{a^{3}}{8} $$

Answer: \(\dfrac{a^{3}}{8}\)

Problem 5. Evaluate both \((-3)^{4}\) and \(-3^{4}\), and explain why the two answers are different.

Show answer

With parentheses, the exponent applies to \(-3\) as a whole:

$$ (-3)^{4} = (-3)\times(-3)\times(-3)\times(-3) = 81 $$

Without parentheses, the exponent applies to \(3\) only, and the result is negated afterward:

$$ -3^{4} = -\left(3\times3\times3\times3\right) = -81 $$

The parentheses in \((-3)^{4}\) make the exponent apply to \(-3\) as a whole, and an even number of negative factors multiplies to a positive result. Without parentheses, \(-3^{4}\) applies the exponent to \(3\) only, then negates the result — giving a different, negative answer.

Problem 6. Simplify \(\dfrac{x^{4}y^{-3}}{x^{-2}y^{2}}\), leaving no negative exponents.

Show answer

Step 1 — apply the Quotient Rule to each base separately:

$$ x^{4-(-2)} \cdot y^{-3-2} = x^{6}y^{-5} $$

Step 2 — apply the Negative Exponent Rule to \(y^{-5}\):

$$ x^{6}y^{-5} = \frac{x^{6}}{y^{5}} $$

Answer: \(\dfrac{x^{6}}{y^{5}}\). Watch the first exponent: \(4-(-2) = 6\), not \(2\).

Problem 7. Evaluate \(\left(2^{-1} + 3^{-1}\right)^{-1}\).

Show answer

Step 1 — rewrite each negative exponent inside the parentheses (no rule distributes over a sum, so the inside must be simplified first):

$$ 2^{-1} + 3^{-1} = \frac{1}{2} + \frac{1}{3} = \frac{3}{6} + \frac{2}{6} = \frac{5}{6} $$

Step 2 — apply the Negative Exponent of a Quotient Rule to the result:

$$ \left(\frac{5}{6}\right)^{-1} = \frac{6}{5} $$

Answer: \(\dfrac{6}{5}\). The tempting wrong move is \(2 + 3 = 5\); that would require distributing an exponent over addition, which is never valid.

Problem 8. Simplify \(\left(\dfrac{2a^{2}b}{a^{-1}b^{3}}\right)^{2}\).

Show answer

Step 1 — simplify inside the parentheses with the Quotient Rule:

$$ \frac{2a^{2}b}{a^{-1}b^{3}} = 2 \cdot a^{2-(-1)} \cdot b^{1-3} = 2a^{3}b^{-2} $$

Step 2 — apply the outer exponent to every factor (Power of a Product, then the Power Rule):

$$ \left(2a^{3}b^{-2}\right)^{2} = 2^{2}a^{6}b^{-4} = 4a^{6}b^{-4} $$

Step 3 — clear the negative exponent:

$$ 4a^{6}b^{-4} = \frac{4a^{6}}{b^{4}} $$

Answer: \(\dfrac{4a^{6}}{b^{4}}\)

Problem 9. Evaluate \(\left(4 \times 10^{-3}\right)\left(5 \times 10^{6}\right)\) and write the result in scientific notation.

Show answer

Step 1 — regroup the numeric factors and the powers of ten:

$$ (4 \cdot 5) \times \left(10^{-3} \cdot 10^{6}\right) $$

Step 2 — apply the Product Rule to the powers of ten:

$$ 20 \times 10^{-3+6} = 20 \times 10^{3} $$

Step 3 — renormalize so the leading factor sits between 1 and 10:

$$ 20 \times 10^{3} = 2 \times 10^{1} \times 10^{3} = 2 \times 10^{4} $$

Answer: \(2 \times 10^{4}\), or \(20{,}000\)

Problem 10. Simplify \(\left(m^{-2}n^{3}\right)^{-3}\), leaving no negative exponents.

Show answer

Step 1 — apply Power of a Product, then the Power Rule to each factor:

$$ \left(m^{-2}n^{3}\right)^{-3} = m^{(-2)(-3)} \cdot n^{(3)(-3)} = m^{6}n^{-9} $$

Step 2 — apply the Negative Exponent Rule:

$$ m^{6}n^{-9} = \frac{m^{6}}{n^{9}} $$

Answer: \(\dfrac{m^{6}}{n^{9}}\). Two negatives multiplied gave the positive \(6\); only one factor ends up in the denominator.

Quick Reference

If you want a single card to keep next to your homework, this is it:

SituationMove
Same base, multipliedAdd the exponents
Same base, dividedSubtract the exponents (top minus bottom)
Power raised to a powerMultiply the exponents
Exponent outside parenthesesGive it to every factor inside, coefficients included
Exponent of zeroThe whole factor becomes 1 (nonzero base)
Negative exponentMove the factor across the fraction bar, make the exponent positive
Negative exponent on a fractionFlip the fraction, make the exponent positive
Different bases, or a sum insideNo rule applies; evaluate or expand instead

Once these rules feel automatic, they carry forward directly into Polynomials and, later, into scientific notation, Rational Exponents and Radicals, and the power rule in calculus. Build speed with the Integer Exponent Generator, browse the rest of the Algebra lessons as they publish, or explore the site’s calculators to check your own arithmetic against a worked result.

Frequently Asked Questions

What does a negative exponent actually mean?+

It means "the reciprocal of the positive power," not "a negative number." \(a^{-n} = \dfrac{1}{a^{n}}\), so \(2^{-3} = \dfrac{1}{2^{3}} = \dfrac{1}{8}\), a small positive fraction — never a negative value. The minus sign is an instruction to flip the factor across the fraction bar, not a sign attached to the answer.

Why does anything to the zero power equal 1?+

Follow the quotient rule to its logical end: \(\dfrac{a^{n}}{a^{n}} = a^{n-n} = a^{0}\). But any nonzero number divided by itself is also just 1, so \(a^{0}\) must equal 1 for the rule to stay consistent — for every base \(a \neq 0\), positive or negative. That is why \((-7)^{0} = 1\) too.

Why is 0 to the 0 power left undefined here?+

The zero-exponent rule (\(a^0 = 1\)) requires \(a \neq 0\), and the pattern that justifies it — dividing \(a^n\) by itself — breaks down at \(a = 0\) since division by zero is never allowed. Different branches of math define \(0^0\) differently depending on context, so this lesson leaves it undefined rather than picking a convention that isn't universal.

Can I combine powers with different bases?+

Not directly. The product and quotient rules only apply when the bases match, so \(3^{2} \cdot 4^{3}\) stays as it is (or evaluates to \(9 \cdot 64 = 576\)). Sometimes you can rewrite one base in terms of the other: since \(4 = 2^{2}\), \(2^{2} \cdot 4^{3} = 2^{2} \cdot 2^{6} = 2^{8}\).

Do exponent rules work on sums, like \((a+b)^{2}\)?+

No. Every rule in this lesson is about products and quotients, never sums. \((3+4)^{2} = 7^{2} = 49\), while \(3^{2} + 4^{2} = 25\). To expand \((a+b)^{2}\) you multiply it out: \(a^{2} + 2ab + b^{2}\).

Does (\(3x^{-2}\)) mean the 3 goes to the denominator too?+

No. An exponent binds only to the factor it is written on, so \(3x^{-2} = \dfrac{3}{x^{2}}\), not \(\dfrac{1}{3x^{2}}\). If you want the coefficient included, the expression has to say so with parentheses: \((3x)^{-2} = \dfrac{1}{9x^{2}}\).

Related lessons