Mathematics.

vector calculus

Green's Theorem

Calculus III35 minDifficulty7 out of 10

You should know: line integrals

Overview

Green's theorem relates a line integral around a simple closed curve C (traversed counterclockwise) to a double integral over the region D that C encloses. It converts a potentially hard 1D circulation calculation into an easier 2D area calculation, or vice versa, and is the 2D special case of the more general Stokes' theorem.

Intuition

Imagine measuring how much a fluid 'circulates' around the boundary of a region versus how much it 'rotates' at every interior point. Green's theorem says these must match up: the total circulation around the boundary equals the sum (integral) of all the tiny local rotations (curl, in its 2D scalar form ∂Q/∂x − ∂P/∂y) happening inside. It's a conservation principle — whatever spin exists inside the region shows up as net circulation on its edge, and interior spins that cancel each other out don't contribute to the boundary circulation.

Interactive Graph

A vector field circulating around a region

Loading visualization…

Formal Definition

Definition

Let C be a positively oriented (counterclockwise), piecewise-smooth, simple closed curve, and D the region it encloses. For P, Q with continuous partial derivatives on an open region containing D:

CPdx+Qdy=D(QxPy)dA\oint_C P\, dx + Q\, dy = \iint_D \left(\frac{\partial Q}{\partial x} - \frac{\partial P}{\partial y}\right) dA
Green's Theorem
A=Cxdy=Cydx=12C(xdyydx)A = \oint_C x\, dy = -\oint_C y\, dx = \frac{1}{2}\oint_C (x\,dy - y\,dx)

Special cases (P=0,Q=x), (P=-y,Q=0), and their average, all compute the enclosed area

Area via Green's theorem

Notation

NotationMeaning
C\oint_CLine integral around a simple closed curve traversed counterclockwise (region D stays on the left)
QxPy\frac{\partial Q}{\partial x}-\frac{\partial P}{\partial y}The 2D scalar curl — the z-component of curl⟨P,Q,0⟩ in 3D

Derivation

A standard proof for a simple region D (both 'x-simple' and 'y-simple', i.e. D = {(x,y): a≤x≤b, g₁(x)≤y≤g₂(x)}), proving the P-part of the identity ∮_C P dx = -∬_D ∂P/∂y dA:

DPydA=abg1(x)g2(x)Pydydx=ab[P(x,g2(x))P(x,g1(x))]dx\iint_D \frac{\partial P}{\partial y}\,dA = \int_a^b \int_{g_1(x)}^{g_2(x)} \frac{\partial P}{\partial y}\,dy\,dx = \int_a^b \left[P(x,g_2(x)) - P(x,g_1(x))\right] dx

Evaluate the inner integral using the Fundamental Theorem of Calculus

CPdx=abP(x,g1(x))dxabP(x,g2(x))dx\oint_C P\,dx = \int_a^b P(x,g_1(x))\,dx - \int_a^b P(x,g_2(x))\,dx

Splitting C into the bottom curve y=g₁(x) (left to right) and top curve y=g₂(x) (right to left, hence the minus sign for counterclockwise orientation)

=ab[P(x,g2(x))P(x,g1(x))]dx=DPydA= -\int_a^b \left[P(x,g_2(x))-P(x,g_1(x))\right] dx = -\iint_D \frac{\partial P}{\partial y}\, dA

Matching the two expressions gives the P-component of Green's theorem; the Q-component follows symmetrically by slicing D as y-simple instead

Properties

Orientation dependence

Reversing C’s orientation (clockwise) negates the line integral\text{Reversing } C \text{'s orientation (clockwise) negates the line integral}

Condition: Green's theorem as stated requires positive (counterclockwise) orientation

Extension to regions with holes

For a region with holes, sum line integrals over ALL boundary components, with outer boundary counterclockwise and inner (hole) boundaries clockwise\text{For a region with holes, sum line integrals over ALL boundary components, with outer boundary counterclockwise and inner (hole) boundaries clockwise}

Theorems

Theorem 1: Green's Theorem
CPdx+Qdy=D(QxPy)dA for positively oriented, simple, closed, piecewise-smooth C bounding D\oint_C P\,dx+Q\,dy = \iint_D\left(\frac{\partial Q}{\partial x}-\frac{\partial P}{\partial y}\right)dA \text{ for positively oriented, simple, closed, piecewise-smooth } C \text{ bounding } D

Corollaries

Follows from Green's Theorem

If Qx=Py everywhere in D (i.e. F=P,Q is conservative), then CPdx+Qdy=0 for any closed curve C in D\text{If } \frac{\partial Q}{\partial x} = \frac{\partial P}{\partial y} \text{ everywhere in } D \text{ (i.e. } \mathbf F=\langle P,Q\rangle \text{ is conservative), then } \oint_C P\,dx+Q\,dy = 0 \text{ for any closed curve } C \text{ in } D

Follows from Green's Theorem

The area enclosed by C is A=12C(xdyydx), letting you compute area purely from the boundary curve\text{The area enclosed by } C \text{ is } A = \tfrac{1}{2}\oint_C (x\,dy - y\,dx)\text{, letting you compute area purely from the boundary curve}

Applications

Computing the area enclosed by a complicated closed curve (e.g. traced out by a planimeter, a physical device that measures area by tracing a boundary) uses exactly the area formula from Green's theorem.

Worked Examples

  1. Identify P=xy, Q=x², and compute the integrand ∂Q/∂x − ∂P/∂y.

    Qx=2x,Py=x    QxPy=x\frac{\partial Q}{\partial x} = 2x, \qquad \frac{\partial P}{\partial y}=x \implies \frac{\partial Q}{\partial x}-\frac{\partial P}{\partial y} = x
  2. Convert to a double integral over the unit square.

    DxdA=0101xdydx\iint_D x\, dA = \int_0^1\int_0^1 x\, dy\, dx
  3. Evaluate the iterated integral.

    =01xdx=12= \int_0^1 x\, dx = \frac{1}{2}

Answer: 1/2

Practice Problems

Difficulty 7/10

Use Green's theorem to evaluate ∮_C (y² dx + x² dy) where C is the unit circle, counterclockwise.

Difficulty 7/10

Find the area enclosed by the curve r(t)=(2cos t, 3 sin t), t∈[0,2π] using Green's theorem.

Common Mistakes

Common Mistake

Applying Green's theorem to a curve that isn't positively oriented (counterclockwise) without adjusting the sign.

Green's theorem as stated assumes counterclockwise orientation. If C is given clockwise, either negate the final answer or reverse the curve's direction first.

Common Mistake

Mixing up the integrand as ∂P/∂x − ∂Q/∂y instead of the correct ∂Q/∂x − ∂P/∂y.

The correct integrand is ∂Q/∂x − ∂P/∂y (Q differentiated with respect to x, minus P differentiated with respect to y) — reversing which variable each is differentiated by is a very common sign/setup error.

Common Mistake

Applying Green's theorem directly to a region with a hole (an annulus) using only the outer boundary.

For a region with a hole, you must include the INNER boundary curve too, traversed clockwise (so the region stays on the left of both boundary components combined) — omitting it gives the wrong double integral.

Quiz

Green's theorem converts a line integral around a closed curve C into:
For Green's theorem to apply in its basic form, curve C must be:

Flashcards

1 / 3

Historical Background

George Green stated a version of this result in his self-published 1828 essay An Essay on the Application of Mathematical Analysis to the Theories of Electricity and Magnetism, though it went largely unnoticed until William Thomson (Lord Kelvin) rediscovered and publicized it in the 1840s-50s. Green, a self-taught miller's son with no formal university training until later in life, developed the underlying potential theory to solve problems in electrostatics.

  1. 1828

    George Green publishes the theorem (in essentially modern form) in a privately printed essay

    George Green

  2. 1846-1850

    Lord Kelvin rediscovers Green's essay and popularizes the theorem within the mathematical community

    Lord Kelvin

Summary

  • Green's theorem converts a circulation line integral ∮_C P dx+Q dy into a double integral ∬_D(∂Q/∂x−∂P/∂y)dA.
  • Requires C simple, closed, piecewise-smooth, and positively (counterclockwise) oriented.
  • A special case gives the area formula A=½∮_C(x dy−y dx), letting you compute enclosed area from the boundary alone.
  • Regions with holes require summing over all boundary components, with holes traversed clockwise.
  • Green's theorem is the 2D special case of the more general Stokes' theorem.

References

  1. BookGreen, G. (1828). An Essay on the Application of Mathematical Analysis to the Theories of Electricity and Magnetism.