Finding the Second Derivative of Parametric Equations- A Clear Guide
What Are Parametric Equations?
Most calculus problems give you y as a function of x. Parametric equations flip that script. Instead of one equation, you get two:
- x = f(t) — x expressed in terms of a third variable (usually t)
- y = g(t) — y expressed in terms of that same t
The variable t is the parameter. It acts like a shared thread connecting both equations. As t changes, both x and y change together, tracing out a curve.
This matters because some curves are impossible or messy to express as y = f(x). Parametric form makes them manageable.
Why You Need the Second Derivative
The first derivative dy/dx tells you slope. The second derivative tells you about curvature — whether the graph bends upward or downward at any point.
You need it for:
- Concavity analysis
- Acceleration problems in physics (when position is given parametrically)
- Curve sketching beyond just slopes
The Formula for the First Derivative
Before you can find the second derivative, you need the first. For parametric equations x = f(t) and y = g(t):
dy/dx = (dy/dt) ÷ (dx/dt) = g'(t)/f'(t)
You divide the derivative of y by the derivative of x. Simple. Just remember both derivatives are with respect to t, not x.
The Formula for the Second Derivative
Here's where students get confused. The second derivative is not g''(t)/f''(t).
The correct formula is:
d²y/dx² = d/dt(dy/dx) ÷ (dx/dt)
In plain English:
- Find dy/dx (the first derivative)
- Take the derivative of dy/dx with respect to t
- Divide that result by dx/dt
The denominator is always dx/dt = f'(t). You're not dividing by the second derivative of x.
Step-by-Step Example
Problem
Find d²y/dx² if x = t² and y = t³ − 3t
Step 1: Find dx/dt and dy/dt
dx/dt = 2t
dy/dt = 3t² − 3
Step 2: Find dy/dx
dy/dx = (3t² − 3) ÷ (2t) = (3t² − 3)/(2t)
Simplify: dy/dx = (3t²)/(2t) − 3/(2t) = (3t/2) − (3/(2t))
Step 3: Find d/dt(dy/dx)
Take the derivative of dy/dx with respect to t:
d/dt(dy/dx) = d/dt[(3t² − 3)/(2t)]
Using the quotient rule:
d/dt(dy/dx) = [(6t)(2t) − (3t² − 3)(2)] / (2t)²
= [12t² − 6t² + 6] / 4t²
= [6t² + 6] / 4t²
= (6t² + 6)/(4t²)
= (3t² + 3)/(2t²)
Step 4: Divide by dx/dt
d²y/dx² = [(3t² + 3)/(2t²)] ÷ (2t)
= (3t² + 3)/(2t²) × (1/(2t))
= (3t² + 3)/(4t³)
That's the second derivative. You can factor out 3:
d²y/dx² = 3(t² + 1)/(4t³)
Quick Reference Table
| Step | What to Do | Result |
|---|---|---|
| 1 | Find dx/dt and dy/dt | First derivatives w.r.t. t |
| 2 | Divide dy/dt by dx/dt | dy/dx = g'(t)/f'(t) |
| 3 | Differentiate dy/dx w.r.t. t | d/dt(dy/dx) |
| 4 | Divide step 3 result by dx/dt | d²y/dx² |
Common Mistakes
- Dividing by f''(t) instead of f'(t) — The second derivative formula always divides by dx/dt, not its derivative
- Forgetting to differentiate dy/dx — You need d/dt(dy/dx), not just dy/dx again
- Ignoring domain restrictions — When dx/dt = 0, dy/dx is undefined (vertical tangents), so d²y/dx² won't exist at those t values either
- Simplifying too early — Keep track of your work before reducing fractions
Another Example: Finding Concavity
Say you have x = cos(t), y = sin(t) (a circle traced counterclockwise).
dx/dt = −sin(t)
dy/dt = cos(t)
dy/dx = cos(t)/[−sin(t)] = −cot(t)
d/dt(dy/dx) = d/dt[−cot(t)] = csc²(t)
d²y/dx² = csc²(t) ÷ [−sin(t)] = −csc³(t)
The concavity is always negative (concave down) except at points where sin(t) = 0. That makes sense — a circle bends the same way everywhere when traversed at constant speed.
Getting Started: Your Checklist
Before you start calculating:
- ✓ Write down x = f(t) and y = g(t) clearly
- ✓ Compute dx/dt and dy/dt separately
- ✓ Form dy/dx = dy/dt ÷ dx/dt
- ✓ Differentiate dy/dx with respect to t
- ✓ Divide by dx/dt one more time
- ✓ Check where dx/dt = 0 — those t values give undefined second derivatives
When You'll Actually Use This
In physics, position vectors are often parametric. Velocity is the first derivative, acceleration is the second. If someone gives you r(t) = ⟨x(t), y(t)⟩, then:
- Velocity vector = ⟨dx/dt, dy/dt⟩
- Speed = |dr/dt|
- Acceleration vector = ⟨d²x/dt², d²y/dt²⟩
The second derivative of parametric position with respect to time is straightforward. The second derivative d²y/dx² is different — that's curvature analysis on the graph itself.
The Short Version
To find d²y/dx² for parametric equations:
- Get dy/dx by dividing dy/dt by dx/dt
- Differentiate that result with respect to t
- Divide by dx/dt again
That's it. The chain rule is baked in — you're converting from derivative-with-respect-to-t to derivative-with-respect-to-x. The extra division by dx/dt handles that conversion for the second derivative.
Practice with a few curves. Once you see the pattern, it takes less than a minute.