AP Calculus BC Unit 3 Study Guide: Composite, Implicit, Logarithmic, and Inverse Differentiation

Composite Functions and the Chain Rule

What a composite function is (and why it changes how you differentiate)

A composite function is a function built by plugging one function into another. If you have an “inside” function %%LATEX0%% and an “outside” function %%LATEX1%%, the composite is written as:

f(g(x))

You can think of this as a two-step machine: start with an input %%LATEX3%%, apply %%LATEX4%% to get %%LATEX5%%, and then feed that output into %%LATEX6%% to get %%LATEX7%%. This matters for differentiation because a small change in %%LATEX8%% does not directly produce a small change in %%LATEX9%%. Instead, %%LATEX10%% first changes %%LATEX11%%, and that change then affects %%LATEX12%%. The derivative must account for both layers of change.

A useful real-world analogy is temperature conversion inside another formula. Suppose an object’s length depends on temperature in Celsius, but your sensor measures Fahrenheit. Your final output “length as a function of Fahrenheit” is a composite: Fahrenheit %%LATEX13%% Celsius %%LATEX14%% length. The overall rate of change must multiply the “F-to-C” rate by the “length-to-C” rate.

The Chain Rule: what it says and why it’s multiplication

When finding the derivative of a composite function, take the derivative of the outside function with the inside function treated as the variable (leaving the inside alone), and then multiply by the derivative of the inside function.

If y=f(g(x)), then:

\frac{dy}{dx}=f'(g(x))g'(x)

You’ll also see it written with substitution language. If %%LATEX17%% and %%LATEX18%%, then:

\frac{dy}{dx}=\frac{dy}{dv}\cdot\frac{dv}{dx}

Conceptually, the multiplication comes from chained rates: %%LATEX20%% measures how fast the inside changes as %%LATEX21%% changes, and f'(g(x)) measures how fast the outside changes as its input changes.

A popular memory trick (especially for power-type composites) is: “douter, inner, dinner”. Differentiate the outside (“douter”), keep the inside (“inner”), then multiply by the derivative of the inside (“dinner”). For example, for \big(\text{inner}\big)^n you “drop the power down,” reduce the exponent by one, keep the inside unchanged, and multiply by the derivative of the inside.

Chain rule memory aid

Recognizing when you need the Chain Rule

You need the Chain Rule whenever the function is a basic function of something other than x.

Common signals include a power applied to a nontrivial expression, trig of something complicated, and exponentials/logs whose inputs are not just x:

\big(3x^2-5x+1\big)^7

\sin(\sqrt{x+2})

e^{x^3}

\ln(5x^2+1)

A common misconception is thinking that only parentheses mean Chain Rule. Parentheses are a clue, but composition can appear without them, such as %%LATEX30%%, which typically means %%LATEX31%%.

Worked examples (Chain Rule fundamentals)

Example 1: Power of a linear-quadratic expression

Differentiate:

y=(3x^2-5x+1)^7

Let %%LATEX33%%. The outside is %%LATEX34%%, so:

\frac{dy}{du}=7u^6

and

\frac{du}{dx}=6x-5

Multiply and substitute back:

\frac{dy}{dx}=7(3x^2-5x+1)^6(6x-5)

A frequent error is stopping at %%LATEX38%% and forgetting the factor %%LATEX39%%.

Example 2: Trig composite with a radical

Differentiate:

y=\sin(\sqrt{x+2})

Let u=\sqrt{x+2}=(x+2)^{1/2}. Then:

\frac{dy}{du}=\cos(u)

and

\frac{du}{dx}=\frac{1}{2}(x+2)^{-1/2}

So:

\frac{dy}{dx}=\cos(\sqrt{x+2})\cdot\frac{1}{2}(x+2)^{-1/2}

Equivalently:

\frac{dy}{dx}=\frac{\cos(\sqrt{x+2})}{2\sqrt{x+2}}

Exam Focus
  • Typical question patterns: Find %%LATEX46%% for a function with multiple layers (power, trig, exponential, log). Find the slope of the tangent line at a given %%LATEX47%% value by differentiating and evaluating. Translate a composition given in words (for example, a conversion inside a model).
  • Common mistakes: Differentiating the outside but forgetting to multiply by the derivative of the inside. Rewriting incorrectly (for example, treating %%LATEX48%% and %%LATEX49%% as the same expression). Algebra mistakes after applying the Chain Rule, especially with negative exponents and radicals.

Advanced Chain Rule Patterns (and combining with other rules)

Why “just knowing the Chain Rule” is not enough

On the AP exam, most realistic derivatives are not a single clean composite. They combine multiple differentiation rules, so your real skill is structure recognition: identify the outermost operation first (sum, product, quotient, composition), then work inward.

Useful derivative facts you’ll combine with the Chain Rule

If %%LATEX50%% is a function of %%LATEX51%%, then:

\frac{d}{dx}(u^n)=nu^{n-1}u'

\frac{d}{dx}(e^u)=e^u u'

\frac{d}{dx}(a^u)=a^u\ln(a)u'

\frac{d}{dx}(\ln(u))=\frac{u'}{u}

\frac{d}{dx}(\sin(u))=\cos(u)u'

\frac{d}{dx}(\cos(u))=-\sin(u)u'

\frac{d}{dx}(\tan(u))=\sec^2(u)u'

A common “silent mistake” is applying these as if %%LATEX59%%. For example, students often write %%LATEX60%% and forget the needed factor u'.

Product Rule and Chain Rule together

If y=p(x)q(x), then:

y'=p'(x)q(x)+p(x)q'(x)

If either factor is composite, you still use the product rule on the outside, and then use the Chain Rule inside %%LATEX64%% and/or %%LATEX65%%.

Example 1: Product with an exponential composite

Differentiate:

y=(x^2+1)e^{3x}

Product rule gives:

y'=(2x)e^{3x}+(x^2+1)\frac{d}{dx}(e^{3x})

Chain rule on the exponential:

\frac{d}{dx}(e^{3x})=3e^{3x}

So:

y'=2xe^{3x}+3(x^2+1)e^{3x}

Factoring is optional but nice:

y'=e^{3x}(2x+3x^2+3)

A common error is writing %%LATEX71%% and forgetting the inner derivative factor %%LATEX72%%.

Quotient Rule and Chain Rule together

If y=\frac{p(x)}{q(x)}, then:

y'=\frac{p'(x)q(x)-p(x)q'(x)}{(q(x))^2}

Again, if %%LATEX75%% or %%LATEX76%% is composite, apply the Chain Rule inside those derivatives.

Example 2: Quotient with trig composite

Differentiate:

y=\frac{\sin(x^2)}{x}

Let %%LATEX78%% and %%LATEX79%%. Then:

p'(x)=\cos(x^2)\cdot 2x

q'(x)=1

So:

y'=\frac{(2x\cos(x^2))x-\sin(x^2)}{x^2}

Simplify:

y'=\frac{2x^2\cos(x^2)-\sin(x^2)}{x^2}

Or split it:

y'=2\cos(x^2)-\frac{\sin(x^2)}{x^2}

A very common mistake is differentiating %%LATEX85%% as %%LATEX86%% but forgetting the factor 2x.

Repeated chain rule (multiple layers)

Some functions have more than two layers, so it helps to name the layers and go one derivative at a time.

Example 3: Multi-layer composite

Differentiate:

y=(1+\sin(3x))^{1/2}

Start with the outer power:

y'=\frac{1}{2}(1+\sin(3x))^{-1/2}\cdot\frac{d}{dx}(1+\sin(3x))

Differentiate the inside:

\frac{d}{dx}(1+\sin(3x))=\cos(3x)\cdot 3

Combine:

y'=\frac{1}{2}(1+\sin(3x))^{-1/2}\cdot 3\cos(3x)

Equivalent simplified form:

y'=\frac{3\cos(3x)}{2\sqrt{1+\sin(3x)}}

A common mistake is differentiating %%LATEX93%% as %%LATEX94%% and forgetting the inner derivative 3.

Exam Focus
  • Typical question patterns: Differentiate expressions that combine product/quotient rules with embedded composites. Find %%LATEX96%% after finding %%LATEX97%% (this often requires careful rewriting and repeated rule use). Differentiate correctly even when simplification is not required.
  • Common mistakes: Using product rule when you should use chain rule (or vice versa), especially for expressions like %%LATEX98%% versus %%LATEX99%%. Dropping parentheses and changing meaning, for example interpreting \ln x^2 ambiguously instead of reading what is written. Simplifying in a way that loses domain information (for example, rewriting radicals or logs without checking where expressions are defined). Also, if a second derivative is required, it’s usually worth simplifying the first derivative before differentiating again.

Implicit Differentiation

What “implicit” means and why implicit differentiation exists

A function is given explicitly when %%LATEX101%% is isolated, like %%LATEX102%%. Many relationships are implicit, where %%LATEX103%% and %%LATEX104%% are mixed together, like:

x^2+y^2=25

This equation describes a circle, and it does not represent %%LATEX106%% as a single function of %%LATEX107%% on the full circle. But you can still find the slope of the curve at a point. That slope is %%LATEX108%%, and implicit differentiation is how you compute it without solving for %%LATEX109%%.

The key idea is that even if %%LATEX110%% is not isolated, it is still a function of %%LATEX111%%, meaning %%LATEX112%%. So when you differentiate terms involving %%LATEX113%%, you must apply the Chain Rule and include a factor of %%LATEX114%%. A quick way to say this is: if the variable you’re differentiating doesn’t match %%LATEX115%%, you need to “follow it up” with \frac{d(\text{that variable})}{dx}.

Implicit differentiation example

The core procedure

To implicitly differentiate an equation involving %%LATEX117%% and %%LATEX118%%:

  1. Differentiate both sides with respect to x.
  2. When differentiating terms containing %%LATEX120%%, multiply by %%LATEX121%%.
  3. Collect all \frac{dy}{dx} terms on one side.
  4. Factor out \frac{dy}{dx}.
  5. Solve for \frac{dy}{dx}.

It’s not a special “new rule”; it’s ordinary differentiation plus the Chain Rule applied to y(x). The AP exam loves to test this, often mixed with product rule, trig, or evaluation at a point.

A note about \frac{dx}{dy} and reciprocals

Sometimes it’s helpful to think in the other direction. When the derivative exists and is nonzero, the derivatives of inverse relationships satisfy:

\frac{dx}{dy}=\frac{1}{\frac{dy}{dx}}

This reciprocal idea can help you reason about swapping variables or about inverse functions, but on typical implicit differentiation problems you usually differentiate with respect to %%LATEX128%% and solve for %%LATEX129%% directly.

Worked examples (basic implicit differentiation)

Example 1: Circle

Differentiate implicitly:

x^2+y^2=25

Differentiate both sides:

2x+2y\frac{dy}{dx}=0

Solve:

\frac{dy}{dx}=-\frac{x}{y}

Common error: writing %%LATEX133%% instead of %%LATEX134%%.

If you’re asked for the derivative at a point, you can often plug in early to avoid extra algebra later. Here, at (3,4):

\frac{dy}{dx}=-\frac{3}{4}

Example 2: Implicit with a product

Differentiate implicitly:

xy+y=x^2

Differentiate both sides; for %%LATEX138%% use product rule because both %%LATEX139%% and %%LATEX140%% vary with %%LATEX141%%:

x\frac{dy}{dx}+y+\frac{dy}{dx}=2x

Group \frac{dy}{dx} terms:

(x+1)\frac{dy}{dx}+y=2x

Solve:

\frac{dy}{dx}=\frac{2x-y}{x+1}

Common error: treating %%LATEX146%% as constant in %%LATEX147%% and writing derivative %%LATEX148%% instead of %%LATEX149%%.

Tangent lines and normal lines to implicitly defined curves

Once you have \frac{dy}{dx}, plug in a point to get the tangent slope.

  • Tangent line slope at %%LATEX151%% is %%LATEX152%%.
  • Normal line slope is the negative reciprocal (when the tangent slope is not zero):

m_{normal}=-\frac{1}{m_{tangent}}

Example 3: Tangent line to a circle

For %%LATEX154%%, at %%LATEX155%%:

m=-\frac{3}{4}

Point-slope form:

y-4=-\frac{3}{4}(x-3)

Second derivatives via implicit differentiation

Sometimes you need %%LATEX158%%. After finding %%LATEX159%%, differentiate again with respect to %%LATEX160%%, remembering that %%LATEX161%% still depends on x.

Example 4: Second derivative for a circle

Start from:

\frac{dy}{dx}=-\frac{x}{y}

Differentiate:

\frac{d^2y}{dx^2}=\frac{d}{dx}\left(-\frac{x}{y}\right)

Use product form -x\cdot y^{-1}:

\frac{d}{dx}(-x\cdot y^{-1})=-(1\cdot y^{-1}+x\cdot\frac{d}{dx}(y^{-1}))

and

\frac{d}{dx}(y^{-1})=-y^{-2}\frac{dy}{dx}

So:

\frac{d^2y}{dx^2}=-\frac{1}{y}+\frac{x}{y^2}\frac{dy}{dx}

Substitute \frac{dy}{dx}=-\frac{x}{y}:

\frac{d^2y}{dx^2}=-\frac{1}{y}-\frac{x^2}{y^3}

Combine:

\frac{d^2y}{dx^2}=-\frac{x^2+y^2}{y^3}

On the circle, x^2+y^2=25, so:

\frac{d^2y}{dx^2}=-\frac{25}{y^3}

Common mistakes include forgetting to include or substitute %%LATEX174%% when it appears during the second-derivative work, and treating %%LATEX175%% as constant.

Exam Focus
  • Typical question patterns: Given an equation in %%LATEX176%% and %%LATEX177%%, find %%LATEX178%%. Find the equation of a tangent line at a specified point on an implicitly defined curve. Find %%LATEX179%% and evaluate at a point (often for concavity).
  • Common mistakes: Forgetting the factor %%LATEX180%% when differentiating terms like %%LATEX181%% or %%LATEX182%%. Not using product rule on terms like %%LATEX183%%. Algebra errors when collecting and solving for \frac{dy}{dx}.

Logarithmic Differentiation (a powerful application of implicit differentiation)

What it is and when you should use it

Logarithmic differentiation means taking \ln of both sides to simplify differentiation. It’s especially helpful when:

  • You have variables in both the base and exponent, like y=x^x.
  • You have complicated products/quotients of powers, like:

y=\frac{(x^2+1)^5\sqrt{x-3}}{(3x-1)^7}

It works because logarithms turn multiplication into addition and powers into multiplication.

Key properties:

\ln(ab)=\ln(a)+\ln(b)

\ln\left(\frac{a}{b}\right)=\ln(a)-\ln(b)

\ln(a^k)=k\ln(a)

A common misconception is that logarithmic differentiation is only for x^x. It’s really a general simplification tool.

The standard process

Start with %%LATEX192%%. Take %%LATEX193%% of both sides, expand using log rules, then differentiate. The left side becomes %%LATEX194%% (Chain Rule). Solve for %%LATEX195%% by multiplying by %%LATEX196%%, and substitute the original expression back for %%LATEX197%%.

Worked examples

Example 1: Differentiating x^x

Let:

y=x^x

Take logs:

\ln(y)=\ln(x^x)

Power property:

\ln(y)=x\ln(x)

Differentiate:

\frac{1}{y}\frac{dy}{dx}=\frac{d}{dx}(x\ln(x))

Product rule:

\frac{d}{dx}(x\ln(x))=\ln(x)+1

So:

\frac{dy}{dx}=x^x(\ln(x)+1)

Common error: trying to use the power rule on %%LATEX205%% as if it were %%LATEX206%%.

Example 2: Simplifying a product/quotient of powers

Differentiate:

y=\frac{(x^2+1)^5(x-3)^{1/2}}{(3x-1)^7}

Take logs:

\ln(y)=\ln\left(\frac{(x^2+1)^5(x-3)^{1/2}}{(3x-1)^7}\right)

Expand:

\ln(y)=5\ln(x^2+1)+\frac{1}{2}\ln(x-3)-7\ln(3x-1)

Differentiate:

\frac{1}{y}\frac{dy}{dx}=5\cdot\frac{2x}{x^2+1}+\frac{1}{2}\cdot\frac{1}{x-3}-7\cdot\frac{3}{3x-1}

So:

\frac{1}{y}\frac{dy}{dx}=\frac{10x}{x^2+1}+\frac{1}{2(x-3)}-\frac{21}{3x-1}

Multiply by y:

\frac{dy}{dx}=\frac{(x^2+1)^5(x-3)^{1/2}}{(3x-1)^7}\left(\frac{10x}{x^2+1}+\frac{1}{2(x-3)}-\frac{21}{3x-1}\right)

A common mistake is forgetting %%LATEX214%%, including the inner derivative factors like %%LATEX215%% and 3.

Exam Focus
  • Typical question patterns: Differentiate expressions like %%LATEX217%% or %%LATEX218%%. Differentiate messy products/quotients of powers where log properties simplify the work. Set up the derivative correctly even if the final simplification is not required.
  • Common mistakes: Forgetting that differentiating %%LATEX219%% gives %%LATEX220%%. Forgetting domain issues conceptually (since %%LATEX221%% requires %%LATEX222%%), which can matter in interpretation. Not multiplying by y at the end.

Derivatives of Inverse Functions

What an inverse function is (conceptually)

Two functions %%LATEX224%% and %%LATEX225%% are inverses if they undo each other:

f(f^{-1}(x))=x

f^{-1}(f(x))=x

Graphically, the graphs of %%LATEX228%% and %%LATEX229%% are reflections across %%LATEX230%%. Not every function has an inverse on its entire domain; to have an inverse function, %%LATEX231%% must be one-to-one (or you restrict the domain so it becomes one-to-one).

The key derivative relationship

If %%LATEX232%% is differentiable and one-to-one, %%LATEX233%%, and b=f(a), then:

\left(f^{-1}\right)'(b)=\frac{1}{f'(a)}

A common equivalent form is:

\left(f^{-1}\right)'(x)=\frac{1}{f'(f^{-1}(x))}

The slope becomes a reciprocal because reflection across %%LATEX237%% swaps “rise” and “run,” but you must evaluate at corresponding points. The point %%LATEX238%% on %%LATEX239%% corresponds to %%LATEX240%% on f^{-1}.

Inverse function derivative formula

A point-swap way to remember evaluations

If %%LATEX242%% and %%LATEX243%%, then %%LATEX244%%. So if you want %%LATEX245%%, you find f'(a) and take the reciprocal:

g'(b)=\frac{1}{f'(a)}

Students often say this informally as: “swap the point and take the reciprocal of the slope.” Just be careful to swap correctly: the original point %%LATEX248%% on %%LATEX249%% becomes (b,a) on the inverse.

Worked examples

Example 1: Use a table-style point correspondence

Suppose you know:

f(2)=5

f'(2)=3

Then f^{-1}(5)=2 and:

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

Example 2: Using the general formula

Let:

f(x)=x^3+1

Find %%LATEX256%%. First find %%LATEX257%% such that f(a)=9:

a^3+1=9

a=2

Then:

f'(x)=3x^2

f'(2)=12

So:

\left(f^{-1}\right)'(9)=\frac{1}{12}

Connecting inverse derivatives to implicit differentiation

Start from:

f(f^{-1}(x))=x

Differentiate both sides:

f'(f^{-1}(x))\cdot\left(f^{-1}\right)'(x)=1

Solve:

\left(f^{-1}\right)'(x)=\frac{1}{f'(f^{-1}(x))}

This makes inverse-function derivatives feel less like a standalone formula and more like a direct application of Chain Rule plus implicit thinking.

Exam Focus
  • Typical question patterns: Given values like %%LATEX267%% and %%LATEX268%%, find %%LATEX269%%. Given an explicit function, find %%LATEX270%% by solving %%LATEX271%% first. Conceptual questions about why the slope is a reciprocal because of reflection across %%LATEX272%%.
  • Common mistakes: Using %%LATEX273%% without evaluating at the correct corresponding input. Forgetting the point swap %%LATEX274%%. Ignoring the condition %%LATEX275%% (if %%LATEX276%%, the inverse has an undefined slope there). Also note: the AP test often only includes about 1 to 2 inverse-derivative questions, so this is usually a “high accuracy, low volume” skill.

Inverse Trigonometric Functions and Their Derivatives

Why inverse trig derivatives matter

Inverse trig functions appear when you solve trig equations for an angle and later when you integrate. In differentiation, the main skills are recognizing inverse trig as inverse functions and applying the derivative formulas with Chain Rule.

Inverse trig functions are commonly written as:

  • \arcsin(x)
  • \arccos(x)
  • \arctan(x)

You may also see %%LATEX280%% to mean %%LATEX281%%. This is not the reciprocal of sine (that reciprocal is \csc(x)). That notation confusion is one of the most common errors.

Inverse trig derivatives chart

Domain restrictions (why inverse trig functions are single-valued)

To define an inverse, each trig function is restricted to a principal range where it is one-to-one:

  • %%LATEX283%% outputs angles in %%LATEX284%%
  • %%LATEX285%% outputs angles in %%LATEX286%%
  • %%LATEX287%% outputs angles in %%LATEX288%%

These restrictions matter for sign decisions when simplifying expressions like \cos(\arcsin(x)).

Derivative formulas (including Chain Rule versions)

Standard inverse trig derivatives:

\frac{d}{dx}(\arcsin(x))=\frac{1}{\sqrt{1-x^2}}

\frac{d}{dx}(\arccos(x))=-\frac{1}{\sqrt{1-x^2}}

\frac{d}{dx}(\arctan(x))=\frac{1}{1+x^2}

Also commonly used (and often included on derivative charts):

\frac{d}{dx}(\operatorname{arccot}(x))=-\frac{1}{1+x^2}

\frac{d}{dx}(\operatorname{arcsec}(x))=\frac{1}{|x|\sqrt{x^2-1}}

\frac{d}{dx}(\operatorname{arccsc}(x))=-\frac{1}{|x|\sqrt{x^2-1}}

With Chain Rule, for u(x):

\frac{d}{dx}(\arcsin(u))=\frac{u'}{\sqrt{1-u^2}}

\frac{d}{dx}(\arccos(u))=-\frac{u'}{\sqrt{1-u^2}}

\frac{d}{dx}(\arctan(u))=\frac{u'}{1+u^2}

A frequent mistake is forgetting to square the entire inside expression in the denominator, for example writing %%LATEX300%% instead of %%LATEX301%%.

How one of these is derived (so it’s not just memorization)

Let y=\arcsin(x). Then by definition:

\sin(y)=x

Differentiate implicitly:

\cos(y)\frac{dy}{dx}=1

So:

\frac{dy}{dx}=\frac{1}{\cos(y)}

Use the identity %%LATEX306%% with %%LATEX307%%:

\cos(y)=\sqrt{1-x^2}

The positive root matches the principal range %%LATEX309%% where %%LATEX310%%. Therefore:

\frac{d}{dx}(\arcsin(x))=\frac{1}{\sqrt{1-x^2}}

Worked examples

Example 1: Chain rule with inverse trig

Differentiate:

y=\arctan(3x^2)

Let %%LATEX313%%, so %%LATEX314%%. Then:

\frac{dy}{dx}=\frac{u'}{1+u^2}

So:

\frac{dy}{dx}=\frac{6x}{1+(3x^2)^2}

Simplify:

\frac{dy}{dx}=\frac{6x}{1+9x^4}

Common mistake: writing %%LATEX318%% in the denominator instead of %%LATEX319%%.

Example 2: Differentiating an expression involving inverse trig and algebra

Differentiate:

y=x\arcsin(x)

Product rule:

y'=\arcsin(x)+x\cdot\frac{1}{\sqrt{1-x^2}}

So:

y'=\arcsin(x)+\frac{x}{\sqrt{1-x^2}}

Simplifying trig expressions with inverse trig (common AP skill)

To simplify expressions like %%LATEX323%%, let %%LATEX324%% so \sin(\theta)=x. Then:

\cos(\theta)=\sqrt{1-x^2}

because %%LATEX327%% implies %%LATEX328%%. Therefore:

\cos(\arcsin(x))=\sqrt{1-x^2}

A classic mistake is writing \pm\sqrt{1-x^2} without using the principal range to pick the sign.

Exam Focus
  • Typical question patterns: Differentiate inverse trig composites like %%LATEX331%%. Use implicit differentiation ideas to justify inverse trig derivatives. Simplify expressions like %%LATEX332%% or \cos(\arcsin(x)) as part of a derivative or evaluation.
  • Common mistakes: Confusing %%LATEX334%% with %%LATEX335%%. Losing the Chain Rule factor u'. Choosing the wrong sign when converting from an inverse trig output angle to a trig value.

Putting It All Together: Multi-Concept Differentiation and Interpretation

Why AP problems mix techniques

AP Calculus questions often test whether you can select and combine tools correctly, not just execute a single rule in isolation. In this unit, common blends include Chain Rule with implicit differentiation, inverse function derivatives evaluated from point data, logarithmic differentiation for variable exponents, and inverse trig derivatives with algebraic simplification. Another major theme is interpretation: once you compute a derivative, you may need to interpret it as a slope or a rate of change, or use it to write a tangent line.

Strategy for choosing a method (structure-first thinking)

A reliable workflow is to identify the outermost structure first.

  1. If %%LATEX337%% and %%LATEX338%% are mixed, plan for implicit differentiation.
  2. If you see a function inside another function, you will almost certainly use the Chain Rule.
  3. If two expressions are multiplied, use product rule unless it’s clearly easier to multiply out first.
  4. If there is a variable in an exponent (or a messy product/quotient of powered factors), consider logarithmic differentiation.
  5. If you’re finding the derivative at a point, it can be efficient to plug in the point once you have a usable expression (and sometimes earlier) to avoid unnecessary algebra.

Worked example 1: Implicit + trig + chain rule

Differentiate implicitly:

\sin(xy)=x

Differentiate both sides with respect to %%LATEX340%%. The left side needs Chain Rule because the input is %%LATEX341%%:

\cos(xy)\cdot\frac{d}{dx}(xy)=1

Differentiate xy with product rule:

\frac{d}{dx}(xy)=x\frac{dy}{dx}+y

So:

\cos(xy)(x\frac{dy}{dx}+y)=1

Solve for \frac{dy}{dx}:

x\cos(xy)\frac{dy}{dx}+y\cos(xy)=1

x\cos(xy)\frac{dy}{dx}=1-y\cos(xy)

\frac{dy}{dx}=\frac{1-y\cos(xy)}{x\cos(xy)}

A common mistake is differentiating %%LATEX350%% as %%LATEX351%% and stopping, forgetting to multiply by \frac{d}{dx}(xy).

Worked example 2: Derivative of an inverse function from an implicit relation

Suppose f is differentiable and you are told:

f(1)=2

and f satisfies:

x^2+f(x)^2=5

Find \left(f^{-1}\right)'(2).

Differentiate implicitly:

2x+2f(x)f'(x)=0

So:

f'(x)=-\frac{x}{f(x)}

Evaluate at %%LATEX360%% using %%LATEX361%%:

f'(1)=-\frac{1}{2}

Now use the inverse derivative relationship. Since %%LATEX363%%, we know %%LATEX364%%, and:

\left(f^{-1}\right)'(2)=\frac{1}{f'(1)}

Thus:

\left(f^{-1}\right)'(2)=-2

This is very AP-style because it links implicit differentiation, evaluation at a point, and inverse derivatives.

Worked example 3: Logarithmic differentiation with an inverse trig component

Differentiate:

y=(\arcsin(x))^x

Take logs:

\ln(y)=\ln\left((\arcsin(x))^x\right)

Bring exponent down:

\ln(y)=x\ln(\arcsin(x))

Differentiate both sides:

\frac{1}{y}\frac{dy}{dx}=\frac{d}{dx}(x\ln(\arcsin(x)))

Product rule:

\frac{d}{dx}(x\ln(\arcsin(x)))=\ln(\arcsin(x))+x\frac{d}{dx}(\ln(\arcsin(x)))

Chain rule for the log:

\frac{d}{dx}(\ln(\arcsin(x)))=\frac{1}{\arcsin(x)}\cdot\frac{1}{\sqrt{1-x^2}}

So:

\frac{1}{y}\frac{dy}{dx}=\ln(\arcsin(x))+\frac{x}{\arcsin(x)\sqrt{1-x^2}}

Multiply by y=(\arcsin(x))^x:

\frac{dy}{dx}=(\arcsin(x))^x\left(\ln(\arcsin(x))+\frac{x}{\arcsin(x)\sqrt{1-x^2}}\right)

Common mistakes include differentiating %%LATEX376%% as %%LATEX377%% (forgetting the derivative of %%LATEX378%%), or trying to use the power rule directly on %%LATEX379%%.

Exam Focus
  • Typical question patterns: Differentiate an expression that requires picking the correct outermost rule (product/quotient/log differentiation) and then using Chain Rule internally. Use implicit differentiation to find a derivative and then evaluate at a point on the curve. Combine inverse function derivative facts with information given as values, tables, or implicit relationships.
  • Common mistakes: Choosing an inefficient method (for example, using quotient rule on an expression where logarithmic differentiation is cleaner). Failing to track what depends on %%LATEX380%% (treating %%LATEX381%% or %%LATEX382%% as constants in implicit problems). Mixing up evaluation points for inverse derivatives. Also, when evaluating derivatives at a point, check whether parts of the expression become %%LATEX383%% or 1, and take advantage of that to simplify your arithmetic; with practice, you can mentally take certain derivatives quickly.