Student[VectorCalculus]
Laplacian
compute the Laplacian of a function or a vector field
Calling Sequence
Parameters
Description
Examples
Laplacian(f, c)
Laplacian(F)
f
-
algebraic expression
c
(optional) specify the coordinate system
F
(optional) vector field or Vector-valued procedure; a vector field
The Laplacian(f) calling sequence computes the Laplacian of the function f in the current coordinate system. If no coordinate system has been explicitly specified, the command will assume a cartesian system with coordinates the variables which appear in the expression f. This is equivalent to Del·Del⁡f and ∇·∇⁡f.
The Laplacian(f, c) calling sequence computes the Laplacian of the function f in the coordinate system specified by the parameter c, which can be given as:
* an indexed name, e.g., sphericalr,φ,θ
* a name, e.g., spherical; default coordinate names will be used
* a list of names, e.g., r,φ,θ; the current coordinate system will be used, with these as the coordinate names
For more information on coordinate systems, see SetCoordinates.
The Laplacian(c) calling sequence returns the differential form of the Laplacian operator in the coordinate system specified by the parameter c.
The Laplacian() calling sequence returns the differential form of the Laplacian operator in the current coordinate system. If no coordinate system has been set (by a call to SetCoordinates), cartesian coordinates are assumed.
The Laplacian(F) calling sequence, where F is either a vector field or a Vector-valued procedure (which is interpreted as a vector field), computes the Laplacian of the vector field as follows.
* If the coordinate system of F is cartesian, the command maps the algebraic Laplacian onto the component functions.
* If F is a 3-D vector field, use the formula Del⁡Del·F−Del&xDel&xF.
* Otherwise, map F to cartesian coordinates, apply the algebraic Laplacian to the component functions, and then map the result back to the original coordinate system of F.
with⁡StudentVectorCalculus:
Laplacian⁡x3+y3+z3
6⁢x+6⁢y+6⁢z
Laplacian⁡x3+a⁢y3,x,y
6⁢a⁢y+6⁢x
Laplacian⁡
∂2∂x2SF ⁡x,y+∂2∂y2SF ⁡x,y
Laplacian⁡f⁡r,θ,polarr,θ
∂∂rf⁡r,θ+r⁢∂2∂r2f⁡r,θ+∂2∂θ2f⁡r,θrr
The Laplacian in cylindrical coordinates:
SetCoordinates⁡cylindricalr,θ,z
cylindricalr,θ,z
Laplacian⁡f⁡r,θ,z
∂∂rf⁡r,θ,z+r⁢∂2∂r2f⁡r,θ,z+∂2∂θ2f⁡r,θ,zr+r⁢∂2∂z2f⁡r,θ,zr
Del·Del⁡f⁡r,θ,z
∂∂rr⁢∂∂rSF ⁡r,θ,z+∂∂θ∂∂θSF ⁡r,θ,zr+∂∂zr⁢∂∂zSF ⁡r,θ,zr
F≔VectorField⁡r3,zθ,sqrt⁡z
simplify⁡Laplacian⁡F
simplify⁡Del⁡Del·F−Del&xDel&xF
See Also
Student[VectorCalculus][CrossProduct]
Student[VectorCalculus][Curl]
Student[VectorCalculus][Del]
Student[VectorCalculus][Divergence]
Student[VectorCalculus][DotProduct]
Student[VectorCalculus][Nabla]
Student[VectorCalculus][SetCoordinates]
Student[VectorCalculus][VectorField]
Download Help Document