$\vec F(x,y,z) = \langle P,Q,R\rangle$vector field
A rule assigning a directed quantity (Chapter 14) to every point in a region, rather than a single directed quantity or a single number. P,Q,R are themselves ordinary functions of x,y,z — the components of the arrow attached at each point.
$\nabla$del — the symbolic operator
A directed quantity built not from numbers but from the partial-derivative instructions of Chapter 15: ∇=⟨∂x∂,∂y∂,∂z∂⟩. It does nothing by itself — it only produces a result once "multiplied" against a function or a vector field, exactly as Chapter 02's dxd[⋅] was an instruction, not a number.
$\nabla\cdot\vec F$divergence of F
The result of combining ∇ and F the way Chapter 14's dot product combines two directed quantities — a plain number at each point, measuring how much the field spreads outward from that point.
$\nabla\times\vec F$curl of F
The result of combining ∇ and F the way Chapter 14's cross product combines two directed quantities — a new directed quantity at each point, measuring the field's tendency to rotate around that point.
$\vec F = \nabla f$conservative vector field
A vector field that is itself the gradient (Chapter 15) of some scalar function f, called a potential function for F.
01 · Vector Fields
Chapter 14 attached a single directed quantity to a curve's motion at one instant. A vector field goes further: it attaches a directed quantity to every point in a region simultaneously — a whole plane or space full of arrows.
Definition — Vector Field
A vector field in the plane is F(x,y)=⟨P(x,y),Q(x,y)⟩ — a directed quantity whose components are themselves functions of position. In space, F(x,y,z)=⟨P,Q,R⟩ with three component functions.
Example — Two contrasting vector fields
F(x,y)=⟨x,y⟩: at the point (x,y), the attached arrow is ⟨x,y⟩ itself — pointing directly away from the origin, growing longer farther out. This is a radial field.
G(x,y)=⟨−y,x⟩: at (x,y), the arrow ⟨−y,x⟩ is perpendicular to the radial direction ⟨x,y⟩ (check with the dot product, Chapter 14: ⟨x,y⟩⋅⟨−y,x⟩=−xy+xy=0) — this field circulates around the origin rather than away from it.
02 · The Del Operator and Divergence
Chapter 15's gradient ∇f=⟨fx,fy⟩ came from applying partial derivatives to a single function and bundling the results into a directed quantity. Writing ∇=⟨∂x,∂y,∂z⟩ as a directed quantity of operators in its own right lets the same symbol combine with a vector field two different ways — matching the two products Chapter 14 already built.
Definition — Divergence
∇⋅F=∂x∂P+∂y∂Q+∂z∂R
Exactly Chapter 14's dot-product pattern — multiply matching components and sum — except each "multiplication" of ∂x against P means "apply ∂x∂ to P," not ordinary multiplication.
Step-by-step — Compute the divergence of $\vec F(x,y) = \langle x^2y,\ 3xy^2\rangle$
1
Match the components to P,Q:P=x2y, Q=3xy2.
2
Differentiate P with respect to x (Chapter 15, treating y as constant):∂x∂P=2xy.
3
Differentiate Q with respect to y (treating x as constant):∂y∂Q=6xy.
4
Sum, following the divergence formula:∇⋅F=2xy+6xy=8xy.
5
Interpret at a specific point, say (1,1):∇⋅F(1,1)=8, a positive number — the field is spreading outward (a net "source") at that point.
Geometric intuition — divergence measures outflow
Picture F as the velocity of a flowing fluid at each point. A small region around a point where ∇⋅F>0 has more fluid leaving than entering — a source. Where ∇⋅F<0, more fluid enters than leaves — a sink. Where ∇⋅F=0 everywhere, the flow is incompressible — whatever flows into any small region flows back out in equal amount.
❌ Confusing the gradient of a function with the divergence of a field
Given F(x,y)=⟨x2,y2⟩, a common mix-up: computing something that looks like ∇F=⟨2x,2y⟩ and calling it "the divergence."
Why it breaks: the gradient (Chapter 15) takes a single scalar-valued function f(x,y) and produces a directed quantity ⟨fx,fy⟩. The divergence takes a vector fieldF=⟨P,Q⟩ (already a directed quantity at each point) and produces a single number, Px+Qy. These are different operations on different kinds of input — a vector field has no "gradient" of its own, and a scalar function has no "divergence."
Consequence: for F=⟨x2,y2⟩, the correct divergence is ∇⋅F=∂x∂(x2)+∂y∂(y2)=2x+2y — a single number-valued function, not the directed quantity ⟨2x,2y⟩ produced by the mistaken computation. Keep track of what kind of object is being differentiated: a scalar function gets a gradient (output: directed quantity); a vector field gets a divergence (output: number).
03 · Curl
Definition — Curl
For F(x,y,z)=⟨P,Q,R⟩:
∇×F=⟨∂y∂R−∂z∂Q,∂z∂P−∂x∂R,∂x∂Q−∂y∂P⟩
Exactly Chapter 14's cross-product component pattern — each component skips one matching index — but with ∂x,∂y,∂z standing in for the first directed quantity's components, and P,Q,R for the second.
Step-by-step — Compute the curl of $\vec F(x,y,z) = \langle -y,\ x,\ 0\rangle$ (the rotation field from Section 01, extended into 3D)
1
Identify P,Q,R:P=−y, Q=x, R=0.
2
First component — skip x, use y,z derivatives of R,Q:∂y∂R−∂z∂Q=0−0=0 (R=0 is constant; Q=x does not depend on z).
3
Second component — skip y, use z,x derivatives of P,R:∂z∂P−∂x∂R=0−0=0 (P=−y does not depend on z; R=0 is constant).
4
Third component — skip z, use x,y derivatives of Q,P:∂x∂Q−∂y∂P=1−(−1)=2 (Q=x differentiated w.r.t. x gives 1; P=−y differentiated w.r.t. y gives −1).
5
Assemble:∇×F=⟨0,0,2⟩ — a directed quantity pointing straight up along the z-axis, with magnitude 2, matching the visible circulation of the rotation field from Section 01.
❌ Reversing the subtraction order in a curl component
On the same field, computing the third component as ∂y∂P−∂x∂Q=−1−1=−2 instead of ∂x∂Q−∂y∂P=1−(−1)=2.
Why it breaks: exactly like Chapter 14's cross product, curl inherits the anti-symmetric structure of the cross-product pattern — each component is a specific difference, and the definition fixes which term comes first (∂x∂Q before ∂y∂P in the third slot, matching the index pattern from Section 03's definition). Swapping the order flips the sign, the same failure mode as Chapter 14's a×b vs. b×a.
Consequence:−2=2 — the sign of a curl component determines the direction of rotation (by the same right-hand convention as the cross product), so reversing it points the result in exactly the opposite direction, even though its magnitude happens to come out the same in this example.
04 · Conservative Vector Fields
Some vector fields are secretly gradients of an ordinary function — a fact with a direct, checkable consequence involving curl.
Definition — Conservative Field and the Curl Test
F is conservative if F=∇f for some scalar function f (called a potential function).
If F=⟨P,Q⟩ is conservative in the plane, then ∇×F=0 — this follows directly from Clairaut's theorem (Chapter 15, Section 02): if P=fx and Q=fy, then ∂x∂Q−∂y∂P=fyx−fxy=0.
Step-by-step — Find a potential function for $\vec F(x,y) = \langle 2xy,\ x^2+3y^2\rangle$
1
Check the curl test first (Section 03's third component, 2D case):∂x∂Q−∂y∂P=2x−2x=0 — passes the necessary condition, so a potential function may exist.
2
Set fx=P=2xy and integrate with respect to x (Chapter 06, treating y as constant):f(x,y)=x2y+g(y) for some as-yet-unknown function g(y) (the "constant" of integration with respect to x may still depend on y).
3
Differentiate this candidate f with respect to y and match against Q:fy=x2+g′(y). This must equal Q=x2+3y2, so g′(y)=3y2.
4
Integrate to find g(y):g(y)=y3+C (Chapter 06 power rule for integration).
5
Assemble the potential function:f(x,y)=x2y+y3+C.
6
Verify:fx=2xy=P ✓; fy=x2+3y2=Q ✓.
The curl test is necessary, not always sufficient
On a region with a "hole" removed (for instance, the plane with the origin taken out), a field can satisfy ∇×F=0 everywhere it's defined without being conservative — the standard example is the circulation-like field F=⟨x2+y2−y,x2+y2x⟩, which has zero curl away from the origin but still exhibits genuine rotation when traced all the way around it. Confirming this requires tools (line integrals around closed loops) beyond this chapter's scope — here, the curl test is used only on regions without such holes, where it is both necessary and sufficient.
05 · Exercises
EXERCISE 17.1
Match the field's components to P and Q, differentiate each with respect to its own matching variable, and sum.
A field with zero curl everywhere in the plane (no holes removed) passes the necessary condition for having a potential function — build it the same way as Section 04's step-block.
F(x,y)=⟨3x2+y,x+2y⟩. Curl test: ∂x(x+2y)−∂y(3x2+y)=1−1=0 ✓. Set fx=3x2+y⟹f=x3+xy+g(y). Then fy=x+g′(y) must equal x+2y, so g′(y)=2y⟹g(y)=y2. f(x,y)=x3+xy+y2+C. Verify: fx=3x2+y ✓; fy=x+2y ✓.
Find a potential function for F(x,y)=⟨3x2+y,x+2y⟩, after first checking the curl test.
EXERCISE 17.4
Recall the two different objects divergence and gradient act on, and what kind of output each produces.
The gradient ∇f takes a scalar-valued function f(x,y,z) and produces a directed quantity ⟨fx,fy,fz⟩ (Chapter 15). The divergence ∇⋅F takes a vector field F=⟨P,Q,R⟩ (already a directed quantity at each point) and produces a single number, Px+Qy+Rz. A scalar function has no divergence (there's no vector field to dot ∇ against), and a vector field has no gradient (gradient is only defined for scalar-valued functions).
Explain the difference between the gradient and the divergence: what type of object does each take as input, and what type does each produce as output?
EXERCISE 17.5
Model the flow's velocity as a vector field with components proportional to position, then apply the divergence formula directly.
A capital flow field is modeled as F(x,y)=⟨2x,2y⟩ (dollars per unit time flowing outward at position (x,y) in some abstract market-position space). ∇⋅F=∂x(2x)+∂y(2y)=2+2=4, a positive constant everywhere — the field is a uniform "source": capital is flowing outward from every point at the same constant rate, consistent with F being a pure radial-scaling field.
A capital flow field is modeled as F(x,y)=⟨2x,2y⟩. Compute its divergence and interpret whether the flow acts as a source or a sink.
06 · Chapter Summary
Concept
Formula / Rule
Vector field
F(x,y,z)=⟨P,Q,R⟩; a directed quantity at every point
Del operator
∇=⟨∂x,∂y,∂z⟩
Divergence
∇⋅F=Px+Qy+Rz; scalar; measures outflow
Curl
∇×F; directed quantity; measures rotation
Conservative field
F=∇f for a potential function f
Curl test
F conservative ⟹∇×F=0 (converse needs no holes in the domain)
This closes the second batch of the Calculus sequence: sequences and series, power/Taylor series with error bounds, the full convergence-test toolkit, parametric and polar curves, directed quantities in 2D/3D, partial derivatives, multiple integrals, and vector calculus — the multivariable and infinite-series extensions of the single-variable toolkit built in Chapters 01–08.
Next: Chapter 18 — Differential Equations: First Order, where derivatives appear inside an equation to be solved, rather than computed directly.