Double integral in Polar coordinates
In order to introduce polar coordinates, start with a point O in the plane ℝ² called the pole (we will always identify this point with the origin). From the pole, draw a ray, called the initial ray (we will always draw this ray horizontally, identifying it with the positive abscissa). A point P in the plane is determined by the distance r that P is from O, and the angle θ formed between the initial ray and the segment \( \displaystyle \quad \overline{OP} \quad \) (measured counter-clockwise). We record the distance and angle as an ordered pair (r, θ). This is illustrated in the following figure:
![]() |
point = Graphics[{PointSize[0.02], Pink, Point[{1/2, Sqrt[3]/2}]}];
or = Graphics[{PointSize[0.02], Blue, Point[{0, 0}]}];
xar = Graphics[{Blue, Arrowheads[0.1], Arrow[{{0, 0}, {1, 0}}]}];
line = Graphics[{Black, Thick, Line[{{0, 0}, {1/2, Sqrt[3]/2}}]}];
txt = Graphics[{Black,
Text[Style["O", FontSize -> 18, Bold], {0, -0.5}],
Text[Style["r", FontSize -> 18, Bold], {0.2, 0.5}],
Text[Style["P = P(r, \[Theta])", FontSize -> 18, Bold], {0.5,
0.94}], Text[
Style["\[Theta]", FontSize -> 18, Bold], {0.56, 0.45}]}];
circle = Graphics[Circle[{0, 0}, 0.6, {0, Pi/3}]];
ar = Graphics[{Black, Arrowheads[0.04],
Arrow[{{0.32, 0.5059}, {0.3, 0.519}}]}];
Show[txt, xar, line, point, or, circle, ar]
|
Conversion between rectangular and polar coordinates are based of the relations:
The basic form of the double integral is:
RJB figure https://xronos.clas.ufl.edu/mooculus/calculus3/commonCoordinates/digInPolarCoordinates
Let R be the region in the first quadrant bounded by the curve. We can approximate this region using the natural shape of polar coordinates: Portions of sectors of circles. In the figure, one such region is shaded, shown below:RJB figure https://xronos.clas.ufl.edu/mooculus/calculus3/commonCoordinates/digInPolarCoordinates
From the picture above, we see that:
- Anton, Howard (2005), Elementary Linear Algebra (Applications Version) (9th ed.), Wiley International
- Beezer, R., A First Course in Linear Algebra, 2015.
- Beezer, R., A Second Course in Linear Algebra, 2013.
- Coolidge, J.L., The Origin of Polar Coordinates, American Mathematical Monthly. 1952, volume 59, issue 2, pp. 78–85. doi:10.2307/2307104.