# Selecting procedures for calculating derivatives

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

This module covers selecting the correct derivative procedure for composite functions, implicit relations, and inverse functions for AP Calculus BC, a core skill tested across all exam sections.

**Prerequisites:** Basic derivative rules for power, exponential, trigonometric, and logarithmic functions; Product and quotient rules for differentiation; Limit definition of the derivative

## Learning objectives

- Recognize the form of a function/relation to select the appropriate differentiation procedure
- Apply the chain rule, implicit differentiation, and inverse function derivative rule correctly
- Avoid common errors when selecting and applying derivative procedures
- Calculate derivatives of inverse functions at a point without solving for the inverse explicitly

## What Is Selecting Derivative Procedures?

This is a core skill in Unit 3 of the AP Calculus BC CED, worth approximately 9–13% of the total AP exam score, appearing in both multiple-choice and free-response sections. The skill is not just memorizing derivative rules—it is recognizing the form of the function or relation you are working with, then choosing the correct technique to differentiate efficiently and accurately.

> **tip**
>
> You will never be told which rule to use on the exam, so this selection skill is as important as memorizing the rules themselves. Even if you recall all formulas correctly, applying the wrong procedure will always lead to an incorrect result and lost points.

## Selecting the Chain Rule for Composite Functions

**Composite Function** — A function of the form $f(g(x))$, where an inner function $g(x)$ is nested inside an outer function $f(u)$ with $u = g(x)$.

*Example:* $(2x - \ln x)^7$, $\sin(3e^x)$, $e^{\cos x}$

The chain rule is always the correct procedure for differentiating composite functions. For multiple nested composites, apply the chain rule repeatedly, one layer at a time. In Leibniz notation, the rule makes the intuition clear: the total rate of change of $y$ with respect to $x$ is the product of the rate of change of $y$ with respect to the inner function $u$, and the rate of change of $u$ with respect to $x$.

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

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

**Worked example:** Find $\frac{dy}{dx}$ for $y = (2x^3 - \cos x)^5$.

1. Identify the composite structure: outer function $f(u) = u^5$, inner function $u = 2x^3 - \cos x$.
2. Differentiate the outer function, leaving the inner function unchanged:

   $$f'(u) = 5u^4 = 5(2x^3 - \cos x)^4$$
3. Differentiate the inner function with respect to $x$:

   $$\frac{du}{dx} = 6x^2 + \sin x$$
4. Multiply the two results per the chain rule, and simplify:

   $$\frac{dy}{dx} = 5(6x^2 + \sin x)(2x^3 - \cos x)^4$$

> **Exam tip:** Always check for a nested inner function before applying a basic derivative rule—if the base/argument of your function is anything more complicated than just $x$, you will almost always need the chain rule.

## Selecting Implicit Differentiation for Implicit Relations

**Implicit Relation** — An equation relating $x$ and $y$ where $y$ cannot be easily solved explicitly in the form $y = f(x)$ (or cannot be solved at all).

*Example:* $x^2 + y^2 = 25$, $\sin(xy) = x + y$

Implicit differentiation is the correct procedure for these cases. The method relies on the chain rule: since $y$ is a function of $x$, any term containing $y$ is a composite function of $x$, so you multiply by $\frac{dy}{dx}$ when you differentiate that term. The general steps are: differentiate both sides of the equation with respect to $x$, collect all terms with $\frac{dy}{dx}$ on one side, factor out $\frac{dy}{dx}$, then solve for $\frac{dy}{dx}$.

**Worked example:** Find $\frac{dy}{dx}$ for the relation $e^{2y} + x^3 y = \sin x$.

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

   $$\frac{d}{dx}[e^{2y}] + \frac{d}{dx}[x^3 y] = \frac{d}{dx}[\sin x]$$
2. Apply the chain rule to the $e^{2y}$ term and product + chain rule to the $x^3 y$ term:

   $$2e^{2y}\frac{dy}{dx} + 3x^2 y + x^3 \frac{dy}{dx} = \cos x$$
3. Collect all terms with $\frac{dy}{dx}$ on the left, all other terms on the right:

   $$\frac{dy}{dx}\left(2e^{2y} + x^3\right) = \cos x - 3x^2 y$$
4. Divide both sides to solve for $\frac{dy}{dx}$:

   $$\frac{dy}{dx} = \frac{\cos x - 3x^2 y}{2e^{2y} + x^3}$$

> **Exam tip:** If a question asks for the derivative at a specific point, substitute the point values into your derivative expression immediately after solving for $\frac{dy}{dx}$—you do not need to simplify further, which saves time.

## Selecting the Inverse Function Derivative Rule

If $g(x) = f^{-1}(x)$ is the inverse function of $f(x)$, the inverse function derivative rule lets you find the derivative of $g(x)$ without having to solve for the inverse explicitly. The rule comes from implicit differentiation, and it also gives us the standard derivatives for inverse trigonometric functions. When you have an inverse trigonometric function of a non-$x$ argument, you combine the inverse derivative rule with the chain rule.

$$\frac{d}{dx}\left[f^{-1}(x)\right] = \frac{1}{f'\left(f^{-1}(x)\right)}$$

This rule is only valid when $f'(f^{-1}(x)) \neq 0$.

**Worked example:** Let $f(x) = x^3 + 2x + 1$, and let $g(x) = f^{-1}(x)$. Find $g'(4)$.

1. Apply the inverse derivative rule: $g'(4) = \frac{1}{f'(g(4))}$. First find $g(4) = f^{-1}(4)$, which is the value of $x$ where $f(x) = 4$.
2. Solve $f(x) = 4$: $x^3 + 2x + 1 = 4 \implies x^3 + 2x - 3 = 0$. Testing simple integer roots, $x=1$ satisfies the equation, so $g(4) = 1$.
3. Compute $f'(x) = 3x^2 + 2$, so $f'(g(4)) = f'(1) = 3(1)^2 + 2 = 5$.
4. Substitute back into the inverse derivative formula:

   $$g'(4) = \frac{1}{5}$$

> **Exam tip:** You never need to solve for the inverse explicitly to find its derivative at a point—AP problems are designed so the required $x$-value for the original function will always be a simple integer.

## AP Style Concept Check

**Check your understanding**

Test your ability to select the correct procedure for these common AP-style problems:

1. What is $\frac{dy}{dx}$ for $y = \arcsin(3x^2)$?

   - $\frac{1}{\sqrt{1 - 9x^4}}$
   - $\frac{6x}{\sqrt{1 - 9x^4}}$
   - $\frac{6x}{\sqrt{1 - 3x^2}}$
   - $\frac{1}{\sqrt{1 - 3x^2}}$

   *Answer:* $\frac{6x}{\sqrt{1 - 9x^4}}$

   *Why:* This is a composite function: outer $\arcsin(u)$, inner $u = 3x^2$. Apply the inverse trig derivative rule then multiply by the inner derivative $6x$ to get the correct result.

2. The position of a particle is $s(t) = \cos(e^{0.5t})$. What is $v(2)$, the velocity at $t=2$?

   - $-0.559$ cm/s
   - $-0.411$ cm/s
   - $0.559$ cm/s
   - $-1.118$ cm/s

   *Answer:* $-0.559$ cm/s

   *Why:* Velocity is the first derivative. Apply the chain rule twice to the double composite: $v(t) = -0.5e^{0.5t}\sin(e^{0.5t})$, substitute $t=2$ to get $v(2) \approx -0.559$ cm/s.

## Common pitfalls

- **Wrong:** Forgetting the chain rule for the inner function, e.g., writing $\frac{d}{dx}\sin(3x) = \cos(3x)$ instead of $3\cos(3x)$
  - Why it fails: Students only differentiate the outer function and stop, confusing composite functions with functions of $x$ directly.
  - Correct: Always ask 'is the argument/base more than just $x$?' after differentiating the outer function, and multiply by the inner derivative if yes.
- **Wrong:** Forgetting to multiply by $\frac{dy}{dx}$ when differentiating $y$-terms in implicit differentiation, e.g., writing $\frac{d}{dx}[y^2] = 2y$ instead of $2y\frac{dy}{dx}$
  - Why it fails: Students treat $y$ as a constant or independent variable, instead of a function of $x$.
  - Correct: Every time you differentiate a term containing $y$, immediately write $\frac{dy}{dx}$ after applying the derivative rule before moving to the next term.
- **Wrong:** Reversing the inverse derivative formula, e.g., writing $(f^{-1})'(a) = f'(f^{-1}(a))$ instead of $\frac{1}{f'(f^{-1}(a))}$
  - Why it fails: Students mix up the order when memorizing the formula.
  - Correct: If you forget the order, start from $f(y) = x$, differentiate implicitly, and rederive the formula in 10 seconds.
- **Wrong:** Using implicit differentiation for an explicitly defined function, leading to overly complicated incorrect results, e.g., differentiating $y = \sin(x^2)$ implicitly instead of using chain rule
  - Why it fails: Students default to implicit differentiation when it is not needed after learning the technique.
  - Correct: First check if you can easily solve for $y$ explicitly—only use implicit differentiation when you cannot.
- **Wrong:** Forgetting the chain rule when differentiating inverse trig functions with non-$x$ arguments, e.g., writing $\frac{d}{dx}\arctan(2x) = \frac{1}{1 + 4x^2}$ instead of $\frac{2}{1 + 4x^2}$
  - Why it fails: Students memorize the inverse trig derivative for $x$ and stop.
  - Correct: Treat any inverse trig function with a non-$x$ argument as a composite function, and multiply by the inner derivative.
- **Wrong:** Trying to solve for an inverse explicitly to find its derivative at a point, leading to algebraic dead ends
  - Why it fails: Students do not remember the inverse derivative rule works without an explicit inverse.
  - Correct: Always use the inverse derivative rule when asked for the derivative of an inverse at a point.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Chain Rule (Composite Functions) | $\frac{d}{dx}[f(g(x))] = f'(g(x))g'(x)$ | Use for nested functions; always multiply by the inner derivative. |
| Implicit Differentiation | Differentiate both sides w.r.t $x$, solve for $\frac{dy}{dx}$ | Use when $y$ cannot be solved explicitly; apply chain rule to all $y$-terms. |
| Inverse Function Derivative | $(f^{-1})'(a) = \frac{1}{f'(f^{-1}(a))}$ | Use for derivatives of inverses at a point; no explicit inverse needed. |
| Derivative of $\arcsin(x)$ | $\frac{d}{dx}\arcsin(x) = \frac{1}{\sqrt{1 - x^2}}$ | Domain: $-1 < x < 1$; apply chain rule for non-$x$ arguments. |
| Derivative of $\arccos(x)$ | $\frac{d}{dx}\arccos(x) = \frac{-1}{\sqrt{1 - x^2}}$ | Domain: $-1 < x < 1$; apply chain rule for non-$x$ arguments. |
| Derivative of $\arctan(x)$ | $\frac{d}{dx}\arctan(x) = \frac{1}{1 + x^2}$ | Domain: all real numbers; apply chain rule for non-$x$ arguments. |
| Derivative of $\text{arcsec}(x)$ | $\frac{d}{dx}\text{arcsec}(x) = \frac{1}{\|x\|\sqrt{x^2 - 1}}$ | Domain: $\|x\| > 1$; apply chain rule for non-$x$ arguments. |

## What's next

Mastering procedure selection for derivatives is the foundation for all remaining differentiation and integration topics in AP Calculus BC. Next, you will apply these techniques to parametric equations, polar curves, and vector-valued functions, where chain rule and implicit differentiation are used to find slopes of tangents and rates of change. Without the ability to quickly select the correct derivative procedure, these topics will be unnecessarily difficult, and you will waste valuable exam time second-guessing your choice of rule. Long-term, this skill is also critical for integration by substitution (where you reverse the chain rule) and for solving related rates and optimization problems.

- [Integration by substitution](https://www.owlsprep.com/study/ap-calculus-bc-u6-integration-by-substitution/)
- [Calculating higher-order derivatives](https://www.owlsprep.com/study/ap-calculus-bc-u3-calculating-higher-order-derivatives/)
- [Contextual Applications of Differentiation](https://www.owlsprep.com/study/ap-calculus-bc-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-bc-u3-selecting-procedures-for-calculating-derivatives/
