Vector Differentiation: Short Notes and Examples
Vector Differentiation involves operations on vector fields, such as finding the gradient, divergence,
and curl.
1. Gradient (del f):
- Definition: The gradient of a scalar field f(x, y, z) is a vector field pointing in the direction of the
greatest rate of increase of the scalar field.
- Formula: del f = (partial f/partial x) i + (partial f/partial y) j + (partial f/partial z) k
- Example: If f(x, y, z) = x^2 + y^2 + z^2, then del f = 2x i + 2y j + 2z k
2. Divergence (del dot F):
- Definition: The divergence of a vector field F = P(x, y, z) i + Q(x, y, z) j + R(x, y, z) k measures
the magnitude of a source or sink at a given point.
- Formula: del dot F = (partial P/partial x) + (partial Q/partial y) + (partial R/partial z)
- Example: If F = x i + y j + z k, then del dot F = 1 + 1 + 1 = 3
3. Curl (del cross F):
- Definition: The curl of a vector field F is a vector field that represents the rotation of F around a
point.
- Formula: del cross F = [(partial R/partial y - partial Q/partial z) i + (partial P/partial z - partial
R/partial x) j + (partial Q/partial x - partial P/partial y) k]
- Example: If F = y i - x j, then del cross F = -2 k
4. Laplacian (del squared f):
- Definition: The Laplacian is the divergence of the gradient of a scalar field, which describes the
rate at which the average value of f(x, y, z) changes with respect to its surrounding values.
- Formula: del squared f = (partial^2 f/partial x^2) + (partial^2 f/partial y^2) + (partial^2 f/partial z^2)
- Example: If f(x, y, z) = x^2 + y^2 + z^2, then del squared f = 6
5. Examples:
- Gradient Example:
Q: Find the gradient of f(x, y, z) = x^2 + y^2 + z^2 at point (1,1,1).
A: del f = 2x i + 2y j + 2z k, so at (1,1,1), del f = 2 i + 2 j + 2 k.
- Divergence Example:
Q: Compute the divergence of F = x^2 i + y^2 j + z^2 k.
A: del dot F = partial/partial x (x^2) + partial/partial y (y^2) + partial/partial z (z^2) = 2x + 2y + 2z.
- Curl Example:
Q: Find the curl of the vector field F = yz i + zx j + xy k.
A: del cross F = [partial/partial y (xy) - partial/partial z (zx)] i - [partial/partial x (yz) - partial/partial
z (yz)] j + [partial/partial x (zx) - partial/partial y (xy)] k.
After calculation, del cross F = (x - x)i + (y - y)j + (z - z)k = 0 i + 0 j + 0 k = 0.
- Laplacian Example:
Q: Compute the Laplacian of f(x, y, z) = x^2 + y^2 + z^2.
A: del squared f = 2 + 2 + 2 = 6.