Intuition The one core idea
Green's theorem is a bookkeeping law: the total of all the tiny turning-and-spreading happening inside a flat region equals a single measurement you take by walking once around its edge. Everything below is just the vocabulary you need before that sentence makes sense — points, arrows, curves, loops, slopes, sums-of-slices, and the two "flavours" of edge-walking.
This page assumes you have seen nothing . We build every symbol the parent note uses — P , Q , d x , d y , ∮ , ∬ , ∂ , n , T , d A , d s , ⋅ , ∇ — from a blank chalkboard.
Everything happens on a flat sheet, the plane . A location on it is a point , written ( x , y ) .
( x , y )
x = how far RIGHT of a fixed centre. y = how far UP. Together ( x , y ) pins one dot on the sheet. Left is negative x , down is negative y .
Why we need it: Green's theorem compares a region (a filled patch of the plane) to its edge . Both are just collections of points ( x , y ) , so this is the alphabet of everything else.
At every point ( x , y ) we glue a little arrow . This is a vector field .
F = ( P , Q )
F (bold letter) is the whole cloud of arrows. At the point ( x , y ) the arrow there has:
a horizontal part P ( x , y ) — how much the arrow points RIGHT (negative = left),
a vertical part Q ( x , y ) — how much it points UP (negative = down).
So F ( x , y ) = ( P ( x , y ) , Q ( x , y ) ) . The letters P and Q are just names for these two functions.
Picture: think of F as wind. At each spot the wind blows in some direction with some strength — that's the arrow. P is the eastward wind, Q the northward wind.
Why the topic needs it: Green's theorem is a statement about a vector field . P and Q appear in literally every formula on the parent page. See Line Integrals and Curl and Divergence for what we do with them.
Before we walk any loops, we need one tiny piece of arrow-arithmetic that the flux form uses.
⋅
Given two arrows a = ( a 1 , a 2 ) and b = ( b 1 , b 2 ) , their dot product is a single number:
a ⋅ b = a 1 b 1 + a 2 b 2 .
Multiply the two horizontal parts, multiply the two vertical parts, add. The result is large and positive when the arrows point the same way, zero when they are perpendicular, negative when they oppose. It measures how much the two arrows agree in direction (scaled by their lengths).
Why the topic needs it: the flux form writes F ⋅ n — "how much of the wind F points along the outward direction n ." That number is exactly F x n x + F y n y , the dot product. Keep this formula handy for §6.
C — and "closed", "simple", "smooth"
A curve C is a path traced by a moving dot. It is closed if it ends where it started (a loop). It is simple if it never crosses itself. It is piecewise smooth if it is made of finitely many pieces that each have a well-defined direction of travel (a tangent) — no infinitely jagged bits. We need this smoothness so that the tiny steps d x , d y below actually make sense at (almost) every point.
Definition Orientation — which way you walk
A loop can be walked two ways. Counterclockwise (CCW) is the "positive" direction. The rule that never lies: the enclosed region stays on your LEFT as you walk.
Why the topic needs it: the parent note's whole left-hand side is "walk around C ." Get the direction wrong and every equation flips sign — this is one of the listed Common Mistakes. And if C weren't piecewise smooth, the line integral wouldn't even be defined.
D and area element d A
D is the filled patch inside the loop C . To add something up over D we mentally chop it into microscopic tiles. Each tiny tile has area d A (think: d A = d x d y , a tiny width times a tiny height). "d " always means "a tiny bit of."
Definition Simply connected (hole-free)
Green's theorem needs D to be simply connected : one single piece with no holes punched in it. Picture a solid pancake, not a doughnut. Why? A hole could hide a bad point (a singularity) of the field, and then the boundary would no longer "remember" everything inside — the theorem would fail. This is the geometric partner of the "continuous partials everywhere inside" rule in §5.
Picture: D is a floor; d A is one tile in the tiling. Summing over all tiles is the double integral (next section).
Every integral sign is a stretched "S" for Sum . The differences are what you sum over.
Definition Single integral
∫ a b f d x
Slide x from a to b ; at each spot take a sliver of height f and width d x ; add all slivers. Result: the running total of f . This is where the Fundamental Theorem of Calculus lives.
Definition Double integral
∬ D ( ⋯ ) d A
Same idea, but over a 2D floor D : multiply the thing ( ⋯ ) by each tile's area d A and add over every tile. This is the RIGHT side of Green's theorem. See Double Integrals .
∮ C P d x + Q d y
The circle on the "S", ∮ , means "sum around a closed loop." As you inch along C , your step has a horizontal part d x and a vertical part d y . You add up P ⋅ ( step right ) + Q ⋅ ( step up ) — i.e. how much the wind F pushes you along your walk. This is the LEFT side. See Line Integrals .
d x and d y mean on a curve
As you walk one tiny step, d x is how much your x changed and d y how much your y changed. On a purely vertical step, d x = 0 (you didn't move sideways). This tiny fact is exactly what kills the vertical sides in the parent's Step 1 proof.
A derivative answers "how fast does this quantity change?" On a 2D function like P ( x , y ) we must say change in which direction .
Definition Partial derivative
∂ x ∂ P (say "partial P by partial x") = how fast P changes as you nudge only x , holding y frozen. The curly ∂ is a "d " that whispers "other variables are held still." Likewise ∂ y ∂ Q freezes x and nudges y .
All four shorthands (subscript = "derivative with respect to this variable"):
P x := ∂ x ∂ P , P y := ∂ y ∂ P , Q x := ∂ x ∂ Q , Q y := ∂ y ∂ Q .
Picture: stand on a hilly surface P . Walk due East: your uphill steepness is ∂ P / ∂ x . Walk due North: it's ∂ P / ∂ y . Same hill, two different slopes.
∇ ("del" or "nabla")
∇ is a bundled instruction: "take the partial in x , and the partial in y , and stack them as an arrow."
∇ = ( ∂ x ∂ , ∂ y ∂ ) .
Feed it a vector field with a dot and you get a single number, the divergence :
∇ ⋅ F = ( ∂ x ∂ , ∂ y ∂ ) ⋅ ( P , Q ) = ∂ x ∂ P + ∂ y ∂ Q = P x + Q y .
The "⋅ " is the same dot product from §2 — it just multiplies each slot's operator into each field-component and adds.
Intuition Why "continuous partial derivatives" is required
The theorem's hypothesis says P , Q have continuous partials everywhere inside D . That just means the arrows and their slopes don't suddenly jump or blow up. The singular field ( − y , x ) / ( x 2 + y 2 ) explodes at the origin — its slope isn't defined there — so the theorem is not allowed to apply, which is why the parent's Mistake #1 happens.
The two combinations the parent builds from these partials:
Curl (scalar): Q x − P y — measures local counterclockwise spin .
Divergence: P x + Q y = ∇ ⋅ F — measures local spreading-out .
Both are explained fully in Curl and Divergence ; here you only need to know they are combinations of partial derivatives .
The flux form needs two special arrows attached to the walk, plus a proper measure of step length.
d s
d s = the length of one tiny step along C . Since a step is d x sideways and d y up, Pythagoras gives its true length:
d s = d x 2 + d y 2 ( ≥ 0 ) .
It is always positive — it's a length, not a direction.
T and outward unit normal n
Divide your tiny step by its own length d s and you get the unit tangent T = ( d x / d s , d y / d s ) — an arrow of length 1 pointing the way you walk. Rotate T clockwise by 90° and you get the outward unit normal n = ( d y / d s , − d x / d s ) — a length-1 arrow pointing straight OUT of the region.
Why "out"? If the region is on your left (CCW), then turning your forward-arrow to the right (clockwise) makes it point away from the region.
Definition Flux — "net flow across the fence"
Flux is the total amount of the wind field F that crosses out through the boundary C (leaking out counts positive, blowing in counts negative). At each tiny step we measure the outward component F ⋅ n (dot product, §2: F x n x + F y n y ) and multiply by the step length d s , then add all the way around:
flux = ∮ C F ⋅ n d s .
The parent's flux form of Green's theorem says this total leak equals the total divergence ∬ D ( ∇ ⋅ F ) d A inside.
Why the topic needs it: the flux form is literally built from n , d s , and the dot product. Everything in it is now defined.
Green's theorem is one floor in a bigger building; Stokes' Theorem and the Divergence Theorem are its 3D relatives, and Conservative Vector Fields are the special case where the loop integral is always 0 . You don't need them yet — just know the vocabulary above unlocks all of them.
Read this bottom-up: each row is built from the ideas above it, and the last row is the theorem itself.
Building block
Feeds into
Points ( x , y )
everything — the alphabet of the plane
Vector field F = ( P , Q )
line integral, curl, divergence, flux
Dot product ⋅
divergence ∇ ⋅ F and flux F ⋅ n
Curve C (simple, closed, piecewise smooth) + orientation
the line integral ∮ C
Region D (filled, simply connected) + tile d A
the double integral ∬ D
Partial derivatives + operator ∇
curl Q x − P y and divergence P x + Q y
Tangent T , normal n , d s , flux
the flux form ∮ C F ⋅ n d s
All of the above together
Green's theorem (both forms)
Test yourself — if any answer is fuzzy, reread that section.
What do the two numbers in the point ( x , y ) mean? x = distance right of centre, y = distance up; together they name one dot.
What are P and Q in the field F = ( P , Q ) ? P = horizontal (rightward) part of the arrow at ( x , y ) ; Q = vertical (upward) part.
What is the dot product a ⋅ b and what does it measure? a 1 b 1 + a 2 b 2 — a single number saying how much two arrows agree in direction (positive same way, zero perpendicular, negative opposite).
When is a curve "simple", "closed", and "piecewise smooth"? Simple = never crosses itself; closed = ends where it started; piecewise smooth = finitely many pieces each with a well-defined tangent.
Which way is positive orientation, and what's the "on your left" rule? Counterclockwise; the enclosed region stays on your LEFT as you walk.
What does "simply connected" require of D ? One single filled piece with no holes (a pancake, not a doughnut).
What does ∮ mean vs ∬ ? ∮ = sum around a closed loop (line integral); ∬ = sum over a filled 2D region (double integral).
On a vertical step, what is d x ? Zero — you didn't move sideways, so d x = 0 .
What does ∂ y ∂ P measure? How fast P changes as you nudge only y , holding x frozen (a slope in the y -direction).
What is the operator ∇ and what is ∇ ⋅ F ? ∇ = ( ∂ / ∂ x , ∂ / ∂ y ) ; ∇ ⋅ F = P x + Q y , the divergence.
Curl vs divergence as combinations of partials? Curl = Q x − P y (spin, a difference); divergence = P x + Q y (spreading, a sum).
What is the formula for the arc-length element d s ? How do you get the outward normal n from the tangent T ? Rotate T clockwise by 9 0 ∘ : if T = ( d x / d s , d y / d s ) then n = ( d y / d s , − d x / d s ) .
What does "flux" mean here? The net flow of F out across the boundary C : ∮ C F ⋅ n d s (out positive, in negative).
Why must P , Q have continuous partials inside D ? So the field and its slopes never blow up; a singularity (e.g. at the origin) breaks the hypothesis and the theorem fails.