Exponentiation Study Guide
Study Guide
📖 Core Concepts
Exponentiation: \(b^{n}\) means multiplying the base \(b\) by itself \(n\) times.
Base & Exponent: \(b\) (base) can be any non‑zero number; \(n\) (exponent) may be integer, rational, real, or complex.
Empty product: For any non‑zero \(b\), \(b^{0}=1\).
Negative exponent: \(b^{-n}=1/b^{\,n}\) (requires \(b\neq0\)).
Fractional exponent: \(b^{1/n}= \sqrt[n]{b}\); more generally \(b^{p/q}= \sqrt[q]{b^{p}}\).
Exponential function: \(e^{x}= \displaystyle\lim{n\to\infty}\!\left(1+\frac{x}{n}\right)^{n}\); satisfies \(e^{x+y}=e^{x}e^{y}\).
Logarithmic definition: For \(b>0\), \(b^{x}=e^{\,x\ln b}\).
📌 Must Remember
Multiplication rule: \(b^{m}b^{n}=b^{m+n}\).
Power‑of‑a‑power: \((b^{m})^{n}=b^{mn}\).
Quotient rule: \(\dfrac{b^{m}}{b^{n}}=b^{m-n}\).
Zero exponent: \(b^{0}=1\) (if \(b\neq0\)).
Negative exponent: \(b^{-n}=1/b^{n}\).
Fractional exponent: \(b^{p/q}= \sqrt[q]{b^{p}}\).
Scientific notation: \(a\times10^{n}\) expresses \(a\) shifted by \(n\) decimal places.
Compound interest: Future value \(=P(1+r)^{n}\).
Exponentiation by squaring: \(O(\log n)\) multiplications; use binary exponent representation.
🔄 Key Processes
Evaluating \(b^{p/q}\)
Compute \(b^{p}\).
Take the \(q\)‑th root: \(\sqrt[q]{b^{p}}\).
Exponentiation by squaring (integer \(n\ge0\))
Write \(n\) in binary.
Initialise result \(=1\).
Scan bits from most‑significant to least: square the current result; if the bit is 1, multiply by \(b\).
Finding all \(n\)th roots of a complex number \(w=r e^{i\theta}\)
Magnitude: \(r^{1/n}\).
Arguments: \(\displaystyle\frac{\theta+2\pi k}{n}\), for \(k=0,\dots,n-1\).
Roots: \(w^{1/n}= r^{1/n} e^{i(\theta+2\pi k)/n}\).
🔍 Key Comparisons
\(b^{m}b^{n}\) vs. \((b^{m})^{n}\)
Multiplying powers → add exponents.
Power of a power → multiply exponents.
Real vs. Complex exponent rules
\(b^{x+y}=b^{x}b^{y}\) holds for all real \(x,y\) (positive \(b\)).
\(\log(b^{x})=x\log b\) fails for complex \(b\) or complex \(x\) on a single branch.
\(0^{0}\) (indeterminate) vs. \(b^{0}=1\) (defined)
\(0^{0}\) has no universal value; many algebraic contexts set it to 1 for convenience, but it is an indeterminate form in limits.
⚠️ Common Misunderstandings
“Zero to any power is zero” – false for zero exponent; \(0^{0}\) is indeterminate, \(0^{n}=0\) only for \(n>0\).
“\(b^{-n}= -b^{n}\)” – incorrect; the minus sign is outside the exponent: \(b^{-n}=1/b^{n}\).
“\((b^{c})^{d}=b^{cd}\) always” – only guaranteed when \(d\) is an integer or when a single branch of the complex logarithm is consistently used.
“Fractional exponents give negative roots automatically” – for even roots of negative numbers, the result is not real; must stay in the complex domain.
🧠 Mental Models / Intuition
“Adding exponents = stacking copies” – each exponent tells how many copies of the base are multiplied; stacking two stacks adds their heights.
“Negative exponent = reciprocal” – think of walking backwards on the multiplication line; you end up at the inverse point.
“Fractional exponent = root after power” – first raise to the numerator (stretch), then shrink by the denominator (root).
“Complex exponent = rotate & scale” – \(b^{z}=e^{z\ln b}\) scales by \(e^{\Re(z)\ln b}\) and rotates by \(\Im(z)\ln b\).
🚩 Exceptions & Edge Cases
\(b=0\): negative exponents undefined; \(0^{0}\) indeterminate.
Complex logarithm branch: \(\operatorname{Log}w\) is multi‑valued; results for \(w^{z}\) can differ by factors of \(e^{2\pi i k z}\).
Roots of unity: only the principal \(n\)th root is \(e^{2\pi i /n}\); the other \(n-1\) roots are obtained by multiplying by \(e^{2\pi i k/n}\).
Exponentiation by squaring for negative exponents: compute \(b^{|n|}\) then take reciprocal.
📍 When to Use Which
Scientific notation → simplify multiplication/division of very large or very small numbers.
Compound interest formula → any discrete‑time growth problem with constant rate per period.
Exponentiation by squaring → compute \(b^{n}\) for large integer \(n\) (e.g., cryptography, algorithmic loops).
Logarithmic definition \(b^{x}=e^{x\ln b}\) → when \(x\) is real/complex and you need a continuous extension.
Polar form roots → when solving \(z^{n}=w\) for complex \(w\).
👀 Patterns to Recognize
Powers of 10: a positive exponent adds zeros; a negative exponent inserts a decimal point followed by zeros.
Alternating signs of \((-1)^{n}\) → even → +1, odd → ‑1.
Binary pattern in exponentiation by squaring: number of multiplications ≈ number of 1‑bits + ⌊log₂ n⌋.
Cyclic subgroup: repeated multiplication of a group element eventually returns to the identity; the smallest such exponent is the element’s order.
🗂️ Exam Traps
Choosing \(0^{0}=1\) blindly – many problems treat it as undefined; check context.
Assuming \((b^{c})^{d}=b^{cd}\) for non‑integer \(d\) in the complex plane – may introduce extra roots; watch for “principal value” wording.
Misreading scientific notation – \(3.2\times10^{-4}\) is 0.00032, not 32,000.
Confusing “\(b^{-n}\)” with “\(-b^{n}\)” – the negative sign is outside the exponent.
For compound interest, using \(r\) as a percentage instead of a decimal – e.g., 5 % → use \(r=0.05\).
---
Study this guide repeatedly; the concise rules and patterns will help you spot the right approach instantly during the exam.
or
Or, immediately create your own study flashcards:
Upload a PDF.
Master Study Materials.
Master Study Materials.
Start learning in seconds
Drop your PDFs here or
or