MathCompass

Exponents & Radicals

Algebra Intermediate

πŸ“‹ Prerequisites

Exponents and radicals are two sides of the same coin. Master the rules and you can simplify almost any expression. Competition problems love exponent rules because they look complicated but boil down to a handful of patterns β€” if you see the trick, they're free points.

πŸ“š Key Concepts

The Six Exponent Rules

For bases $a, b$ and exponents $m, n$:

  1. Product Rule: $ a^m \times a^n = a^{m+n} $ β€” add exponents when multiplying same base
  2. Quotient Rule: $ \frac{a^m}{a^n} = a^{m-n} $ β€” subtract exponents when dividing same base
  3. Power Rule: $ (a^m)^n = a^{m \times n} $ β€” multiply exponents when raising power to power
  4. Product to Power: $ (ab)^n = a^n b^n $ β€” distribute exponent over multiplication
  5. Quotient to Power: $ (\frac{a}{b})^n = \frac{a^n}{b^n} $ β€” distribute exponent over division
  6. Zero Exponent: $ a^0 = 1 $ (for $a \neq 0$)

Negative Exponents

A negative exponent means "take the reciprocal":

\[ a^{-n} = \frac{1}{a^n} \quad \text{and} \quad \frac{1}{a^{-n}} = a^n \]

Flip the base to the other side of the fraction bar, and the exponent becomes positive.

Example: $ \frac{x^{-2}y^3}{z^{-1}} = \frac{y^3 z}{x^2} $

Fractional Exponents = Radicals

This is the key connection:

\[ a^{\frac{1}{n}} = \sqrt[n]{a} \quad \text{and} \quad a^{\frac{m}{n}} = \sqrt[n]{a^m} = (\sqrt[n]{a})^m \]

Simplifying Radicals

Factor out perfect squares (for square roots), perfect cubes (for cube roots), etc.:

$ \sqrt{72} = \sqrt{36 \times 2} = \sqrt{36} \times \sqrt{2} = 6\sqrt{2} $

Strategy: find the largest perfect square/cube that divides the radicand, split, simplify.

Prime factorization method: for $\sqrt{n}$, each pair of identical primes comes out as one.

Rationalizing Denominators

Standard form: no radicals in the denominator.

Monomial denominator: Multiply top and bottom by the radical:

$ \frac{3}{\sqrt{2}} = \frac{3}{\sqrt{2}} \times \frac{\sqrt{2}}{\sqrt{2}} = \frac{3\sqrt{2}}{2} $

Binomial denominator (conjugate method): Multiply by the conjugate (same terms, opposite sign):

$ \frac{1}{2 + \sqrt{3}} = \frac{1}{2 + \sqrt{3}} \times \frac{2 - \sqrt{3}}{2 - \sqrt{3}} = \frac{2 - \sqrt{3}}{4 - 3} = 2 - \sqrt{3} $

The denominator becomes a difference of squares, eliminating the radical.

Exponential & Radical Equations

Same base strategy: If $a^x = a^y$ and $a > 0, a \neq 1$, then $x = y$.

Rewrite both sides with the same base, set exponents equal, solve.

Radical equations: Isolate the radical, raise both sides to the appropriate power, solve, then check for extraneous solutions.

⚠️ Common Mistake: $ (a + b)^n \neq a^n + b^n $. The exponent doesn't distribute over addition! (That's the whole point of the binomial theorem.) Also: always check for extraneous solutions when you square both sides of an equation β€” squaring can introduce fake solutions.
πŸ’‘ Key Insight: In competition exponent problems, the trick is almost always rewriting everything with the same base. See 8 and 16? Rewrite as powers of 2. See 25 and 125? Powers of 5. Once both sides have the same base, you can just set the exponents equal and solve a linear equation.

✏️ Example Problems

πŸ“ Example 1 (Simplify radical expression)

Simplify: $ \sqrt{108} + \sqrt{48} $
Express as $ a\sqrt{b} $ where $b$ is square-free. What is $a + b$?

Step 1: Simplify each radical separately.

$ \sqrt{108} = \sqrt{36 \times 3} = \sqrt{36} \times \sqrt{3} = 6\sqrt{3} $

$ \sqrt{48} = \sqrt{16 \times 3} = \sqrt{16} \times \sqrt{3} = 4\sqrt{3} $

Step 2: Add (like radicals β€” same radicand).

\[ 6\sqrt{3} + 4\sqrt{3} = 10\sqrt{3} \]

Step 3: In $a\sqrt{b}$ form: $a = 10$, $b = 3$.

$ a + b = 10 + 3 = 13 $

Answer: 13

πŸ“ Example 2 (Same base exponent equation)

Solve for $x$: $ 3^{2x+1} = 27^{x-1} $

Strategy: Rewrite both sides with the same base (base 3).

Step 1: Note that $ 27 = 3^3 $.

\[ 3^{2x+1} = (3^3)^{x-1} \]

Step 2: Apply power rule (multiply exponents) on the right.

\[ 3^{2x+1} = 3^{3(x-1)} = 3^{3x-3} \]

Step 3: Same base, so set exponents equal.

\[ 2x + 1 = 3x - 3 \]

Step 4: Solve for $x$.

$ 1 + 3 = 3x - 2x $

$ x = 4 $

Check: Left: $ 3^{2(4)+1} = 3^9 = 19683 $. Right: $ 27^{4-1} = 27^3 = 19683 $. βœ“

Answer: 4

πŸ“ Example 3 (Rationalize denominator)

Rationalize and simplify: $ \frac{6}{3 - \sqrt{3}} $
Express in the form $ a + b\sqrt{3} $. What is $a + b$?

Strategy: Multiply numerator and denominator by the conjugate of the denominator.

Conjugate of $ 3 - \sqrt{3} $ is $ 3 + \sqrt{3} $.

Step 1: Multiply by $ \frac{3 + \sqrt{3}}{3 + \sqrt{3}} $.

\[ \frac{6}{3 - \sqrt{3}} \times \frac{3 + \sqrt{3}}{3 + \sqrt{3}} = \frac{6(3 + \sqrt{3})}{(3 - \sqrt{3})(3 + \sqrt{3})} \]

Step 2: Denominator is difference of squares: $ a^2 - b^2 $

\[ \text{Denominator} = 3^2 - (\sqrt{3})^2 = 9 - 3 = 6 \]

Step 3: Simplify the fraction.

\[ \frac{6(3 + \sqrt{3})}{6} = 3 + \sqrt{3} \]

Step 4: In $ a + b\sqrt{3} $ form: $ a = 3 $, $ b = 1 $

$ a + b = 3 + 1 = 4 $

Answer: 4

Previous
Next