Differentiating an equation you cannot solve for y — which is most equations, and the technique behind related rates and inverse functions.
By the end of this chapter you can
Differentiate an equation implicitly and solve for dy/dx
Explain why every y produces a dy/dx factor
Find the tangent line to an implicitly defined curve
Derive the derivative of an inverse function
x2+y2=25 is a circle, and no function describes it — a circle fails the
vertical line test. Yet it plainly has a tangent line at every point, so a
derivative exists locally even though y is not a function of x globally.
Implicit differentiation gets that derivative without ever solving for y.
The one rule
Differentiate both sides with respect to x, treating y as a function of
x. Every y you differentiate produces a factor of dxdy, by the
chain rule.
For x2+y2=25:
2x+2ydxdy=0⟹dxdy=−yx
dxdx2=2x
dydy2=2y
checked by the build
The second line is where the dxdy comes from: differentiating y2
with respect to y gives 2y, and the chain rule multiplies by
dxdy to convert it to a derivative with respect to x.
Checking against the explicit route
The circle is one of the rare cases where you can solve for y, which makes
it a good check. The upper half is y=25−x2:
dxd25−x2=−25−x2x
checked by the build
That is −yx, since y=25−x2 on the upper half. The two
routes agree, and the implicit one gave the answer in one line without a square
root and without splitting the circle into halves.
That economy is the point. For x3+y3=6xy — the folium of Descartes —
solving for y means a cubic formula. Differentiating implicitly takes a line:
3x2+3y2dxdy=6y+6xdxdy
Collect the dxdy terms on one side and factor:
dxdy=3y2−6x6y−3x2
The answer depends on both x and y, which is normal for an implicit
derivative and is exactly right — a curve that doubles back has different slopes
at two points with the same x.
Products need the product rule
A term with both variables needs the product rule and the chain rule:
dxd(xy)=1⋅y+xdxdy
∂x∂xy=y
checked by the build
That verified line is the first half — the derivative of xy treating y as
constant is y — and the second half, xdxdy, is what implicit
differentiation adds. Missing it is the same omission as before, wearing a
different hat.
Tangent lines
The usual exam question: find the tangent to x2+y2=25 at (3,4).
dxdy=−yx=−43, so the tangent is
y−4=−43(x−3)
Sanity check: the radius to (3,4) has slope 34, and −43 is its
negative reciprocal — the tangent is perpendicular to the radius, as a circle’s
tangent must be. Geometry confirming calculus is a free check, and worth taking.
Inverse functions
Implicit differentiation gives the inverse-function rule immediately. If
y=f−1(x) then f(y)=x, and differentiating both sides:
f′(y)dxdy=1⟹dxdy=f′(y)1
The derivative of an inverse is the reciprocal of the original’s derivative,
evaluated at the corresponding point.
That is where the inverse trigonometric derivatives come from:
dxdasin(x)=1−x21
dxdatan(x)=x2+11
dxdlog(x)=x1
checked by the build
For arcsin: if y=arcsinx then siny=x, so
cosydxdy=1, giving dxdy=cosy1. Then
cosy=1−sin2y=1−x2, and the standard result drops
out.
The third line is the same trick on ey=x, which is why ln differentiates
to x1 — a result that looks like it should need its own proof and does
not.
{
"question": "Differentiating x² + y² = 25 implicitly, what is d/dx of y²?",
"options": [
{
"text": "2y·dy/dx, because y is a function of x and the chain rule applies",
"correct": true,
"why": "Differentiating y² with respect to y gives 2y; the chain rule multiplies by dy/dx to convert it to a derivative with respect to x. That factor is the whole technique."
},
{
"text": "2y, by the power rule",
"correct": false,
"why": "That treats y as if it were the variable of differentiation. It is not — x is — and y depends on x, so the chain rule owes a factor."
},
{
"text": "0, since y is a constant with respect to x",
"correct": false,
"why": "y is emphatically not constant: move along the circle and both coordinates change. That dependence is exactly what implicit differentiation captures."
},
{
"text": "2x·dy/dx, substituting x for y",
"correct": false,
"why": "The power rule applies to whatever is being raised, which is y. No substitution of one variable for the other is licensed here."
}
]
}