Polar Coordinates and Graphs
Polar coordinates describe a point using the notation (r,θ), where r is the distance from the origin and θ is the angle from the positive x-axis. An interesting property is that polar coordinates aren't unique - the point (r,θ) is identical to −r,θ+π.
Converting between rectangular (x,y) and polar coordinates is straightforward:
- x = r cos θ
- y = r sin θ
- r = √x2+y2
- θ = tan⁻¹y/x
Finding the slope of a tangent line to a polar curve requires using the chain rule. For a curve r = f(θ), the derivative is:
dy/dx = [f(θ)cos θ + f'(θ)sin θ]/[-f(θ)sin θ + f'(θ)cos θ]
Pro Tip: When looking for horizontal or vertical tangents, set dy/dθ = 0 for horizontal tangents and dx/dθ = 0 for vertical tangents instead of working with the full derivative formula.