1: Parametric Equations / Polar Coordinates
Alternative coordinate systems for describing curves and regions.
Parametric Equations
Instead of y=f(x), we describe a curve using a parameter t:
x=f(t),y=g(t),aโคtโคb
Why Parametric?
- Can describe curves that arenโt functions (e.g., circles)
- Natural for motion: t represents time
- Can trace the same curve in different directions/speeds
Examples
Circle of radius r:
x=rcost,y=rsint,0โคtโค2ฯ
Ellipse with semi-axes a and b:
x=acost,y=bsint,0โคtโค2ฯ
Cycloid (point on a rolling wheel):
x=r(tโsint),y=r(1โcost)
Calculus with Parametric Curves
Derivatives
If x=f(t) and y=g(t), the slope is:
dxdyโ=dx/dtdy/dtโ=fโฒ(t)gโฒ(t)โ
Second derivative:
dx2d2yโ=dxdโ(dxdyโ)=dx/dtdtdโ(dxdyโ)โ
Arc Length
The length of a parametric curve from t=a to t=b:
L=โซabโ(dtdxโ)2+(dtdyโ)2โdt
Area Under a Parametric Curve
A=โซabโydx=โซabโg(t)fโฒ(t)dt
Polar Coordinates
A point is described by distance from origin and angle:
(r,ฮธ)whereย rโฅ0,0โคฮธ<2ฯ
Polar to Cartesian:
x=rcosฮธ,y=rsinฮธ
Cartesian to Polar:
r=x2+y2โ,tanฮธ=xyโ
Common Polar Curves
| Curve | Equation |
|---|
| Circle (radius a) | r=a |
| Circle through origin | r=acosฮธ or r=asinฮธ |
| Line through origin | ฮธ=c |
| Cardioid | r=a(1+cosฮธ) |
| Rose (n petals) | r=acos(nฮธ) |
| Lemniscate | r2=a2cos(2ฮธ) |
| Spiral | r=aฮธ |
Calculus in Polar Coordinates
Slope of a Polar Curve
Since x=rcosฮธ and y=rsinฮธ:
dxdyโ=dx/dฮธdy/dฮธโ=dฮธdrโcosฮธโrsinฮธdฮธdrโsinฮธ+rcosฮธโ
Area in Polar Coordinates
Area enclosed by r=f(ฮธ) from ฮธ=ฮฑ to ฮธ=ฮฒ:
A=21โโซฮฑฮฒโr2dฮธ=21โโซฮฑฮฒโ[f(ฮธ)]2dฮธ
Intuition: A thin wedge has area 21โr2dฮธ (like a pizza slice).
Arc Length in Polar Coordinates
L=โซฮฑฮฒโr2+(dฮธdrโ)2โdฮธ
Summary
| Concept | Cartesian | Parametric | Polar |
|---|
| Curve | y=f(x) | x=f(t),y=g(t) | r=f(ฮธ) |
| Slope | dxdyโ | dx/dtdy/dtโ | rโฒcosฮธโrsinฮธrโฒsinฮธ+rcosฮธโ |
| Arc length | โซ1+(dy/dx)2โdx | โซ(dx/dt)2+(dy/dt)2โdt | โซr2+(dr/dฮธ)2โdฮธ |
| Area | โซydx | โซg(t)fโฒ(t)dt | 21โโซr2dฮธ |