Definition
Higher order derivatives are derivatives of derivatives:
| Derivative | Notation |
|---|
| First | f′(x), dxdy, y′ |
| Second | f′′(x), dx2d2y, y′′ |
| Third | f′′′(x), dx3d3y, y′′′ |
| Fourth | f(4)(x), dx4d4y, y(4) |
| nth | f(n)(x), dxndny, y(n) |
Physical Interpretation
If s(t) is position as a function of time:
- s′(t) = velocity (rate of change of position)
- s′′(t) = acceleration (rate of change of velocity)
- s′′′(t) = jerk (rate of change of acceleration)
Common Patterns
Polynomials
For f(x)=xn:
- f′(x)=nxn−1
- f′′(x)=n(n−1)xn−2
- f(n)(x)=n!
- f(n+1)(x)=0
Exponentials
For f(x)=ex:
- f(n)(x)=ex for all n
For f(x)=eax:
- f(n)(x)=aneax
Trigonometric Functions
For f(x)=sin(x):
f′(x)=cos(x)
f′′(x)=−sin(x)
f′′′(x)=−cos(x)
f(4)(x)=sin(x)(cycle repeats)
Pattern: f(n)(x)=sin(x+2nπ)
For f(x)=cos(x):
f′(x)=−sin(x)
f′′(x)=−cos(x)
f′′′(x)=sin(x)
f(4)(x)=cos(x)(cycle repeats)
Pattern: f(n)(x)=cos(x+2nπ)
Examples
Example 1: Polynomial
f(x)=x5−3x3+2x
f′(x)=5x4−9x2+2
f′′(x)=20x3−18x
f′′′(x)=60x2−18
f(4)(x)=120x
f(5)(x)=120
f(6)(x)=0
Example 2: Natural log
f(x)=ln(x)
f′(x)=x1=x−1
f′′(x)=−x−2=−x21
f′′′(x)=2x−3=x32
f(4)(x)=−6x−4=−x46
Pattern: f(n)(x)=xn(−1)n−1(n−1)! for n≥1
Example 3: Product requiring chain rule
f(x)=x2ex
f′(x)=x2ex+2xex=ex(x2+2x)
f′′(x)=ex(x2+2x)+ex(2x+2)=ex(x2+4x+2)
f′′′(x)=ex(x2+4x+2)+ex(2x+4)=ex(x2+6x+6)
Example 4: Implicit second derivative
For x2+y2=25, find dx2d2y:
First: dxdy=−yx
dx2d2y=dxd[−yx]
=−y2y(1)−x(dxdy)
=−y2y−x(−yx)
=−y3y2+x2
=−y325
The Leibniz Rule
For the nth derivative of a product:
(fg)(n)=∑k=0n(kn)f(n−k)g(k)
where (kn)=k!(n−k)!n! is the binomial coefficient.