This review covers everything from Calculus 3: vectors in 3D space, vector functions, partial derivatives, multiple integrals, vector fields, line and surface integrals, and the three big theorems (Green’s, Stokes’, Divergence). Use this as your final checkpoint.
The dot product A⋅B=∥A∥∥B∥cosθ measures how aligned two vectors are. The cross product A×B gives a vector perpendicular to both, with magnitude equal to the area of the parallelogram they form. Lines in 3D are parametrized as r(t)=r0+tv, and planes are described by n⋅(r−r0)=0.
A space curve is parametrized by r(t)=⟨x(t),y(t),z(t)⟩. The tangent vector is r′(t), the unit tangent is T=r′/∥r′∥, and arc length is L=∫ab∥r′(t)∥dt. Curvature κ measures how fast the curve turns.
For f(x,y,z), partial derivatives fx,fy,fz measure the rate of change in each direction independently. The gradient ∇f=⟨fx,fy,fz⟩ points in the direction of steepest ascent. The directional derivative in direction u is Duf=∇f⋅u. Tangent planes and linear approximations extend the idea of tangent lines to surfaces.
Double integrals compute area, volume, and accumulated quantities over 2D regions. Triple integrals extend this to 3D. The key is choosing the right coordinate system:
Rectangular: dA=dxdy, dV=dxdydz
Polar: dA=rdrdθ
Cylindrical: dV=rdrdθdz
Spherical: dV=ρ2sinφdρdφdθ
The extra factors (r, ρ2sinφ) are Jacobians that account for how the coordinate grid stretches.
5. Vector Fields, Line Integrals, and Surface Integrals
A vector field assigns a vector to each point: F(x,y,z)=⟨P,Q,R⟩. The line integral ∫CF⋅dr computes work done by the field along a path. The surface integral ∬SF⋅dS computes flux through a surface. Conservative fields have a potential function f where F=∇f, and their line integrals are path-independent.
These theorems connect integrals across different dimensions. They all say the same thing: what happens on the boundary determines what’s happening inside.
Green’s Theorem (2D): line integral around a closed curve = double integral over the enclosed region
∮CPdx+Qdy=∬D(∂x∂Q−∂y∂P)dA
Stokes’ Theorem (3D surfaces): surface integral of curl = line integral around the boundary
∬S(∇×F)⋅dS=∮CF⋅dr
Divergence Theorem (3D volumes): flux through a closed surface = triple integral of divergence inside
∬SF⋅dS=∭E(∇⋅F)dV
Curl measures rotation. Divergence measures sources and sinks. If curl F = 0 (and the domain is simply connected), F is conservative. If div F = 0, the field is incompressible.
Compute the outward flux of F=⟨x,y,z⟩ through the unit sphere.
Drag to rotate · Scroll/Pinch to zoom
Instead of parametrizing the sphere, use the Divergence Theorem. The divergence is:
∇⋅F=1+1+1=3
Integrate over the unit ball:
∬SF⋅dS=∭E3dV=3⋅34π=4π
Example 2: Stokes’ Theorem
Evaluate the circulation of F=⟨−y,x,0⟩ around the unit circle in the xy-plane.
Compute the curl:
∇×F=⟨0,0,2⟩
The flat unit disk has upward normal n=⟨0,0,1⟩, so:
∬D(∇×F)⋅dS=∬D2dA=2π
Example 3: Volume in Spherical Coordinates
Find the volume of the unit ball x2+y2+z2≤1.
In spherical coordinates, ρ (rho) is the distance from the origin, φ (phi) is the angle from the positive z-axis, and θ (theta) is the angle in the xy-plane. The volume element is dV=ρ2sinφdρdφdθ.
V=∫02π∫0π∫01ρ2sinφdρdφdθ
The innermost integral:
∫01ρ2dρ=31
The middle integral:
∫0πsinφdφ=2
The outer integral:
∫02πdθ=2π
Multiply them together: V=31⋅2⋅2π=34π.
Example 4: Line Integral (Work)
Compute the work done by F=⟨−y,x⟩ along the unit circle from (1,0) back to (1,0), counterclockwise.
Gauss’s Law: the Divergence Theorem applied to electric fields. Total electric flux through a closed surface equals the enclosed charge.
Faraday’s Law: Stokes’ Theorem applied to the electric field. The induced voltage around a loop equals the rate of change of magnetic flux.
Fluid dynamics: divergence tells you where fluid is being created or destroyed. Curl tells you where it’s spinning.
Game engines: wind simulation uses vector fields with curl for vortices and divergence for sources/sinks. Particle emitters use divergence to control outflow. Lighting on curved surfaces uses surface integrals. Flow fields guide AI pathfinding.