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 f and g, then the composite f \circ g is defined by
(f \circ g)(x) = f(g(x))
You can think of this as a two-step machine: start with input x, apply g to get g(x), then apply f to that result to get f(g(x)). Composite functions show up constantly in modeling because real relationships are often built in layers. For example, if temperature T depends on time t and pressure P depends on temperature, then pressure depends on time through 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 x 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:
\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) tells you how fast the inner output g(x) changes as x changes. The factor f'(g(x)) tells you how sensitive the outer function f 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
\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.
| Idea | Common notations |
|---|---|
| Composite function | f(g(x)), (f \circ g)(x) |
| Derivative of y with respect to x | \frac{dy}{dx}, y' |
| Derivative operator | \frac{d}{dx} |
For instance, \frac{d}{dx}[f(g(x))] and (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:
- Name the inside mentally (for example, let u=g(x)).
- Differentiate the outside with respect to u.
- Multiply by \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 = (3x^2 + 1)^5
Identify layers: inner u = 3x^2 + 1 and outer y = u^5. Then
\frac{dy}{du} = 5u^4
and
\frac{du}{dx} = 6x
Multiply and substitute back:
\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(3x^2)^4). The inside stays intact; you only multiply by its derivative.
Example 2: Trig composite
Differentiate
y = \sin(x^2)
Inner u=x^2, outer \sin(u), so
\frac{dy}{dx} = \cos(x^2) \cdot 2x
Thus
y' = 2x\cos(x^2)
The most common error is writing \cos(x) instead of \cos(x^2). The cosine must be evaluated at the entire inside.
Example 3: Multiple layers (Chain Rule more than once)
Differentiate
y = e^{\sqrt{1 + x}}
Use layers: v=1+x, then u=\sqrt{v}, then y=e^u. Compute derivatives:
\frac{dy}{du} = e^u
\frac{du}{dv} = \frac{1}{2}v^{-1/2}
\frac{dv}{dx} = 1
Multiply:
\frac{dy}{dx} = e^{\sqrt{1+x}} \cdot \frac{1}{2}(1+x)^{-1/2}
A cleaner form is
\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
\frac{dy}{dx} = \frac{dy}{du}\frac{du}{dx}
This acts like a unit conversion: it converts “per u” into “per x” using how fast u changes with respect to x.
Exam Focus
- Typical question patterns:
- Differentiate a function with nested structure such as powers, trig of polynomials, exponentials of trig, or several layers.
- Given f' and g' (sometimes as tables or graphs), find (f \circ g)'(a).
- Differentiate and then evaluate at a specific x value.
- Common mistakes:
- Forgetting to multiply by the derivative of the inside (doing “power rule only” on a composite).
- Evaluating the outer derivative at x instead of at g(x) (for example, writing f'(x)g'(x) instead of f'(g(x))g'(x)).
- Losing parentheses: rewriting \cos(x^2)\cdot 2x as \cos(x)\cdot 2x.
Implicit Differentiation
Explicit vs. implicit relationships
Sometimes y is given explicitly as a function of x, such as
y = x^2 + 3x
Then differentiating is direct. But often x and y are tied together in an equation where y is not isolated, like
x^2 + y^2 = 25
This describes a circle, which has two branches for y (top and bottom). Solving for y first can be messy.
Implicit differentiation means differentiating both sides with respect to x while remembering that y is really 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: y depends on x
Whenever you differentiate something involving y with respect to x, you must apply the Chain Rule. For example,
\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 dx, you must follow it with the derivative of that variable with respect to x.
Also note the reciprocal relationship:
\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 \frac{dy}{dx}.
The basic workflow for implicit differentiation
- Differentiate both sides with respect to x.
- Every time you differentiate a term involving y, include \frac{dy}{dx} via the Chain Rule.
- Collect all terms with \frac{dy}{dx} on one side.
- Factor out \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
x^2 + y^2 = 25
Differentiate both sides:
2x + 2y\frac{dy}{dx} = 0
Solve for \frac{dy}{dx}:
\frac{dy}{dx} = -\frac{x}{y}
At the point (3,4), substitute x=3 and y=4:
\frac{dy}{dx} = -\frac{3}{4}
So the slope of the tangent line is -\frac{3}{4}. Using point-slope form with point (3,4),
y - 4 = -\frac{3}{4}(x - 3)
A frequent error is writing \frac{d}{dx}[y^2]=2y instead of 2y\frac{dy}{dx}.
Example 2: Products and trig of y
Differentiate implicitly:
xy + \sin(y) = x^2
For xy, use product rule because y=y(x):
\frac{d}{dx}[xy] = x\frac{dy}{dx} + y
For \sin(y), use Chain Rule:
\frac{d}{dx}[\sin(y)] = \cos(y)\frac{dy}{dx}
And \frac{d}{dx}[x^2]=2x. Putting it together:
x\frac{dy}{dx} + y + \cos(y)\frac{dy}{dx} = 2x
Group the \frac{dy}{dx} terms and solve:
\frac{dy}{dx} = \frac{2x - y}{x + \cos(y)}
Two common pitfalls are forgetting the product rule on xy and forgetting the extra \frac{dy}{dx} factor on \cos(y)\frac{dy}{dx}.
Tangent lines from implicit differentiation
Once you have \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 (x_1,y_1) and the slope is m, then
y - y_1 = m(x - x_1)
Second derivatives implicitly (a common BC extension)
To find \frac{d^2y}{dx^2}, first find \frac{dy}{dx}, then differentiate again with respect to x, still treating y as a function of x.
From the circle example,
\frac{dy}{dx} = -\frac{x}{y}
Rewrite as a product:
\frac{dy}{dx} = -x y^{-1}
Differentiate:
\frac{d^2y}{dx^2} = -\left(y^{-1} + x \cdot (-1)y^{-2}\frac{dy}{dx}\right)
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}
Exam Focus
- Typical question patterns:
- Find \frac{dy}{dx} for an equation mixing x and y (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 \frac{d^2y}{dx^2} implicitly or evaluate it at a point.
- Common mistakes:
- Dropping \frac{dy}{dx} when differentiating expressions containing y.
- Forgetting product/quotient rules when factors include y.
- Solving for \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 f is one-to-one on an interval, then its inverse f^{-1} satisfies
f(f^{-1}(x)) = x
and
f^{-1}(f(x)) = x
A crucial point is that f^{-1} is not the reciprocal function:
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)) but need how input changes with output (information about (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(f^{-1}(x)) = x
Differentiate using the Chain Rule:
f'(f^{-1}(x)) \cdot (f^{-1})'(x) = 1
Solve:
(f^{-1})'(x) = \frac{1}{f'(f^{-1}(x))}
A point-specific version is often the fastest way on exams. If f(a)=b, then f^{-1}(b)=a and
(f^{-1})'(b) = \frac{1}{f'(a)}
A common way to think about this at a point is: if the point (a,b) lies on y=f(x), then the point (b,a) lies on 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:
- f differentiable at a.
- f'(a) \ne 0 (otherwise the inverse would have a vertical tangent there).
- f one-to-one in an interval around a so the inverse is actually a function.
Example 1: Polynomial with easy inversion data
Let
f(x) = x^3 + 2
Find (f^{-1})'(10).
First find the corresponding x value: f^{-1}(10) is the x such that f(x)=10.
x^3 + 2 = 10
x^3 = 8
x = 2
So f(2)=10. Now compute f'(x)=3x^2, hence f'(2)=12. Therefore
(f^{-1})'(10) = \frac{1}{12}
A common mistake is plugging 10 into f' instead of evaluating at the corresponding original input 2.
Example 2: Using a table of values (typical AP style)
If f(4)=7 and f'(4)=5 and f is one-to-one, then f^{-1}(7)=4 and
(f^{-1})'(7) = \frac{1}{5}
This can be done without finding a formula for f^{-1}.
Example 3: Point-and-slope “swap” language
If you are told you want the derivative of the inverse at an input like 1 (for example, g'(1) where g=f^{-1}), first identify the corresponding point on f. If the point (1,2) lies on the inverse, then (2,1) lies on the original. So you would find f'(2) and take its reciprocal to get g'(1). This is just the point-specific formula written in coordinate language.
Geometric meaning: reflection across y=x
The graph of y=f^{-1}(x) is the reflection of y=f(x) across the line y=x. Corresponding slopes are reciprocals. A horizontal tangent on f corresponds to a vertical tangent on f^{-1}, matching the condition that f'(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)=b and f'(a), find (f^{-1})'(b).
- Given a table or graph of f and f', compute a derivative of the inverse at a specified value.
- Explain what it means for f to be one-to-one and why that matters.
- Common mistakes:
- Confusing inverse with reciprocal: treating f^{-1}(x) as \frac{1}{f(x)}.
- Evaluating f' at the wrong number (using b instead of a).
- Forgetting the condition f'(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) 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) means \sin(y)=x with
-\frac{\pi}{2} \le y \le \frac{\pi}{2}
- Arccosine: y = \arccos(x) means \cos(y)=x with
0 \le y \le \pi
- Arctangent: y = \arctan(x) means \tan(y)=x with
-\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:
\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}
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)
which means
\sin(y) = x
Differentiate:
\cos(y)\frac{dy}{dx} = 1
So
\frac{dy}{dx} = \frac{1}{\cos(y)}
Rewrite \cos(y) in terms of x. Since \sin(y)=x,
\cos^2(y) = 1 - \sin^2(y) = 1 - x^2
On the principal range of \arcsin, \cos(y)\ge 0, so
\cos(y) = \sqrt{1-x^2}
Thus
\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), then
\frac{d}{dx}[\arcsin(u)] = \frac{1}{\sqrt{1-u^2}}\cdot \frac{du}{dx}
So
\frac{d}{dx}[\arcsin(g(x))] = \frac{g'(x)}{\sqrt{1-(g(x))^2}}
Example 1: \arctan composite
Differentiate
y = \arctan(2x)
Outer derivative is \frac{1}{1+u^2} and inner derivative is 2, so
y' = \frac{2}{1+4x^2}
Example 2: \arcsin with a polynomial inside
Differentiate
y = \arcsin(x^2)
Chain Rule gives
y' = \frac{1}{\sqrt{1-(x^2)^2}}\cdot 2x = \frac{2x}{\sqrt{1-x^4}}
A common error is using \sqrt{1-x^2} in the denominator instead of \sqrt{1-x^4}.
Example 3: \arcsec and the absolute value
Differentiate
y = \arcsec(3x)
Using Chain Rule with the \arcsec derivative,
y' = \frac{1}{|3x|\sqrt{(3x)^2-1}}\cdot 3
So
y' = \frac{3}{|3x|\sqrt{9x^2-1}}
Simplifying \frac{3}{|3x|} to \frac{1}{|x|} (for x\ne 0) gives
y' = \frac{1}{|x|\sqrt{9x^2-1}}
Students often drop the absolute value, which changes sign behavior for negative x.
Exam Focus
- Typical question patterns:
- Differentiate expressions involving \arcsin, \arccos, \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 x where the inverse trig function is defined.
- Common mistakes:
- Mixing up the three main formulas, especially the negative sign for \arccos.
- Forgetting the Chain Rule (derivative of inside).
- For \arcsec and \arccsc, omitting |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 x (like x^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)
- Take natural logs:
\ln(y) = \ln(f(x))
- Use log properties to simplify.
- Differentiate both sides with respect to x. The left side requires Chain Rule:
\frac{d}{dx}[\ln(y)] = \frac{1}{y}\frac{dy}{dx}
- Solve for \frac{dy}{dx} and substitute back for y.
This is “implicit” because after taking logs, y is temporarily not isolated.
Example 1: Differentiating y = x^x
Let
y = x^x
Take logs:
\ln(y) = \ln(x^x)
Use the power property:
\ln(y) = x\ln(x)
Differentiate:
\frac{1}{y}\frac{dy}{dx} = \frac{d}{dx}[x\ln(x)]
Product rule gives
\frac{d}{dx}[x\ln(x)] = \ln(x) + 1
So
\frac{1}{y}\frac{dy}{dx} = \ln(x) + 1
Multiply by y and substitute y=x^x:
\frac{dy}{dx} = x^x(\ln(x)+1)
A common mistake is trying to apply the ordinary power rule to x^x.
Example 2: A complicated power and product
Differentiate
y = \frac{(x^2+1)^3\sqrt{x-2}}{(3x-1)^5}
Take logs and use log properties:
\ln(y) = \ln((x^2+1)^3) + \ln((x-2)^{1/2}) - \ln((3x-1)^5)
Bring exponents down:
\ln(y) = 3\ln(x^2+1) + \frac{1}{2}\ln(x-2) - 5\ln(3x-1)
Differentiate:
\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
\frac{1}{y}\frac{dy}{dx} = \frac{6x}{x^2+1} + \frac{1}{2(x-2)} - \frac{15}{3x-1}
Finally,
\frac{dy}{dx} = y\left(\frac{6x}{x^2+1} + \frac{1}{2(x-2)} - \frac{15}{3x-1}\right)
and substitute for y if desired.
Two common issues are forgetting the left side becomes \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)). So it naturally belongs alongside the Unit 3 toolkit.
Exam Focus
- Typical question patterns:
- Differentiate functions like x^x, (\sin(x))^x , or products/quotients with multiple factors and powers.
- Show or justify steps using log properties before differentiating.
- Find y' and sometimes evaluate at a given x.
- Common mistakes:
- Misusing log properties (especially turning \ln(a+b) into \ln(a)+\ln(b), which is false).
- Forgetting to multiply by y at the end to solve for \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 x and y 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 (3x^2+1)^5 the last operation is “raise to the 5th power.” For \sin(x^2) it is “sine.” For \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 \frac{dy}{dx} if
\sin(xy) + y^3 = 4
Differentiate both sides with respect to x. For \sin(xy), use Chain Rule with inner u=xy, and for u=xy use product rule:
\frac{d}{dx}[\sin(xy)] = \cos(xy)(x\frac{dy}{dx} + y)
For y^3:
\frac{d}{dx}[y^3] = 3y^2\frac{dy}{dx}
So
\cos(xy)(x\frac{dy}{dx} + y) + 3y^2\frac{dy}{dx} = 0
Collect \frac{dy}{dx}:
\left(x\cos(xy) + 3y^2\right)\frac{dy}{dx} = -y\cos(xy)
Thus
\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
x^2y + \arctan(y) = 5
at (1,2).
Differentiate implicitly. For x^2y (treat as x^2\cdot y):
\frac{d}{dx}[x^2y] = 2xy + x^2\frac{dy}{dx}
For \arctan(y):
\frac{d}{dx}[\arctan(y)] = \frac{1}{1+y^2}\frac{dy}{dx}
So
2xy + x^2\frac{dy}{dx} + \frac{1}{1+y^2}\frac{dy}{dx} = 0
Solve for \frac{dy}{dx}:
\frac{dy}{dx} = \frac{-2xy}{x^2 + \frac{1}{1+y^2}}
Evaluate at (1,2):
m = \frac{-2(1)(2)}{1 + \frac{1}{5}} = -\frac{10}{3}
Tangent line:
y - 2 = -\frac{10}{3}(x - 1)
A common mistake here is forgetting the Chain Rule factor on \arctan(y).
Worked Example 3: Derivative of an inverse without finding the inverse explicitly
Suppose f is differentiable and one-to-one, with f(2)=5 and f'(2)=-3. Find (f^{-1})'(5) and interpret the sign.
Because f(2)=5, the corresponding inverse input is 5 and
(f^{-1})'(5) = \frac{1}{f'(2)} = -\frac{1}{3}
The negative sign means the inverse function is decreasing at x=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 f and f' to compute an inverse derivative without solving for f^{-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 f and f' to compute an inverse derivative without solving for f^{-1}.
- Common mistakes:
- Treating y as a constant mid-problem (dropping \frac{dy}{dx} inconsistently).
- Algebra errors when isolating \frac{dy}{dx} (especially with fractions like \frac{1}{1+y^2}).
- Using the wrong corresponding input for inverse derivative questions (mixing up a and b in f(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 x and y 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 y' at x=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.