# Exponential function manipulation

> AP Precalculus · Unit 2: Exponential and Logarithmic Functions
> Source: https://www.owlsprep.com/study/ap-precalculus-u2-exponential-function-manipulation/

This guide covers rewriting exponential expressions and functions, converting between base forms, simplifying products/quotients, factoring combined terms, and preparing for AP Precalculus exam questions on this core topic.

**Prerequisites:** Basic exponent rules for products, quotients, and powers; Definition of the natural exponential function $e^x$ and natural logarithm; Function transformations of exponential functions

## Learning objectives

- Simplify combined exponential expressions into single-base form
- Convert exponential functions between per-period and continuous growth forms
- Factor quadratic-type exponential functions to find real x-intercepts
- Identify and avoid common algebraic errors in exponential manipulation

## Simplifying Combined Exponential Expressions

All exponential function manipulation builds on core exponent rules, which apply equally to variable exponents (the standard case for exponential functions) and constant exponents. Rewriting all terms to share a single base is always the first step for any simplification, making further manipulation much simpler for graphing, finding intercepts, or comparing growth rates.

$$\begin{align*} b^u \cdot b^v &= b^{u+v} \\ \frac{b^u}{b^v} &= b^{u-v} \\ \left(b^u\right)^v &= b^{uv} \\ (ab)^u &= a^u b^u \end{align*}$$

**Worked example:** Simplify $f(x) = \frac{5 \cdot 3^{2x+1} \cdot (9^x)^2}{3^{x-2}}$ and write it in the form $f(x) = A \cdot c^x$, where $A$ and $c$ are constants.

1. First, rewrite all terms with base 3: $9^x = (3^2)^x = 3^{2x}$, so $(9^x)^2 = (3^{2x})^2 = 3^{4x}$.
2. Combine all exponents in the numerator: add exponents for the same base: $(2x+1) + 4x = 6x + 1$, so the numerator becomes $5 \cdot 3^{6x + 1}$.
3. Subtract the denominator's exponent: dividing by $3^{x-2}$ gives a total exponent of $(6x +1) - (x - 2) = 5x + 3$, so we now have $f(x) = 5 \cdot 3^{5x + 3}$.
4. Split the constant exponent using $b^{m+n} = b^m b^n$: $3^{5x + 3} = 3^3 \cdot 3^{5x} = 27 (3^5)^x = 27 \cdot 243^x$. Multiply constants: $5 \cdot 27 = 135$.
5. Final simplified form: $f(x) = 135 \cdot 243^x$, so $A = 135$ and $c = 243$.

> **Exam tip:** Always rewrite all terms with the same base first before combining exponents. Even if the problem does not ask you to find roots, having a single base makes it much easier to spot equivalent answer choices on MCQs.

## Base Conversion for Exponential Functions

One of the most common AP Precalculus tasks requires converting between two standard forms of exponential functions: the per-period growth/decay form $f(x) = ab^x$, where $b$ is the base per unit input, and the continuous growth/decay form $f(x) = ae^{kx}$, where $k$ is the continuous growth rate constant, $k = \ln b$. This conversion is critical for modeling and calculus preparation.

**Derivation:** Find the conversion rule between $ab^x$ and $ae^{kx}$

*Starting from:* For any positive $b$, $b = e^{\ln b}$ by inverse property of logs and exponentials

1. Substitute into $ab^x$:
2. $$ab^x = a\left(e^{\ln b}\right)^x = ae^{(\ln b)x}$$

*Conclusion:* To convert $ab^x \to ae^{kx}$, use $k = \ln b$. To convert $ae^{kx} \to ab^x$, use $b = e^k$.

**Worked example:** The population of a bacteria colony is given by $P(t) = 200 (1.12)^t$, where $t$ is time in hours. (a) Write this function in the form $P(t) = P_0 e^{rt}$ to find the continuous hourly growth rate $r$, rounded to 4 decimal places. (b) Convert $Q(t) = 500 e^{0.06 t}$ to the form $Q(t) = Q_0 b^t$, rounded to 4 decimal places.

1. For part (a): Use the conversion rule $r = \ln b$, where $b = 1.12$.
2. Calculate $\ln(1.12) \approx 0.1133$, so $P(t) = 200 e^{0.1133 t}$, with continuous growth rate $r \approx 0.1133$ (11.33% per hour).
3. For part (b): Use the conversion rule $b = e^k$, where $k = 0.06$.
4. Calculate $e^{0.06} \approx 1.0618$, so $Q(t) = 500 (1.0618)^t$, with per-hour growth base $b \approx 1.0618$.

> **Exam tip:** Do not round the value of $k = \ln b$ early in FRQ problems. Keep the full precision of your calculator for intermediate steps, only rounding the final answer to the required number of decimal places to avoid avoidable rounding errors.

## Factoring Combined Exponential Functions

Many exam questions ask you to find key features (like x-intercepts) of functions that are combinations of multiple exponential terms. A common structure for these functions is a quadratic in a single exponential term: $f(x) = A b^{2kx} + B b^{kx} + C$, which simplifies to a standard quadratic with substitution $u = b^{kx}$. This lets us use factoring or the quadratic formula to solve for roots.

**Worked example:** Find all real x-intercepts of $f(x) = 2 \cdot 4^x - 5 \cdot 2^x + 2$. Write your answers as exact values.

1. First, rewrite $4^x$ to match the base of the second term: $4^x = (2^2)^x = (2^x)^2$.
2. Substitute $u = 2^x$, which is always positive for all real $x$, to rewrite $f(x)$ as a quadratic in $u$: $f(u) = 2u^2 - 5u + 2$.
3. Factor the quadratic: $(2u - 1)(u - 2) = 0$, so the solutions are $u = \frac{1}{2}$ and $u = 2$, both positive so both are valid.
4. Convert back to $x$: for $u = 2^x = \frac{1}{2} = 2^{-1}$, we get $x = -1$. For $u = 2^x = 2^1$, we get $x = 1$.
5. Verify by substitution: both values give $f(x) = 0$, so the x-intercepts are at $x=-1$ and $x=1$.

> **Exam tip:** When factoring quadratics in $u = b^x$, always discard any negative solutions for $u$, since exponential functions are always positive for real inputs, so negative $u$ cannot correspond to any real x-intercept.

## AP-Style Concept Check

**Check your understanding**

Test your understanding with this AP-style multiple choice question:

1. Which of the following is equivalent to $\frac{6 \cdot (2^{3x})^2}{2^{x - 1}}$ for all real $x$?

   - A) $6 \cdot 16^x$
   - B) $12 \cdot 32^x$
   - C) $6 \cdot 32^x$
   - D) $12 \cdot 16^x$

   *Why:* Simplify step-by-step: $(2^{3x})^2 = 2^{6x}$, so $\frac{6 \cdot 2^{6x}}{2^{x-1}} = 6 \cdot 2^{5x +1} = 6 \cdot 2^1 \cdot (2^5)^x = 12 \cdot 32^x$.

## Common pitfalls

- **Wrong:** When simplifying $2^{3x}$, writing it as $6^x$ instead of $8^x$.
  - Why it fails: Confusing the power rule $(b^m)^n = b^{mn}$ with $(ab)^n = a^n b^n$, incorrectly applying the exponent to the base's coefficient.
  - Correct: Always separate constants from the base first: $2^{3x} = (2^3)^x = 8^x$, and explicitly confirm which term is being raised to the power.
- **Wrong:** When converting $5e^{0.2x}$ to $ab^x$, calculating $b = 0.2 e$ instead of $b = e^{0.2}$.
  - Why it fails: Confusing the position of the constant $k$ in $e^{kx}$, misreading the exponent as $k e^x$ instead of $kx$.
  - Correct: For $a e^{kx}$, always calculate $b$ by substituting the entire coefficient of $x$ as the exponent of $e$, never multiply $k$ by $e$.
- **Wrong:** When combining $3^{2x} + 3^{x+1}$, writing it as $3^{3x +1}$.
  - Why it fails: Confusing the product rule for exponents (which applies to multiplication, not addition), incorrectly adding exponents when adding terms.
  - Correct: Only add exponents when multiplying terms with the same base. For adding terms, use substitution (like $u = 3^x$) to factor or simplify instead.
- **Wrong:** When solving for $x$ after factoring $u = 2^x = -4$, keeping the solution $x = \log_2(-4)$ as a real intercept.
  - Why it fails: Forgetting that exponential functions only output positive values for real inputs, so negative $u$ has no real solution.
  - Correct: After solving for $u = b^{kx}$, immediately discard any negative or zero solutions for $u$ before solving for $x$.
- **Wrong:** Rewriting $b^{x - h}$ as $b^x - b^h$ instead of $b^{-h} b^x$.
  - Why it fails: Confusing exponent rules with the distributive property, incorrectly distributing the exponent over subtraction inside the exponent.
  - Correct: Always apply the exponent addition rule: $b^{m - n} = b^m b^{-n} = \frac{b^m}{b^n}$, never split the exponent across addition or subtraction.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Product Rule | $b^u \cdot b^v = b^{u+v}$ | Same base only; does not apply to addition of terms |
| Quotient Rule | $\frac{b^u}{b^v} = b^{u-v}$ | Same base only; subtract denominator exponent from numerator |
| Power Rule | $(b^u)^v = b^{uv}$ | For powers raised to powers; separate constants to avoid error |
| Product of Powers | $(ab)^u = a^u b^u$ | Exponent applies to every factor inside parentheses |
| Convert $ab^x \to ae^{kx}$ | $k = \ln b$ | Gives continuous growth/decay rate, valid for $b>0$ |
| Convert $ae^{kx} \to ab^x$ | $b = e^k$ | Gives per-period growth base, valid for all real $k$ |
| Quadratic in Exponential | $A b^{2kx} + B b^{kx} + C = A u^2 + B u + C, \ u = b^{kx}$ | Always discard negative $u$ solutions, $b^{kx}>0$ for all real $x$ |
| Shifted Exponent Rewrite | $b^{x - h} = b^{-h} b^x$ | Pulls constant shift out of the exponent to simplify |

## What's next

Exponential function manipulation is the foundational prerequisite for all remaining topics in Unit 2, and for many quantitative topics across the rest of the AP Precalculus course. You will use these rewriting techniques to solve exponential and logarithmic equations, and to fit exponential models to real-world data sets. Without the ability to quickly and correctly rewrite exponential functions in equivalent forms, you will not be able to isolate variables to solve equations or interpret growth rates in modeling problems, and will lose easy points on exam questions that require a specific equivalent form of a function. This topic also prepares you for college calculus topics like differentiation of exponential functions and integration of continuous growth models.

- [Exponential function context and data modeling](https://www.owlsprep.com/study/ap-precalculus-u2-exponential-function-context-and-data/)
- [Competing Function Model Validation](https://www.owlsprep.com/study/ap-precalculus-u2-competing-function-model-validation/)
- [Composition of Functions](https://www.owlsprep.com/study/ap-precalculus-u2-composition-of-functions/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-precalculus-u2-exponential-function-manipulation/
