Why Exponents Matter#
Exponents are the language of growth, decay, and efficiency. You’ll use them in:
- Finance (compound interest: $A = P(1+i)^n$)
- Functions (exponential graphs: $y = ab^x$)
- Calculus (converting roots and fractions before differentiating)
- Science (bacteria growth, radioactive decay)
If your exponent skills are shaky, these topics will be much harder than they need to be.
1. The Core Laws#
These must be automatic — no thinking required:
| Law | Rule | Example |
|---|---|---|
| Product (same base) | $a^m \times a^n = a^{m+n}$ | $x^3 \times x^4 = x^7$ |
| Quotient (same base) | $\frac{a^m}{a^n} = a^{m-n}$ | $\frac{x^5}{x^2} = x^3$ |
| Power of a Power | $(a^m)^n = a^{mn}$ | $(x^3)^2 = x^6$ |
| Power of a Product | $(ab)^n = a^n b^n$ | $(2x)^3 = 8x^3$ |
| Power of a Fraction | $\left(\frac{a}{b}\right)^n = \frac{a^n}{b^n}$ | $\left(\frac{x}{3}\right)^2 = \frac{x^2}{9}$ |
| Zero Exponent | $a^0 = 1$ (if $a \neq 0$) | $5^0 = 1$ |
| Negative Exponent | $a^{-n} = \frac{1}{a^n}$ | $x^{-2} = \frac{1}{x^2}$ |
| Fractional Exponent | $a^{\frac{m}{n}} = \sqrt[n]{a^m}$ | $x^{\frac{1}{2}} = \sqrt{x}$ |
Critical understanding: The laws only apply to multiplication and division of terms with the same base. You CANNOT use them for addition or subtraction. $2^3 + 2^4 \neq 2^7$.
2. Simplifying Expressions — Worked Examples#
Example 1: Product Law#
$3x^2 \times 4x^5 = 12x^{2+5} = 12x^7$
Example 2: Quotient Law#
$\frac{15x^6}{5x^2} = 3x^{6-2} = 3x^4$
Example 3: Power of a Power#
$(2x^3)^4 = 2^4 \cdot x^{3 \times 4} = 16x^{12}$
Example 4: Mixed#
$\frac{(3x^2y)^3}{9x^4y^2} = \frac{27x^6y^3}{9x^4y^2} = 3x^{6-4}y^{3-2} = 3x^2y$
Example 5: Negative Exponents#
$\frac{2x^{-3}}{4x^{-5}} = \frac{2}{4} \cdot x^{-3-(-5)} = \frac{1}{2}x^{2}$
Example 6: Zero Exponent#
$5x^0 + (5x)^0 = 5(1) + 1 = 6$
Note: $x^0 = 1$ but $(5x)^0 = 1$ too — the bracket makes everything inside become 1.
3. Roots as Exponents#
Every root can be written as a fractional exponent:
| Root Form | Exponential Form |
|---|---|
| $\sqrt{x}$ | $x^{\frac{1}{2}}$ |
| $\sqrt[3]{x}$ | $x^{\frac{1}{3}}$ |
| $\sqrt{x^3}$ | $x^{\frac{3}{2}}$ |
| $\frac{1}{\sqrt{x}}$ | $x^{-\frac{1}{2}}$ |
Why this matters#
Converting roots to exponents lets you use the exponent laws to simplify:
$\sqrt{x} \times \sqrt[3]{x} = x^{\frac{1}{2}} \times x^{\frac{1}{3}} = x^{\frac{1}{2} + \frac{1}{3}} = x^{\frac{5}{6}}$
4. Prime Factoring Strategy#
When bases don’t match, rewrite them using prime factors:
Example#
Simplify $\frac{12^2 \times 3^3}{6^3 \times 2}$
Rewrite: $12 = 2^2 \times 3$, $6 = 2 \times 3$
$= \frac{(2^2 \times 3)^2 \times 3^3}{(2 \times 3)^3 \times 2} = \frac{2^4 \times 3^2 \times 3^3}{2^3 \times 3^3 \times 2} = \frac{2^4 \times 3^5}{2^4 \times 3^3} = 3^2 = 9$
5. Exponential Equations#
The Strategy: Make the Bases Match#
If $a^x = a^y$, then $x = y$. So your goal is to rewrite both sides with the same base.
Example 1: Basic#
$2^x = 32$
$2^x = 2^5$
$x = 5$
Example 2: Rewriting the base#
$9^x = 27$
$(3^2)^x = 3^3$
$3^{2x} = 3^3$
$2x = 3 \Rightarrow x = \frac{3}{2}$
Example 3: With a variable exponent on both sides#
$4^{x+1} = 8^x$
$(2^2)^{x+1} = (2^3)^x$
$2^{2x+2} = 2^{3x}$
$2x + 2 = 3x \Rightarrow x = 2$
Example 4: With a coefficient#
$3 \cdot 2^x = 48$
$2^x = 16$
$2^x = 2^4$
$x = 4$
Example 5: Quadratic-type#
$4^x - 3 \cdot 2^x - 4 = 0$
Let $k = 2^x$ (so $4^x = (2^2)^x = k^2$):
$k^2 - 3k - 4 = 0$
$(k - 4)(k + 1) = 0$
$k = 4$ or $k = -1$
But $2^x > 0$ always, so $k = -1$ is rejected.
$2^x = 4 = 2^2 \Rightarrow x = 2$
🚨 Common Mistakes#
- Adding bases: $2^3 + 2^4 \neq 2^7$. The laws only work for multiplication and division. $2^3 + 2^4 = 8 + 16 = 24$.
- $(2x)^3 \neq 2x^3$: The power applies to EVERYTHING inside the bracket. $(2x)^3 = 8x^3$.
- Brackets with negatives: $(-3)^2 = 9$ (positive), but $-3^2 = -(3^2) = -9$ (negative). The bracket makes all the difference.
- $2x^0 \neq 1$: Only $x^0 = 1$. So $2x^0 = 2 \times 1 = 2$. But $(2x)^0 = 1$.
- Subtracting exponents in wrong order: $\frac{x^3}{x^5} = x^{3-5} = x^{-2} = \frac{1}{x^2}$, NOT $x^2$.
- Forgetting to check for extraneous solutions: In quadratic-type exponential equations, always reject $k < 0$ because $a^x$ is always positive.
💡 Pro Tip: The “Bases First” Strategy#
In every exponential equation, your first move is ALWAYS to rewrite both sides with the same base. Common rewrites:
| Number | As a power of 2 | As a power of 3 | As a power of 5 |
|---|---|---|---|
| 4 | $2^2$ | ||
| 8 | $2^3$ | ||
| 16 | $2^4$ | ||
| 9 | $3^2$ | ||
| 27 | $3^3$ | ||
| 81 | $3^4$ | ||
| 25 | $5^2$ | ||
| 125 | $5^3$ |
🔗 Related Grade 10 topics:
- Solving Equations — exponential equations use the “equal bases” technique from this page
- Multiplying Brackets — exponent laws apply when expanding expressions like $(2x^3)^2$
- Sketching Graphs — the exponential graph $y = ab^x + q$ uses these laws
📌 Where this leads:
- Grade 11 Surds & Equations — rational exponents, surds, and rationalising denominators
- Grade 12 Fundamentals: Exponents — the complete exponent toolkit for matric
