1.2 Differentiation Rules, Implicit & Inverse Differentiation
Key Takeaways
- Differentiability strictly implies continuity, but continuity does not imply differentiability; classic counterexamples include corners, vertical tangents, and oscillatory envelopes.
- The derivative of an inverse function is given by (f^{-1})'(b) = 1 / f'(a), where f(a) = b and f'(a) != 0; evaluation must take place at the preimage a.
- Logarithmic differentiation simplifies variable-base variable-exponent expressions u(x)^{v(x)} and massive multi-term rational products by converting multiplication into addition prior to differentiation.
- Implicit differentiation treats dependent variables via the chain rule; along a level curve F(x, y) = c, the slope is dy/dx = -F_x / F_y provided F_y != 0.
- Leibniz's rule expresses the n-th derivative of a product as (uv)^{(n)} = sum_{k=0}^n binom(n, k) u^{(n-k)} v^{(k)}, terminating efficiently when one factor is a polynomial.
1.2 Differentiation Rules, Implicit & Inverse Differentiation
Differentiation measures local rates of change. The GRE Mathematics Subject Test evaluates both mechanical proficiency with differentiation formulas and theoretical mastery of differentiability conditions and higher-order derivative properties.
Difference Quotients and Differentiability
Let $f$ be defined on an open interval around $a$. The derivative of $f$ at $a$ is: provided this limit exists in $\mathbb{R}$.
Differentiability Implies Continuity
If $f$ is differentiable at $a$, it is continuous at $a$: Hence $\lim_{x \to a} f(x) = f(a)$.
Canonical Non-Differentiable Pathologies
- Corners / Sharp Turns: $f(x) = |x|$ at $x = 0$ has left derivative $-1$ and right derivative $+1$.
- Vertical Tangents: $f(x) = x^{1/3}$ at $x = 0$ has difference quotient $h^{-2/3} \to \infty$.
- Cusps: $f(x) = x^{2/3}$ at $x = 0$ has left quotient $\to -\infty$ and right quotient $\to +\infty$.
- Differentiable with Discontinuous Derivative:
- $f'(0) = \lim_{h \to 0} \frac{h^2 \sin(1/h)}{h} = 0$ by the Squeeze Theorem.
- For $x \neq 0$, $f'(x) = 2x \sin(1/x) - \cos(1/x)$.
- As $x \to 0$, $\cos(1/x)$ oscillates indefinitely. Therefore $\lim_{x \to 0} f'(x)$ does not exist, proving $f'$ is discontinuous at $0$ despite $f$ being differentiable everywhere.
Differentiation Rules & Logarithmic Differentiation
Standard rules: $(fg)' = f'g + fg'$, $(f/g)' = (f'g - fg')/g^2$, and chain rule $(f \circ g)'(x) = f'(g(x)) g'(x)$.
Logarithmic Differentiation
For variable-base variable-exponent expressions $y = u(x)^{v(x)}$ ($u(x) > 0$), take logarithms before differentiating: Solving for $y'$ gives $y' = u(x)^{v(x)} [v' \ln u + v u' / u]$. This also speeds up multivariable quotients: $\ln(f_1^{a_1} / g_1^{b_1}) \implies y'/y = a_1 f_1'/f_1 - b_1 g_1'/g_1$.
Inverse Functions and Implicit Differentiation
Inverse Function Derivatives
If $f$ is strictly monotonic and differentiable with $f'(x) \neq 0$, then $f^{-1}$ is differentiable on its range. For $b = f(a)$ (so $a = f^{-1}(b)$):
Standard Inverse Trigonometric Derivatives
- $\frac{d}{dx} \arcsin x = \frac{1}{\sqrt{1 - x^2}}, \quad |x| < 1$
- $\frac{d}{dx} \arccos x = -\frac{1}{\sqrt{1 - x^2}}, \quad |x| < 1$
- $\frac{d}{dx} \arctan x = \frac{1}{1 + x^2}, \quad x \in \mathbb{R}$
Implicit Differentiation on Curves
For level curves $F(x, y) = 0$, applying the chain rule gives:
- Horizontal Tangents: $F_x = 0$ with $F_y \neq 0$.
- Vertical Tangents: $F_y = 0$ with $F_x \neq 0$.
- Singular Points: $F_x = 0$ and $F_y = 0$ simultaneously.
Leibniz's Rule for Higher-Order Derivatives
For $n$-times differentiable functions $u$ and $v$, the product rule generalizes as: When $v(x)$ is a polynomial of degree $m$, all derivatives $v^{(k)}$ vanish for $k > m$, terminating the sum after $m+1$ terms.
| Technique | Formula / Rule | Typical GRE Scenario |
|---|---|---|
| Leibniz Formula | $(uv)^{(n)} = \sum \binom{n}{k} u^{(n-k)} v^{(k)}$ | High derivatives of $(x^2 + 1)e^{2x}$ or $x^2 \sin x$ |
| Inverse Function | $(f^{-1})'(b) = 1 / f'(a)$ | Inverting polynomials without explicit algebraic solution |
| Log Differentiation | $y'/y = [v \ln u]'$ | Expressions of form $x^{\sin x}$ or cumbersome rational products |
Step-by-Step Worked Problems
Problem 1: Higher Derivatives via Leibniz
Compute $f^{(15)}(0)$ for $f(x) = (x^2 - 2x) e^{-x}$.
Solution:
- Let $u(x) = e^{-x}$ and $v(x) = x^2 - 2x$.
- Derivatives of $u$: $u^{(m)}(0) = (-1)^m$.
- Derivatives of $v$: $v(0) = 0$, $v'(0) = -2$, $v''(0) = 2$, and $v^{(k)}(0) = 0$ for $k \ge 3$.
- Applying Leibniz's rule with $n = 15$:
- Substitute evaluations:
Problem 2: Implicit Differentiation for Tangents
Find the tangent line to $x^3 + y^3 = 2xy$ at $(1, 1)$.
Solution:
- Differentiate implicitly: $3x^2 + 3y^2 y' = 2y + 2x y'$.
- Group terms: $y'(3y^2 - 2x) = 2y - 3x^2 \implies y' = \frac{2y - 3x^2}{3y^2 - 2x}$.
- Substitute $(1, 1)$: $y' = \frac{2(1) - 3(1)}{3(1) - 2(1)} = \frac{-1}{1} = -1$.
- The tangent line equation is $y - 1 = -1(x - 1) \implies y = -x + 2$.
GRE Exam Traps & Pitfalls
Trap 1: Evaluating Inverse Derivatives at Target Rather than Preimage When computing $(f^{-1})'(b)$, do not evaluate $1/f'(b)$. First solve $f(a) = b$ for $a$, then calculate $1/f'(a)$.
Trap 2: Dropping Product Rule in Mixed Implicit Terms When taking $\frac{d}{dx}$ of $xy$, always write $y + x y'$. Forgetting the $y$ term is a ubiquitous calculation error under exam pressure.
Trap 3: Assuming $f'$ Is Continuous Because $f$ Is Differentiable Derivatives satisfy the Intermediate Value Property (Darboux's Theorem) but can have essential oscillatory discontinuities.
Let f(x) = x^5 + 2x^3 + 4x + 1. Given that f(1) = 8, what is the value of the derivative of the inverse function (f^{-1})'(8)?
Using Leibniz's rule, what is the value of the 10th derivative of h(x) = (x^2 - 3x + 1) e^x evaluated at x = 0?
Define f: R -> R by f(x) = x^2 sin(1/x) for x != 0, and f(0) = 0. Which statement precisely describes the differentiability of f and the continuity of its derivative?