Unit 3: Differentiation: Composite, Implicit, and Inverse Functions

Composite Functions and the Chain Rule

What a composite function is (and why you care)

A composite function is what you get when you “plug one function into another.” If you have two functions ff and gg, then the composite fgf \circ g is defined by

(fg)(x)=f(g(x))(f \circ g)(x) = f(g(x))

You can think of this as a two-step machine: start with input xx, apply gg to get g(x)g(x), then apply ff to that result to get f(g(x))f(g(x)). Composite functions show up constantly in modeling because real relationships are often built in layers. For example, if temperature TT depends on time tt and pressure PP depends on temperature, then pressure depends on time through P(T(t))P(T(t)). If the side length of a square depends on time and area depends on side length, then area depends on time as a composite.

When you differentiate, those layers don’t “ignore” each other. The derivative must account for how a change in xx changes the inner layer, which then changes the outer layer.

The core idea behind the Chain Rule

The Chain Rule is the differentiation rule for composites:

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

Conceptually, it is “a rate multiplied by a rate.” The factor g(x)g'(x) tells you how fast the inner output g(x)g(x) changes as xx changes. The factor f(g(x))f'(g(x)) tells you how sensitive the outer function ff is to changes in its input, evaluated at the current inner value.

A reliable wording is:

Derivative of the outside (evaluated at the inside) times derivative of the inside.

If you like Leibniz notation, the same idea is captured by

dydx=dydududx\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}

This form is especially helpful later when derivatives represent rates.

Notation you’ll see on exams

AP problems use multiple notations for derivatives and composition, and you should be comfortable switching between them.

IdeaCommon notations
Composite functionf(g(x))f(g(x)), (fg)(x)(f \circ g)(x)
Derivative of yy with respect to xxdydx\frac{dy}{dx}, yy'
Derivative operatorddx\frac{d}{dx}

For instance, ddx[f(g(x))]\frac{d}{dx}[f(g(x))] and (f(g(x)))(f(g(x)))' mean the same thing.

How to apply the Chain Rule (a reliable process)

When you differentiate a layered expression, identify the layers and apply the Chain Rule repeatedly if needed.

A dependable approach is:

  1. Name the inside mentally (for example, let u=g(x)u=g(x)).
  2. Differentiate the outside with respect to uu.
  3. Multiply by dudx\frac{du}{dx}.

A personal memory trick some students use is “douter, inner, dinner”: differentiate the outer function, keep the inner function unchanged, then multiply by the derivative of the inner. In power-chain situations, this feels like: “drop the power down to the outside of the parentheses, leave the inside alone, then multiply by the derivative of the inside.”

Example 1: A power of a polynomial

Differentiate

y=(3x2+1)5y = (3x^2 + 1)^5

Identify layers: inner u=3x2+1u = 3x^2 + 1 and outer y=u5y = u^5. Then

dydu=5u4\frac{dy}{du} = 5u^4

and

dudx=6x\frac{du}{dx} = 6x

Multiply and substitute back:

dydx=5(3x2+1)46x=30x(3x2+1)4\frac{dy}{dx} = 5(3x^2 + 1)^4 \cdot 6x = 30x(3x^2 + 1)^4

A common mistake is to alter the inside (for example, incorrectly turning it into 5(3x2)45(3x^2)^4). The inside stays intact; you only multiply by its derivative.

Example 2: Trig composite

Differentiate

y=sin(x2)y = \sin(x^2)

Inner u=x2u=x^2, outer sin(u)\sin(u), so

dydx=cos(x2)2x\frac{dy}{dx} = \cos(x^2) \cdot 2x

Thus

y=2xcos(x2)y' = 2x\cos(x^2)

The most common error is writing cos(x)\cos(x) instead of cos(x2)\cos(x^2). The cosine must be evaluated at the entire inside.

Example 3: Multiple layers (Chain Rule more than once)

Differentiate

y=e1+xy = e^{\sqrt{1 + x}}

Use layers: v=1+xv=1+x, then u=vu=\sqrt{v}, then y=euy=e^u. Compute derivatives:

dydu=eu\frac{dy}{du} = e^u

dudv=12v1/2\frac{du}{dv} = \frac{1}{2}v^{-1/2}

dvdx=1\frac{dv}{dx} = 1

Multiply:

dydx=e1+x12(1+x)1/2\frac{dy}{dx} = e^{\sqrt{1+x}} \cdot \frac{1}{2}(1+x)^{-1/2}

A cleaner form is

dydx=e1+x21+x\frac{dy}{dx} = \frac{e^{\sqrt{1+x}}}{2\sqrt{1+x}}

Chain Rule as a “rates” statement (helpful intuition)

Interpreting derivatives as rates, the Chain Rule can be read as

dydx=dydududx\frac{dy}{dx} = \frac{dy}{du}\frac{du}{dx}

This acts like a unit conversion: it converts “per uu” into “per xx” using how fast uu changes with respect to xx.

Exam Focus
  • Typical question patterns:
    • Differentiate a function with nested structure such as powers, trig of polynomials, exponentials of trig, or several layers.
    • Given ff' and gg' (sometimes as tables or graphs), find (fg)(a)(f \circ g)'(a).
    • Differentiate and then evaluate at a specific xx value.
  • Common mistakes:
    • Forgetting to multiply by the derivative of the inside (doing “power rule only” on a composite).
    • Evaluating the outer derivative at xx instead of at g(x)g(x) (for example, writing f(x)g(x)f'(x)g'(x) instead of f(g(x))g(x)f'(g(x))g'(x)).
    • Losing parentheses: rewriting cos(x2)2x\cos(x^2)\cdot 2x as cos(x)2x\cos(x)\cdot 2x.

Implicit Differentiation

Explicit vs. implicit relationships

Sometimes yy is given explicitly as a function of xx, such as

y=x2+3xy = x^2 + 3x

Then differentiating is direct. But often xx and yy are tied together in an equation where yy is not isolated, like

x2+y2=25x^2 + y^2 = 25

This describes a circle, which has two branches for yy (top and bottom). Solving for yy first can be messy.

Implicit differentiation means differentiating both sides with respect to xx while remembering that yy is really y(x)y(x). The AP exam loves to test this, especially when the relationship forces you to combine implicit differentiation with product, quotient, and chain rule ideas.

The key idea: yy depends on xx

Whenever you differentiate something involving yy with respect to xx, you must apply the Chain Rule. For example,

ddx[y2]=2ydydx\frac{d}{dx}[y^2] = 2y\frac{dy}{dx}

A helpful way to remember this is: if the variable inside the expression does not match dxdx, you must follow it with the derivative of that variable with respect to xx.

Also note the reciprocal relationship:

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

Sometimes problems or solution strategies use this reciprocal idea, but the standard workflow in this unit is to find dydx\frac{dy}{dx}.

The basic workflow for implicit differentiation
  1. Differentiate both sides with respect to xx.
  2. Every time you differentiate a term involving yy, include dydx\frac{dy}{dx} via the Chain Rule.
  3. Collect all terms with dydx\frac{dy}{dx} on one side.
  4. Factor out dydx\frac{dy}{dx} and solve.

You can and should apply other differentiation rules as needed (product rule, quotient rule, chain rule on trig/exponentials/logs, etc.).

Example 1: Circle slope and tangent line

Given

x2+y2=25x^2 + y^2 = 25

Differentiate both sides:

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

Solve for dydx\frac{dy}{dx}:

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

At the point (3,4)(3,4), substitute x=3x=3 and y=4y=4:

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

So the slope of the tangent line is 34-\frac{3}{4}. Using point-slope form with point (3,4)(3,4),

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

A frequent error is writing ddx[y2]=2y\frac{d}{dx}[y^2]=2y instead of 2ydydx2y\frac{dy}{dx}.

Example 2: Products and trig of yy

Differentiate implicitly:

xy+sin(y)=x2xy + \sin(y) = x^2

For xyxy, use product rule because y=y(x)y=y(x):

ddx[xy]=xdydx+y\frac{d}{dx}[xy] = x\frac{dy}{dx} + y

For sin(y)\sin(y), use Chain Rule:

ddx[sin(y)]=cos(y)dydx\frac{d}{dx}[\sin(y)] = \cos(y)\frac{dy}{dx}

And ddx[x2]=2x\frac{d}{dx}[x^2]=2x. Putting it together:

xdydx+y+cos(y)dydx=2xx\frac{dy}{dx} + y + \cos(y)\frac{dy}{dx} = 2x

Group the dydx\frac{dy}{dx} terms and solve:

dydx=2xyx+cos(y)\frac{dy}{dx} = \frac{2x - y}{x + \cos(y)}

Two common pitfalls are forgetting the product rule on xyxy and forgetting the extra dydx\frac{dy}{dx} factor on cos(y)dydx\cos(y)\frac{dy}{dx}.

Tangent lines from implicit differentiation

Once you have dydx\frac{dy}{dx}, tangent lines work exactly the same as in explicit problems: evaluate the slope at the point, then use point-slope form. If the point is (x1,y1)(x_1,y_1) and the slope is mm, then

yy1=m(xx1)y - y_1 = m(x - x_1)

Second derivatives implicitly (a common BC extension)

To find d2ydx2\frac{d^2y}{dx^2}, first find dydx\frac{dy}{dx}, then differentiate again with respect to xx, still treating yy as a function of xx.

From the circle example,

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

Rewrite as a product:

dydx=xy1\frac{dy}{dx} = -x y^{-1}

Differentiate:

d2ydx2=(y1+x(1)y2dydx)\frac{d^2y}{dx^2} = -\left(y^{-1} + x \cdot (-1)y^{-2}\frac{dy}{dx}\right)

So

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

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

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

Exam Focus
  • Typical question patterns:
    • Find dydx\frac{dy}{dx} for an equation mixing xx and yy (polynomials, trig, exponentials, logs).
    • Find the slope or equation of a tangent line to an implicitly defined curve at a given point.
    • (BC-level common) Find d2ydx2\frac{d^2y}{dx^2} implicitly or evaluate it at a point.
  • Common mistakes:
    • Dropping dydx\frac{dy}{dx} when differentiating expressions containing yy.
    • Forgetting product/quotient rules when factors include yy.
    • Solving for dydx\frac{dy}{dx} but leaving it scattered on both sides (not isolating and factoring cleanly).

Derivatives of Inverse Functions

What an inverse function really is

An inverse function reverses the action of a function. If ff is one-to-one on an interval, then its inverse f1f^{-1} satisfies

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

and

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

A crucial point is that f1f^{-1} is not the reciprocal function:

f1(x)1f(x)f^{-1}(x) \ne \frac{1}{f(x)}

except in special cases.

Why inverse derivatives matter

In applications you may know how output changes with input (information about f(x)f'(x)) but need how input changes with output (information about (f1)(x)(f^{-1})'(x)). This comes up in calibration curves, unit conversions through a nonlinear model, and many AP-style “given table values” questions.

The inverse derivative formula (and where it comes from)

Start from

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

Differentiate using the Chain Rule:

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

Solve:

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

A point-specific version is often the fastest way on exams. If f(a)=bf(a)=b, then f1(b)=af^{-1}(b)=a and

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

A common way to think about this at a point is: if the point (a,b)(a,b) lies on y=f(x)y=f(x), then the point (b,a)(b,a) lies on y=f1(x)y=f^{-1}(x), and the slope at the inverse point is the reciprocal of the slope at the original point.

When the formula makes sense (conditions)

For the inverse derivative to exist nicely at a point, you need:

  • ff differentiable at aa.
  • f(a)0f'(a) \ne 0 (otherwise the inverse would have a vertical tangent there).
  • ff one-to-one in an interval around aa so the inverse is actually a function.
Example 1: Polynomial with easy inversion data

Let

f(x)=x3+2f(x) = x^3 + 2

Find (f1)(10)(f^{-1})'(10).

First find the corresponding xx value: f1(10)f^{-1}(10) is the xx such that f(x)=10f(x)=10.

x3+2=10x^3 + 2 = 10

x3=8x^3 = 8

x=2x = 2

So f(2)=10f(2)=10. Now compute f(x)=3x2f'(x)=3x^2, hence f(2)=12f'(2)=12. Therefore

(f1)(10)=112(f^{-1})'(10) = \frac{1}{12}

A common mistake is plugging 1010 into ff' instead of evaluating at the corresponding original input 22.

Example 2: Using a table of values (typical AP style)

If f(4)=7f(4)=7 and f(4)=5f'(4)=5 and ff is one-to-one, then f1(7)=4f^{-1}(7)=4 and

(f1)(7)=15(f^{-1})'(7) = \frac{1}{5}

This can be done without finding a formula for f1f^{-1}.

Example 3: Point-and-slope “swap” language

If you are told you want the derivative of the inverse at an input like 11 (for example, g(1)g'(1) where g=f1g=f^{-1}), first identify the corresponding point on ff. If the point (1,2)(1,2) lies on the inverse, then (2,1)(2,1) lies on the original. So you would find f(2)f'(2) and take its reciprocal to get g(1)g'(1). This is just the point-specific formula written in coordinate language.

Geometric meaning: reflection across y=xy=x

The graph of y=f1(x)y=f^{-1}(x) is the reflection of y=f(x)y=f(x) across the line y=xy=x. Corresponding slopes are reciprocals. A horizontal tangent on ff corresponds to a vertical tangent on f1f^{-1}, matching the condition that f(a)=0f'(a)=0 makes the reciprocal undefined.

It’s common for an AP test to include only a small number of inverse-derivative questions (often 1 or 2), so the goal is to know the formula and execute cleanly when it appears.

Exam Focus
  • Typical question patterns:
    • Given f(a)=bf(a)=b and f(a)f'(a), find (f1)(b)(f^{-1})'(b).
    • Given a table or graph of ff and ff', compute a derivative of the inverse at a specified value.
    • Explain what it means for ff to be one-to-one and why that matters.
  • Common mistakes:
    • Confusing inverse with reciprocal: treating f1(x)f^{-1}(x) as 1f(x)\frac{1}{f(x)}.
    • Evaluating ff' at the wrong number (using bb instead of aa).
    • Forgetting the condition f(a)0f'(a)\ne 0 and writing an inverse derivative where the slope would be vertical.

Inverse Trigonometric Functions and Their Derivatives

What inverse trig functions are (and why they need restricted domains)

Trigonometric functions like sin(x)\sin(x) are not one-to-one over all real numbers, so to define inverses we restrict domains to get principal-value ranges.

  • Arcsine: y=arcsin(x)y = \arcsin(x) means sin(y)=x\sin(y)=x with

π2yπ2-\frac{\pi}{2} \le y \le \frac{\pi}{2}

  • Arccosine: y=arccos(x)y = \arccos(x) means cos(y)=x\cos(y)=x with

0yπ0 \le y \le \pi

  • Arctangent: y=arctan(x)y = \arctan(x) means tan(y)=x\tan(y)=x with

π2<y<π2-\frac{\pi}{2} < y < \frac{\pi}{2}

Many students choose to memorize the derivative formulas directly, but you can also rebuild them using implicit differentiation plus trig identities.

Derivative formulas

The most common inverse trig derivatives are:

ddx[arcsin(x)]=11x2\frac{d}{dx}[\arcsin(x)] = \frac{1}{\sqrt{1-x^2}}

ddx[arccos(x)]=11x2\frac{d}{dx}[\arccos(x)] = -\frac{1}{\sqrt{1-x^2}}

ddx[arctan(x)]=11+x2\frac{d}{dx}[\arctan(x)] = \frac{1}{1+x^2}

Less frequently (but still standard):

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

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

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

The absolute value in the \arcsec and \arccsc derivatives matters; dropping it can make the derivative wrong for negative inputs.

Where these derivatives come from (implicit differentiation in action)

To see the mechanism, derive the arcsine rule. Let

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

which means

sin(y)=x\sin(y) = x

Differentiate:

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

So

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

Rewrite cos(y)\cos(y) in terms of xx. Since sin(y)=x\sin(y)=x,

cos2(y)=1sin2(y)=1x2\cos^2(y) = 1 - \sin^2(y) = 1 - x^2

On the principal range of arcsin\arcsin, cos(y)0\cos(y)\ge 0, so

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

Thus

ddx[arcsin(x)]=11x2\frac{d}{dx}[\arcsin(x)] = \frac{1}{\sqrt{1-x^2}}

This highlights two important habits: use implicit differentiation to connect inverse functions back to familiar ones, and use the principal-value range to choose the correct sign when taking square roots.

Using the Chain Rule with inverse trig functions

Most exam questions use inverse trig functions composed with another function. For example, if u=g(x)u=g(x), then

ddx[arcsin(u)]=11u2dudx\frac{d}{dx}[\arcsin(u)] = \frac{1}{\sqrt{1-u^2}}\cdot \frac{du}{dx}

So

ddx[arcsin(g(x))]=g(x)1(g(x))2\frac{d}{dx}[\arcsin(g(x))] = \frac{g'(x)}{\sqrt{1-(g(x))^2}}

Example 1: arctan\arctan composite

Differentiate

y=arctan(2x)y = \arctan(2x)

Outer derivative is 11+u2\frac{1}{1+u^2} and inner derivative is 22, so

y=21+4x2y' = \frac{2}{1+4x^2}

Example 2: arcsin\arcsin with a polynomial inside

Differentiate

y=arcsin(x2)y = \arcsin(x^2)

Chain Rule gives

y=11(x2)22x=2x1x4y' = \frac{1}{\sqrt{1-(x^2)^2}}\cdot 2x = \frac{2x}{\sqrt{1-x^4}}

A common error is using 1x2\sqrt{1-x^2} in the denominator instead of 1x4\sqrt{1-x^4}.

Example 3: \arcsec and the absolute value

Differentiate

y = \arcsec(3x)

Using Chain Rule with the \arcsec derivative,

y=13x(3x)213y' = \frac{1}{|3x|\sqrt{(3x)^2-1}}\cdot 3

So

y=33x9x21y' = \frac{3}{|3x|\sqrt{9x^2-1}}

Simplifying 33x\frac{3}{|3x|} to 1x\frac{1}{|x|} (for x0x\ne 0) gives

y=1x9x21y' = \frac{1}{|x|\sqrt{9x^2-1}}

Students often drop the absolute value, which changes sign behavior for negative xx.

Exam Focus
  • Typical question patterns:
    • Differentiate expressions involving arcsin\arcsin, arccos\arccos, arctan\arctan with an inner function (Chain Rule).
    • Use implicit differentiation reasoning (sometimes explicitly asked) to justify an inverse trig derivative.
    • Evaluate derivatives at a given xx where the inverse trig function is defined.
  • Common mistakes:
    • Mixing up the three main formulas, especially the negative sign for arccos\arccos.
    • Forgetting the Chain Rule (derivative of inside).
    • For \arcsec and \arccsc, omitting x|x| in the denominator.

Logarithmic Differentiation (and why it’s really an implicit method)

When ordinary rules become awkward

Some functions are differentiable using repeated product and chain rules, but the algebra becomes error-prone. Common triggers include products of many factors, complicated quotients, and powers where both base and exponent involve xx (like xxx^x).

Logarithmic differentiation simplifies the algebra by taking natural logs first. Logs turn products into sums, quotients into differences, and powers into multipliers, changing “messy multiplication structure” into “clean addition structure.”

The core procedure

Suppose

y=f(x)y = f(x)

  1. Take natural logs:

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

  1. Use log properties to simplify.
  2. Differentiate both sides with respect to xx. The left side requires Chain Rule:

ddx[ln(y)]=1ydydx\frac{d}{dx}[\ln(y)] = \frac{1}{y}\frac{dy}{dx}

  1. Solve for dydx\frac{dy}{dx} and substitute back for yy.

This is “implicit” because after taking logs, yy is temporarily not isolated.

Example 1: Differentiating y=xxy = x^x

Let

y=xxy = x^x

Take logs:

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

Use the power property:

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

Differentiate:

1ydydx=ddx[xln(x)]\frac{1}{y}\frac{dy}{dx} = \frac{d}{dx}[x\ln(x)]

Product rule gives

ddx[xln(x)]=ln(x)+1\frac{d}{dx}[x\ln(x)] = \ln(x) + 1

So

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

Multiply by yy and substitute y=xxy=x^x:

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

A common mistake is trying to apply the ordinary power rule to xxx^x.

Example 2: A complicated power and product

Differentiate

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

Take logs and use log properties:

ln(y)=ln((x2+1)3)+ln((x2)1/2)ln((3x1)5)\ln(y) = \ln((x^2+1)^3) + \ln((x-2)^{1/2}) - \ln((3x-1)^5)

Bring exponents down:

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

Differentiate:

1ydydx=32xx2+1+121x2533x1\frac{1}{y}\frac{dy}{dx} = 3\cdot \frac{2x}{x^2+1} + \frac{1}{2}\cdot \frac{1}{x-2} - 5\cdot \frac{3}{3x-1}

So

1ydydx=6xx2+1+12(x2)153x1\frac{1}{y}\frac{dy}{dx} = \frac{6x}{x^2+1} + \frac{1}{2(x-2)} - \frac{15}{3x-1}

Finally,

dydx=y(6xx2+1+12(x2)153x1)\frac{dy}{dx} = y\left(\frac{6x}{x^2+1} + \frac{1}{2(x-2)} - \frac{15}{3x-1}\right)

and substitute for yy if desired.

Two common issues are forgetting the left side becomes 1ydydx\frac{1}{y}\frac{dy}{dx} and mishandling log properties (especially the subtraction coming from division).

Why logarithmic differentiation fits this unit

Logarithmic differentiation blends composite differentiation (Chain Rule for logs and inner functions) with implicit differentiation (because of ln(y)\ln(y)). So it naturally belongs alongside the Unit 3 toolkit.

Exam Focus
  • Typical question patterns:
    • Differentiate functions like xxx^x, (sin(x))x(\sin(x))^x, or products/quotients with multiple factors and powers.
    • Show or justify steps using log properties before differentiating.
    • Find yy' and sometimes evaluate at a given xx.
  • Common mistakes:
    • Misusing log properties (especially turning ln(a+b)\ln(a+b) into ln(a)+ln(b)\ln(a)+\ln(b), which is false).
    • Forgetting to multiply by yy at the end to solve for dydx\frac{dy}{dx}.
    • Applying restrictions incorrectly: logs require positive arguments in the real-number setting.

Integrating the Skills: Multi-Step Differentiation Problems

Why Unit 3 skills are often combined

AP problems rarely announce which rule to use. Instead, you’re expected to diagnose structure and choose tools:

  • If there’s nesting, use the Chain Rule.
  • If xx and yy are tangled together, use implicit differentiation.
  • If an inverse relationship is involved, consider the inverse derivative formula.
  • If exponents/products are messy, logarithmic differentiation may simplify the work.

The best strategy is not guessing a rule, but recognizing the structure.

Strategy: spotting the “outermost operation”

A practical way to avoid mistakes is to ask: “What is the last operation applied?” For (3x2+1)5(3x^2+1)^5 the last operation is “raise to the 5th power.” For sin(x2)\sin(x^2) it is “sine.” For ln(1+x)\ln(\sqrt{1+x}) it is “log.” Once you identify the outermost operation, differentiate it and multiply by the derivative of what’s inside.

Worked Example 1: Chain Rule inside implicit differentiation

Find dydx\frac{dy}{dx} if

sin(xy)+y3=4\sin(xy) + y^3 = 4

Differentiate both sides with respect to xx. For sin(xy)\sin(xy), use Chain Rule with inner u=xyu=xy, and for u=xyu=xy use product rule:

ddx[sin(xy)]=cos(xy)(xdydx+y)\frac{d}{dx}[\sin(xy)] = \cos(xy)(x\frac{dy}{dx} + y)

For y3y^3:

ddx[y3]=3y2dydx\frac{d}{dx}[y^3] = 3y^2\frac{dy}{dx}

So

cos(xy)(xdydx+y)+3y2dydx=0\cos(xy)(x\frac{dy}{dx} + y) + 3y^2\frac{dy}{dx} = 0

Collect dydx\frac{dy}{dx}:

(xcos(xy)+3y2)dydx=ycos(xy)\left(x\cos(xy) + 3y^2\right)\frac{dy}{dx} = -y\cos(xy)

Thus

dydx=ycos(xy)xcos(xy)+3y2\frac{dy}{dx} = \frac{-y\cos(xy)}{x\cos(xy) + 3y^2}

This is a good reminder that implicit differentiation does not replace other rules; it forces you to combine them.

Worked Example 2: Tangent line to an implicitly defined curve

Find the equation of the tangent line to

x2y+arctan(y)=5x^2y + \arctan(y) = 5

at (1,2)(1,2).

Differentiate implicitly. For x2yx^2y (treat as x2yx^2\cdot y):

ddx[x2y]=2xy+x2dydx\frac{d}{dx}[x^2y] = 2xy + x^2\frac{dy}{dx}

For arctan(y)\arctan(y):

ddx[arctan(y)]=11+y2dydx\frac{d}{dx}[\arctan(y)] = \frac{1}{1+y^2}\frac{dy}{dx}

So

2xy+x2dydx+11+y2dydx=02xy + x^2\frac{dy}{dx} + \frac{1}{1+y^2}\frac{dy}{dx} = 0

Solve for dydx\frac{dy}{dx}:

dydx=2xyx2+11+y2\frac{dy}{dx} = \frac{-2xy}{x^2 + \frac{1}{1+y^2}}

Evaluate at (1,2)(1,2):

m=2(1)(2)1+15=103m = \frac{-2(1)(2)}{1 + \frac{1}{5}} = -\frac{10}{3}

Tangent line:

y2=103(x1)y - 2 = -\frac{10}{3}(x - 1)

A common mistake here is forgetting the Chain Rule factor on arctan(y)\arctan(y).

Worked Example 3: Derivative of an inverse without finding the inverse explicitly

Suppose ff is differentiable and one-to-one, with f(2)=5f(2)=5 and f(2)=3f'(2)=-3. Find (f1)(5)(f^{-1})'(5) and interpret the sign.

Because f(2)=5f(2)=5, the corresponding inverse input is 55 and

(f1)(5)=1f(2)=13(f^{-1})'(5) = \frac{1}{f'(2)} = -\frac{1}{3}

The negative sign means the inverse function is decreasing at x=5x=5. This matches the reflection idea: decreasing behavior is preserved between a function and its inverse.

How free-response questions tend to combine these ideas

A common multi-part free-response structure is:

  • Differentiate (Chain Rule or implicit differentiation).
  • Evaluate at a point (careful substitution and arithmetic).
  • Find a tangent (or normal) line or interpret the meaning.
  • Use given values of ff and ff' to compute an inverse derivative without solving for f1f^{-1}.

Organization matters: keep parentheses, keep expressions exact, and avoid “oversimplifying” in ways that destroy structure.

Exam Focus
  • Typical question patterns:
    • Differentiate a relationship that forces you to combine Chain Rule with implicit differentiation (trig or inverse trig included).
    • Find a tangent line/normal line to an implicitly defined curve at a specified point.
    • Use given values of ff and ff' to compute an inverse derivative without solving for f1f^{-1}.
  • Common mistakes:
    • Treating yy as a constant mid-problem (dropping dydx\frac{dy}{dx} inconsistently).
    • Algebra errors when isolating dydx\frac{dy}{dx} (especially with fractions like 11+y2\frac{1}{1+y^2}).
    • Using the wrong corresponding input for inverse derivative questions (mixing up aa and bb in f(a)=bf(a)=b).

Problem-Solving Hints and Habits

Quick decision rules you can apply immediately

When you are deciding how to proceed on a derivative problem, these habits keep you moving efficiently and reduce errors.

  • When two terms are multiplied together, use product rule unless it’s easier to multiply it out.
  • If you see a function within another function, you will almost certainly have to use Chain Rule.
  • If there are xx and yy terms mixed together, you will need to use implicit differentiation.
  • If you’re finding the derivative at a point, plug it in and avoid solving it out when possible.
  • When evaluating derivatives at a point, look to see if the terms become one or zero.
  • You can mentally take certain derivatives once you are fluent (for example, common trig and power derivatives).
  • If it is required to take a second derivative, simplify the first derivative before you start.
Exam Focus
  • Typical question patterns:
    • “Evaluate yy' at x=ax=a” problems where plugging in early saves time and reduces algebra.
    • Multi-rule derivatives where recognizing product vs. chain vs. implicit is the real skill being tested.
  • Common mistakes:
    • Doing extra algebra that creates mistakes when the problem only needed evaluation at a single point.
    • Jumping into differentiation without first identifying whether the structure is composite, implicit, inverse-based, or log-friendly.
    • Neglecting simplification before a second derivative, which makes the second differentiation unnecessarily error-prone.