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, θ), which is known as polar
notation. This representation is illustrated in the following figure:
Note that angle θ is measures in radians (no unit in SI); it is considered
positive when θ goes in counterclockwise direction with respect to fixed horizontal axis, called
abscissa (usually marked as x-axis). In opposite of θ, variable r is measured in
meters (in SI system) and it is restricted to 0 < r < ∞; the point r = 0
corresponds the origin.
In order to preserve a unique representation of a point on the plane in polar coordinates as ordered
pair (r, θ), the corresponding angle θ is taken within the interval of length
2π (if measured in radians) or 360 (if angle θ is measured in degrees). We assume that
θ ∈ (−π, π] because we use radians; however, some authors prefer to use
semi-open interval [0, 2π) or [0, 360°) in case of degrees. So the angle θ is defined
according to the formula:
\[
\theta = \begin{cases}
\mbox{arccos} \left( \frac{x}{r} \right) , & \quad \mbox{if}\ y \ge 0 \mbox{ and } r \ne 0,
\\
- \mbox{arccos} \left( \frac{x}{r} \right) , & \quad \mbox{if}\ y < 0,
\\
\mbox{undefined} , & \quad \mbox{if}\ r = 0.
\end{cases}
\]
We summarize possible outputs in the following table.
Quadrant
Range
Value
1st (x > 0, y > 0)
0 < θ < π/2
θ = α
2nd (x < 0, y > 0)
π/2 < θ < π
θ = π − α
3rd (x < 0, y < 0)
−π < θ < −π/2
θ = −π + α
4th (x > 0, y < 0)
−π/2 < θ < 0
θ = −α
Defining a new coordinate system allows us to create a new kind of function, a polar function.
Rectangular coordinates lent themselves well to creating functions that related x and
y, such as y = sin(x). Polar coordinates allow us to create functions that
relate r and θ. Normally these functions look like r = f(θ),
although we can create functions of the form θ = g(r).
A polar curve can be parametrized by θ or by any parameter. The arc length of a polar curve
given by r = r(θ) is
where k = (0, 0, 1) is the unit vector along applicate axis.
A radius vector r of any point (r, θ) on the plane ℝ² is expressed through the single vector:
Here we represent \( \displaystyle \quad \hat{\bf r} \ \) as a column vector.
Its derivative with respect to t (parameter)) is expressed through two orthogonal vectors
The basic rectangular equations of the form x = h and y = k create vertical and horizontal lines, respectively; the basic polar equations r = h and θ = α create circles and lines through the pole, respectively. A typical example of this form is a wedge:
The boundary ∂Wedge of our domain consists of two lines, OA and BO, and a part of circle
r = 𝑎 (θ₁ ≤ θ ≤ θ₂). We want to integrate an
arbitrary vector field
Here is code that implements the above manipulations to replicate the wedge graphic we started with and the vector field in which it lies. First we define specific functions for fr and fθ:
fr[r_, \[Theta]_] := r Cos[\[Theta]]
f\[Theta][r_, \[Theta]_] := r Sin[\[Theta]]
Finally, overlay the wedge region on the vector field
Show[vectorField, Graphics[{Red, Opacity[0.3], wedgeRegion}],
PlotLabel -> "Vector Field with Wedge Region"]
Figure 5: Wedge domain within vector field.
Before formulating Green's theorem, we remind some definitions. A rectifiable curve is a curve
having finite length. If curve does not cross itself, it is called a simple curve.
Theorem 1 (Green’s Theorem in polar coordinates):
Let R be an open, simply connected region with a boundary curve C = ∂R that is a piecewise smooth, simple closed curve oriented counterclockwise. Let 𝐅 = (𝑃, 𝑄) be a vector field with component functions
that have continuous partial derivatives on the closer of R. If the origin belongs to the boundary ∂R of domain R and components of the vector field F satisfy the corner condition
where dA = drrdθ is the area element, and k = (0, 0, 1) is the unit applicate vector in ℝ³.
Since Green's theorem was determined previously in rectangular coordinates, we just need to reformulate it in polar coordinates.
Let F be a vector field on the plane:
\[
\mathbf{F} = F_r \hat{\bf e}_r + F_{\theta}\hat{\bf e}_{\theta} ,
\]
which we want to integrate around a closed path ∂R containing a simple domain R. First, we make connection polar coordinate representation with its Cartesian one:
\begin{align*}
\mathbf{F} &= P(x,y)\,{\bf i} + Q(x,y)\,{\bf j} = F_r \hat{\bf e}_r + F_{\theta}\hat{\bf e}_{\theta}
\\
&= F_r \left( \cos\theta\,{\bf i} + \sin\theta\,{\bf j} \right) + F_{\theta} \left( -\sin\theta\,{\bf i} + \cos\theta\, {\bf j} \right)
\\
&= \left( F_r \cos\theta - F_{\theta} \sin\theta \right) {\bf i} + \left( F_r \sin\theta + F_{\theta} \cos\theta \right) {\bf j} .
\end{align*}
We know that partial derivatives in rectangular coordinates are expressed through partial derivatives of polar coordinates as
\[
\frac{\partial}{\partial x} = \cos\theta\,\frac{\partial}{\partial r} - \frac{\sin\theta}{r}
\,\frac{\partial}{\partial \theta} , \qquad \frac{\partial}{\partial y} =
\sin\theta\,\frac{\partial}{\partial r} + \frac{\cos\theta}{r} \,\frac{\partial}{\partial \theta} .
\]
Therefore,
\begin{align*}
\frac{\partial Q}{\partial x} &= \left( \cos\theta\,\frac{\partial}{\partial r} - \frac{\sin\theta}{r} \,\frac{\partial}{\partial \theta} \right) \left[ F_r \sin\theta + F_{\theta} \cos\theta \right]
\\
&= \cos\theta \left( \frac{\partial F_r}{\partial r} \cdot \sin\theta + \frac{\partial F_{\theta}}{\partial r} \cdot \cos\theta\right)
\\
& \quad - \frac{\sin\theta}{r} \left( \frac{\partial F_r}{\partial \theta} \cdot \sin\theta + F_r \cos\theta + \frac{\partial F_{\theta}}{\partial \theta} \cdot \cos\theta - F_{\theta} \sin\theta \right)
\end{align*}
Similarly,
\begin{align*}
- \frac{\partial P}{\partial y} &= - \left( \sin\theta\,\frac{\partial}{\partial r} + \frac{\cos\theta}{r}\,\sin\theta\,\frac{\partial}{\partial \theta} \right) \left[ F_r \cos\theta - F_{\theta} \sin\theta \right]
\\
&= - \sin\theta \left( \frac{\partial F_r}{\partial r} \cdot \cos\theta - \frac{\partial F_{\theta}}{\partial r} \cdot \sin\theta \right)
\\
& \quad - \frac{\cos\theta}{r} \left( \frac{\partial F_r}{\partial \theta} \cdot \cos\theta - F_r \sin\theta - \frac{\partial F_{\theta}}{\partial \theta} \cdot \sin\theta - F_{\theta} \cos\theta \right) .
\end{align*}
Summing up,
\begin{align*}
\frac{\partial Q}{\partial x} - \frac{\partial P}{\partial y} &= \frac{1}{r} \left( \frac{\partial}{\partial r} \left( r\,F_{\theta} \right) - \frac{\partial F_r}{\partial \theta} \right) = \mbox{curl}(\mathbf{F}) \bullet \mathbf{k} ,
\end{align*}
where k = (0, 0, 1) is a unit vector along applicate axis (usually denoted by z).
Example 1:
We consider the vector field
\[
\mathbf{F} = \frac{1}{x^2 + y^2}\, \left( 1, x \right)
\]
that does not satisfy the corner condition. We integrate it along a unit circle centered at the origin. Its circulation is finite because the field F is finite on the unit circle. So
\[
\oint_C \mathbf{F} \bullet {\text d}\mathbf{r} ,
\]
which we evaluate using parametrization by polar coordinates.
\[
\oint_C \mathbf{F} \bullet {\text d}\mathbf{r} = \int_0^{2\pi} \frac{\cos\theta}{1^2}\,{\text d}\theta = 0 .
\]
Integrate[Cos[t], {t, 0, 2*Pi}]
0
However, the double integral
\[
\iint_{r \le 1} \mbox{curl}\left( \mathbf{F} \right) {\text d}A
\]
does not exist.
■
End of Example 1
Example 2:
We consider the line integral
\[
\oint_C x^2 y\,{\text d}x - 2x\,\cos y\,{\text d}y ,
\]
where 𝐶 is the boundary of the plane domain Ω formed by the circle x² + y² = 1 and below parabola y = x².
We use Green's theorem.
P[x_, y_] := x^2 y;
Q[x_, y_] := -2 x Cos[y];
region = ImplicitRegion[x^2 + y^2 < 1 && y < x^2, {x, y}];