divgrad
Divgrad is shorthand in vector calculus for the divergence of the gradient of a scalar field. If f is a scalar function, its gradient ∇f is a vector field, and applying the divergence to that vector field gives ∇·(∇f). This composition is commonly denoted as divgrad f and is equal to the Laplacian of f, written Δf.
In n-dimensional Euclidean space, the Laplacian is Δf = ∑_{i=1}^n ∂²f/∂x_i². In two dimensions, this becomes Δf =
Applications and properties: The divgrad operator appears in Poisson's equation Δu = g, the diffusion and heat
Numerical use: In finite difference methods, divgrad yields a discrete approximation to the Laplacian via a
Example: For f(x,y) = x^2 + y^2, ∇f = (2x, 2y) and ∇·(∇f) = ∂(2x)/∂x + ∂(2y)/∂y = 4, so Δf = 4.