Sometimes x and y are not linked directly at all — each is tied separately to a third variable, the parameter: x=f(t), y=g(t). The circle is the classic case: x=acosθ, y=asinθ traces the whole circle as θ runs, with no single formula y=h(x) needed.
The chain rule links the three variables: dtdy=dxdy⋅dtdx, and solving for dxdy:
dxdy=dx/dtdy/dt=f′(t)g′(t)(provided dtdx=0)
The routine: differentiate each coordinate with respect to the parameter, then divide — dtdy on top, dtdx underneath. The answer naturally comes out in terms of the parameter, and that is perfectly acceptable.
Two cautions worth marks:
Right way up. The quotient is dx/dtdy/dt, never the reciprocal — a flipped fraction is the most common parametric error.
Do not differentiate y w.r.t. x piecewise by eliminating t unless elimination is genuinely easier; the division route is almost always shorter, and for curves like the cycloid, elimination is barely possible.
The standard curves
Curve
Parametrisation
dxdy
circle
x=acosθ,y=asinθ
−cotθ
parabola
x=at2,y=2at
t1
cycloid
x=a(θ+sinθ),y=a(1−cosθ)
tan2θ
astroid
x=acos3θ,y=asin3θ
−tanθ
The half-angle collapse in the cycloid row — 1+cosθsinθ=tan2θ — is a simplification examiners expect on sight; its partner 1−cosθsinθ=cot2θ appears just as often.
Solved Examples
Example 1 — The circle
Find dxdy if x=acosθ, y=asinθ.
Step 1 — differentiate each w.r.t. θ:dθdx=−asinθ, dθdy=acosθ.
Step 2 — divide:dxdy=−asinθacosθ=−cotθ
Answer:−cotθ — geometrically sensible: at θ=2π (top of the circle) the tangent is horizontal, and indeed −cot2π=0.
Example 2 — The parabola
Find dxdy if x=at2, y=2at.
Step 1 — differentiate:dtdx=2at, dtdy=2a.
Step 2 — divide:dxdy=2at2a=t1.
Answer:t1 — this parametrisation of y2=4ax powers half the conic-section problems in coordinate geometry.
Example 3 — The cycloid and the half-angle collapse