Converting Double Integrals into Polar Coordinates
When the region of integration of a double integral is a circle or part of a circle, then it may be advantageous to convert the double integral to an iterated integral in polar coordinates. Also, if the integral involves expressions of the form
, then it may be advantageous to convert to polar coordinates. To do so, the region of integration must be described in polar coordinates, and then the area differential is replaced by
Let's look at an example:
Example:
Evaluate the following integral by transforming to polar coordinates:
To begin with, Maple cannot evaluate this iterated integral directly, as you will see below.
> | Int_xy:=Int(Int(sqrt(x^2+y^2),y=-sqrt(1-x^2)..sqrt(1-x^2)),x=-1..1); value(%); |
> |
Instead, Maple requires the conceptual assistance of a human to transform the iterated integral into a more natural representation in polar coordinates. To begin with, we must transform the region of integration into polar coordinates. We do so by noticing that the region
x =
-1..1 and
is the unit circle
.
(commands for creating the figure above)
In polar coordinates, the unit circle is given by
r
= 0..1,
. This leads to the following::
> | Int_xy=Int(Int(r,r=0..1),theta=0..2*Pi); op(2,%)=value(op(2,%)); |
> |
> |
As another example, let's evaluate the following integral by transforming to polar coordinates:
To begin with, we must transform the region of integration into polar coordinates. Let's begin by plotting the region:
> | plot({0,sqrt(2-x^2)},x=1..sqrt(2),color=aquamarine,view=[0..sqrt(2),0..sqrt(2)], scaling=constrained,filled=true); |
> |
Since
is given in polar by
, the region in polar is
r
=
,
.
(commands used to create figure)
Thus, we have
> | Int_xy:=Int(Int(1/((x^2+y^2)^(3/2)),y = 0 .. sqrt(2-x^2)),x = 1 .. sqrt(2))=Int(Int(1/(r^2)^(3/2)*r,r=sec(theta)..sqrt(2)),theta=0..Pi/4); |
> |
Simplifying the polar integral then leads to
> | Int_xy:=simplify(op(2,Int_xy)); Int_xy:=value(Int_xy); |
> |