These three differential operators map how scalar and vector fields change across space. They form the core building blocks of vector calculus.
Operator
Input
Output
What It Measures
Gradient (∇ϕ)
Scalar
Vector
Steepest increase direction and rate
Divergence (∇⋅F)
Vector
Scalar
Net outward flux, sources/sinks
Curl (∇×F)
Vector
Vector
Local rotational spinning effect
Common pitfall: Always type-check your inputs and outputs. A phrase like div of a scalar is mathematically meaningless since divergence only accepts vector fields.
Placeholder: Gradient, Divergence, and Curl
Formulas and Identities
The gradient, divergence, and curl use distinct partial derivative structures:
∇ϕ=∂x∂ϕi^+∂y∂ϕj^+∂z∂ϕk^
∇⋅F=∂x∂Fx+∂y∂Fy+∂z∂Fz
∇×F=i^∂xFxj^∂yFyk^∂zFz
Key identities connect these operations:
∇×(∇ϕ)=0 (curl of gradient is zero)
∇⋅(∇×F)=0 (divergence of curl is zero)
∇2ϕ=∇⋅(∇ϕ) (the Laplacian)
Physics link:E=−∇V defines electric field as the negative gradient of potential, while ∇⋅E=ρ/ε0 is Gauss's law.
Rotational Vector Field
Practise this lesson
The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.