# Selecting procedures for calculating derivatives

> AP Calculus AB · Unit 3: Differentiation: Composite, Implicit, and Inverse Functions
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u3-selecting-procedures-for-calculating-derivatives/

This guide teaches you to select the correct differentiation procedure (chain rule, implicit differentiation, inverse function rule) based on function structure, a core skill that makes up 9–13% of the AP Calculus AB exam.

**Prerequisites:** Basic derivative rules (power, product, quotient, trigonometric); Function composition and inverse function properties; Limit definition of the derivative

## Learning objectives

- Identify the correct differentiation procedure based on a function's algebraic structure
- Correctly apply chain rule, implicit differentiation, and inverse function derivative rule
- Avoid common pitfalls when combining multiple differentiation rules

## What Is Selecting Differentiation Procedures?

Selecting procedures for calculating derivatives is the core skill of choosing the correct differentiation technique based on the algebraic structure of the function you need to differentiate, rather than just applying a pre-specified rule. Per the AP Calculus AB CED, this topic is part of Unit 3 and makes up 9–13% of the total AP exam score, tested in both multiple-choice and free-response sections. It is foundational for nearly every subsequent AP Calculus AB topic from related rates to curve sketching.

> **info**
>
> Unlike routine problems that ask you to apply a given rule, AP exam questions here expect you to independently identify what procedure is needed based on how the function is written.

## Recognizing and Applying the Chain Rule for Composite Functions

**Composite Function** — A function where one function (the inner function $g(x)$) is embedded inside a second outer function $f(u)$

*Notation:* $f(g(x))$

*Example:* $\sin(e^x)$, $(3x^2 + 2)^5$, $\sqrt{4x-1}$

You should always select the chain rule when working with a composite function. For nested composites with more than two layers, repeat the chain rule process working from the outermost layer inward. The chain rule formula is:

$$\frac{d}{dx}\left[f(g(x))\right] = f'(g(x)) \cdot g'(x)$$

In Leibniz notation, if $y = f(u)$ and $u = g(x)$ this becomes:

$$\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}$$

**Worked example:** Find $\frac{d}{dx}\left[\sin\left(\sqrt{4x - 1}\right)\right]$.

1. Identify the 3-layer composite structure: outer $f(u) = \sin(u)$, middle $g(v) = \sqrt{v}$, inner $h(x) = 4x-1$. Apply chain rule repeatedly.
2. Differentiate the outermost layer first, leaving inner layers unchanged:

   $$f'(u) = \cos(u) = \cos\left(\sqrt{4x-1}\right)$$
3. Multiply by the derivative of the middle layer:

   $$\frac{d}{dv}\left[\sqrt{v}\right] = \frac{1}{2\sqrt{v}} = \frac{1}{2\sqrt{4x-1}}$$
4. Multiply by the derivative of the innermost layer:

   $$\frac{d}{dx}\left[4x - 1\right] = 4$$
5. Simplify the product to get the final result:

   $$\frac{dy}{dx} = \cos\left(\sqrt{4x-1}\right) \cdot \frac{1}{2\sqrt{4x-1}} \cdot 4 = \frac{2\cos\left(\sqrt{4x-1}\right)}{\sqrt{4x-1}}$$

> **Exam tip:** Always work from the outermost layer inward when applying the chain rule; don't try to differentiate the inner layer first, which leads to missing a multiplication step.

*Calculator:* allowed

## Selecting Implicit Differentiation for Non-Explicit Functions

Implicit differentiation is the procedure to select when $y$ is not explicitly isolated as a function of $x$, meaning you cannot easily rewrite the relationship as $y = f(x)$. The core of implicit differentiation is just an application of the chain rule: any term containing $y$ is a composite function, so you must multiply by $\frac{dy}{dx}$ when differentiating it. The step-by-step procedure is:

1. Differentiate every term on both sides of the equation with respect to $x$
2. Apply the chain rule to all terms containing $y$, adding a $\frac{dy}{dx}$ factor
3. Collect all terms with $\frac{dy}{dx}$ on one side of the equation
4. Factor out $\frac{dy}{dx}$ and divide to solve for it

**Worked example:** Find $\frac{dy}{dx}$ for the curve $x^3 + 2xy + y^3 = 4$, then evaluate it at the point $(1, 1)$.

1. Differentiate both sides of the equation term-by-term with respect to $x$:

   $$\frac{d}{dx}\left(x^3\right) + \frac{d}{dx}\left(2xy\right) + \frac{d}{dx}\left(y^3\right) = \frac{d}{dx}\left(4\right)$$
2. Differentiate each term, applying product rule to $2xy$ and chain rule to $y^3$:

   $$3x^2 + 2\left(x \frac{dy}{dx} + y \cdot 1\right) + 3y^2 \frac{dy}{dx} = 0$$
3. Expand and collect all terms with $\frac{dy}{dx}$ on the left-hand side:

   $$2x \frac{dy}{dx} + 3y^2 \frac{dy}{dx} = -3x^2 - 2y$$
4. Factor out $\frac{dy}{dx}$ and solve:

   $$\frac{dy}{dx} = \frac{-3x^2 - 2y}{2x + 3y^2}$$
5. Evaluate at $(1, 1)$ by substituting $x=1, y=1$:

   $$\frac{dy}{dx} = \frac{-3(1) - 2(1)}{2(1) + 3(1)} = -1$$

> **Exam tip:** When finding $\frac{dy}{dx}$ at a specific point, you can substitute the point values into the equation before solving for $\frac{dy}{dx}$ to simplify algebra, which reduces the chance of arithmetic errors.

*Calculator:* allowed

## Selecting the Inverse Function Derivative Rule

You should select the inverse function derivative rule when you need the derivative of an inverse function at a point, and you do not want to (or cannot) find the inverse function explicitly. This is the most common AP exam question type for inverse derivatives, testing your ability to apply the rule rather than just do routine differentiation.

**Inverse Function Derivative Rule** — If $y = f^{-1}(x)$ is the inverse of $f(x)$, the derivative of the inverse at $x=a$ is the reciprocal of the derivative of $f$ evaluated at $f^{-1}(a)$.

*Notation:* $\left(f^{-1}\right)'(a) = \frac{1}{f'\left(f^{-1}(a)\right)}$

The intuition for this rule comes from the fact that the graph of an inverse function is the reflection of the original function over the line $y=x$, so the slope of the tangent of the inverse is the reciprocal of the slope of the original function at the corresponding point. To apply the rule: 1) find $b$ such that $f(b) = a$ (so $f^{-1}(a) = b$), 2) find $f'(b)$, 3) take the reciprocal.

**Worked example:** Let $f(x) = x^3 + 2x + 1$. Find $\left(f^{-1}\right)'(4)$.

1. Apply the inverse derivative rule formula:

   $$\left(f^{-1}\right)'(4) = \frac{1}{f'\left(f^{-1}(4)\right)}$$
2. Find $f^{-1}(4)$ by solving $f(b) = 4$:

   $$b^3 + 2b + 1 = 4 \implies b^3 + 2b - 3 = 0$$
3. Testing small integer values gives $b=1$ as a solution, so $f^{-1}(4) = 1$. Find $f'(x)$ and evaluate at $b=1$:

   $$f'(x) = 3x^2 + 2 \implies f'(1) = 3(1)^2 + 2 = 5$$
4. Take the reciprocal for the final result:

   $$\left(f^{-1}\right)'(4) = \frac{1}{5}$$

> **Exam tip:** If you are asked for $\left(f^{-1}\right)'(a)$, always solve $f(b) = a$ first before taking the derivative. You will almost always get an integer for $b$ on the AP exam, so testing small integers first saves time.

*Calculator:* allowed

## Combining Procedures for Complex Functions

Most AP exam problems require combining multiple differentiation procedures. A common pattern is combining product/quotient rule with chain rule for factors that are composite functions. Always identify the top-level structure first: if the function is a product of two terms, apply product rule first, then use chain rule for any composite factors.

**Check your understanding**

Test your ability to select the correct procedure:

1. If $f(x) = \cos\left(3x^2 - 2x\right)$, what is $f'(1)$?

   - $-4 \cos(1)$
   - $4 \sin(1)$
   - $-4 \sin(1)$
   - $4 \cos(1)$

   *Why:* Correct. $f(x)$ is composite, so chain rule gives $f'(x) = -\sin(3x^2 - 2x) \cdot (6x - 2)$, which evaluates to $-4 \sin(1)$ at $x=1$.

**Worked example:** The concentration $C$ of a drug in a patient's bloodstream $t$ hours after injection is given by $C(t) = 10 e^{-0.5\sqrt{t}}$, where $C$ is measured in mg/L. What is the rate of change of concentration 4 hours after injection?

1. First, identify that $C(t)$ is a composite function, so we select the chain rule. Let $u = \sqrt{t}$, so $C(u) = 10 e^{-0.5u}$.
2. Differentiate each layer and apply chain rule:

   $$C'(t) = \frac{dC}{du} \cdot \frac{du}{dt} = -5 e^{-0.5\sqrt{t}} \cdot \frac{1}{2\sqrt{t}} = \frac{-5 e^{-0.5\sqrt{t}}}{2\sqrt{t}}$$
3. Evaluate at $t=4$, where $\sqrt{4} = 2$:

   $$C'(4) = \frac{-5 e^{-1}}{4} \approx -0.46$$
4. Interpretation: 4 hours after injection, the drug concentration is decreasing at a rate of approximately 0.46 mg/L per hour.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Forgetting to apply chain rule to inner layers, e.g., writing $\frac{d}{dx} (x^2 + 1)^3 = 3(x^2 + 1)^2$
  - Why it fails: Students only differentiate the outer layer and stop, confusing composite functions with power functions of $x$.
  - Correct: After differentiating the outer layer, always check: is the inside a function of $x$ other than $x$ itself? If yes, multiply by its derivative.
- **Wrong:** Forgetting to multiply by $\frac{dy}{dx}$ when differentiating terms with $y$ in implicit differentiation, e.g., writing $\frac{d}{dx} (y^2) = 2y$
  - Why it fails: Students treat $y$ as a constant instead of a function of $x$ when differentiating.
  - Correct: Every time you differentiate a term that contains a $y$, automatically add a $\frac{dy}{dx}$ factor from the chain rule before moving on.
- **Wrong:** Flipping the inverse derivative formula incorrectly, writing $\left(f^{-1}\right)'(a) = f'\left(f^{-1}(a)\right)$ instead of the reciprocal, or using $f'(a)$ instead of $f'(f^{-1}(a))$
  - Why it fails: Confusion between the input to $f'$ and the input for the inverse function.
  - Correct: After writing the formula, label each term: $\left(f^{-1}\right)'(\text{input to inverse}) = \frac{1}{f'(\text{output of inverse at that input})}$.
- **Wrong:** Applying chain rule when it's not needed, e.g., writing $\frac{d}{dx} (x \sin x) = (\cos x)(\sin x + x \cos x)$
  - Why it fails: Confusing a product of two functions with a composition of two functions.
  - Correct: Before differentiating, label the top-level operation: if it's product/quotient, use product/quotient rule; if it's one function inside another, use chain rule.
- **Wrong:** Differentiating with respect to $y$ instead of $x$ in implicit differentiation, getting $\frac{dx}{dy}$ instead of $\frac{dy}{dx}$
  - Why it fails: Mixing up the dependent and independent variable.
  - Correct: At the start of any implicit differentiation problem, write $\frac{d}{dx}$ on both sides of the equation to remind yourself you are differentiating with respect to $x$.

## Cheatsheet

| Category | Formula/Procedure | Notes |
| --- | --- | --- |
| Chain Rule (2-layer composite) | $\frac{d}{dx}[f(g(x))] = f'(g(x))g'(x)$ | Apply when one function is inside another; work outer to inner. |
| Chain Rule (3-layer composite) | $\frac{d}{dx}[f(g(h(x)))] = f'(g(h(x)))g'(h(x))h'(x)$ | Common for nested functions like $\sin(\sqrt{ax+b})$. |
| Implicit Differentiation | Differentiate both sides w.r.t $x$, multiply terms with $y$ by $\frac{dy}{dx}$, solve for $\frac{dy}{dx}$ | Use when $y$ cannot be easily isolated as $y=f(x)$. |
| Derivative of $y^n$ w.r.t $x$ | $\frac{d}{dx}[y^n] = n y^{n-1} \frac{dy}{dx}$ | Core step for all implicit differentiation problems. |
| Inverse Function Derivative | $\left(f^{-1}\right)'(a) = \frac{1}{f'(f^{-1}(a))}$ | Used for derivative of inverse at a point; no need to find inverse explicitly. |
| Product + Chain Rule Combination | Apply product rule first, then chain rule to each composite factor | For functions of the form $f(g(x))h(k(x))$ |
| Slope of implicit curve tangent | Evaluate $\frac{dy}{dx}$ at $(x_0, y_0)$ | Substitute $(x_0, y_0)$ early to simplify algebra. |

## What's next

Mastering the skill of selecting the correct differentiation procedure is the foundational prerequisite for all remaining application topics in AP Calculus AB. Immediately next, you will apply these differentiation rules to solve related rates problems, which require you to implicitly differentiate relationships between multiple changing quantities to find unknown rates of change. Without the ability to quickly select and apply the chain rule, implicit differentiation, and other combined procedures, related rates problems become nearly impossible to solve correctly. This skill also feeds into later topics like higher-order derivatives, optimization of composite functions, and u-substitution for integration, the reverse of the chain rule that makes up 10–15% of the total AP exam score.

- [Implicit Differentiation](https://www.owlsprep.com/study/ap-calculus-ab-u3-implicit-differentiation/)
- [Calculating higher-order derivatives](https://www.owlsprep.com/study/ap-calculus-ab-u3-calculating-higher-order-derivatives/)
- [Contextual Applications of Differentiation Overview](https://www.owlsprep.com/study/ap-calculus-ab-u4-overview/)

---

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-calculus-ab-u3-selecting-procedures-for-calculating-derivatives/
