The first (and simplest) method to
try for drawing a polar graph is to rewrite r=f(θ) as a
relation between x and y, and then draw the graph of this
relation. For example, when r=2cos(θ), then we
have r2−2rcos(θ)=0. But
r2=x2+y2and2rcos(θ)=2x,
so x2−2x+y2=0. Completing the square with x2−2x=(x−1)2−1
gives
(x−1)2+y2=1.
This is a circle of radius 1 centered at
(1,0).
In other cases, the curve doesn't
have a nice description in rectangular coordinates -- that's usually
why we're using polar coordinates! We then plot points as follows:
start with the graph of r=f(θ) with (r,θ) as rectangular
coordinates, and then plot the corresponding values of (x,y) using
x=rcos(θ),y=rsin(θ).
In other words, we obtain a parametrization of our polar curve as θ=t,
r=f(t), and so:
x(t)=f(t)cos(t);y(t)=f(t)sin(t).
We can then apply everything we know about parametrized curves to polar curves.
The following video shows three ways to plot the polar curve
r=2cos(θ).