¡@

Area in Polar Coordinates

Download Maple Worksheet

Suppose we want to find the area of the region R bounded by the polar curve r = f(theta) and by the rays theta = a and theta = b , where f is s positive continuous function and where 0<b-a <= 2*Pi.  We divide the interval [ a, b] into subintervals with endpoints theta[0], theta[1], theta[2], ... , theta[n] and equal width Delta*theta. The rays theta = theta[i] then divide R into nsmaller regions R[i] with central angle Delta*theta.

[Maple Plot]

For each small region R[i], if we choose the sample point theta[i]*   in the i-th  subinterval [ theta[i-1], theta[i]], then the area A[i] of  R[i] is approximated by the sector of a circle with central angle Delta*theta and radius f ( theta[i]* ).

[Maple Plot]

Note that a typical sector of a circle with central angle theta and radius r , as shown below, has area r^2*theta/2.

[Maple Plot]

Thus A[i]=1/2 f^2(theta[i]* )Delta*theta, and so an approximation to the total area Aof Ris

sum(1/2,n = 1 .. n) f^2( theta[i]* )Delta*theta ,

 which is a Riemann sum for the function g(theta) = 1/2  f(theta)^2. It appears from the animation below that the approximation improves as n grows.

[Maple Plot]

 

Therefore,

A = 1/2int(f(theta)^2,theta = a .. b).

Example 1

Find the area enclosed by the four-leaved rose r = cos(2*theta) .

[Maple Plot]

Solution :

Notice that the desired area is 8 times the shaded area, which is swept out by a ray rotates from theta = 0 to theta = Pi/4. Therefore,

A= 8*int(cos(2*theta)^2/2,theta = 0 .. Pi/4) = 4*int((1+cos(4*theta))/2,theta = 0 .. Pi/4) = Pi/2

Example 2

Find the area of the region that lies inside the circle r = 3*sin(theta)and outside the cardioid r = 1+sin(theta).

[Maple Plot]

Solution :

These two curves intersect when 3*sin(theta) = 1+sin(theta), which gives sin(theta) = 1/2. We see that they intersect at theta = Pi/6 and theta = 5*Pi/6. Hence the area inside the circle from theta = Pi/6 to theta = 5*Pi/6 is given by

A[1] =  1/2 int((3*sin(theta))^2,theta = Pi/6 .. 5*Pi/6),

and the area outside the cardioid theta = Pi/6  to theta = 5*Pi/6  is given by

A[2] =  1/2 int((1+sin(theta))^2,theta = Pi/6 .. 5*Pi/6)

Thus the area we want is A = A[1]-A[2] , by symmetry about the vertical axis theta = Pi/2 , we have

A  =  int((3*sin(theta))^2-(1+sin(theta))^2,theta = Pi/6 .. Pi/2)

=  int(8*sin(theta)^2-1-2*sin(theta),theta = Pi/6 .. Pi/2)

      =  int(3-4*cos(theta)-2*sin(theta),theta = Pi/6 .. Pi/2) = Pi


Download Maple Worksheet