Tensor[Laplacian] - find the Laplacian of a differential form with respect to a metric.
Calling Sequences
Laplacian(g, ω)
Parameters
g - a covariant metric tensor on an n-dimensional manifold M
ω - a differential form on M
Description
Examples
The Laplace-Beltrami operator Δ is the second order linear differential operator which acts on p-forms ω by
Δω=d δ +δ d ω.
The δ differential operator is the first-order linear differential operator defined in terms of the exterior derivative operator d and the Hodge star operator * by
δω=−1k∗d∗ω ,
where ω is a p-form, k=np+n+1, and n is the dimension of the underlying manifold M. The form δω has degree p−1. Since a metric tensor is needed to define the Hodge star operator * , a metric is also needed to define δ.
The command Laplacian(g, ω) computes the Laplacian of the differential form ω with respect to the metric tensor g.
The command Laplacian:-ExteriorDerivativeStar(g, ω) computes δ applied to ω.
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form Laplacian(...) only after executing the command with(DifferentialGeometry) and with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-Laplacian.
with⁡DifferentialGeometry:with⁡Tensor:
Define a manifold M with coordinates x,y,z and a metric g.
DGsetup⁡x,y,z,M:
g≔evalDG⁡x⁢z⁢dx&tdx+z2⁢dy&tdy+dz&tdz
g≔x⁢z⁢dx⁢dx+z2⁢dy⁢dy+dz⁢dz
Example 1.
Define a differential 1-form α and suppress the printing of the arguments of its coefficients with the PDEtools[declare] command.
α≔DGzip⁡a,b,c⁡x,y,z,dx,dy,dz,plus
α≔a⁡x,y,z⁢dx+b⁡x,y,z⁢dy+c⁡x,y,z⁢dz
PDEtoolsdeclare⁡a,b,c⁡x,y,z
a⁡x,y,z⁢will now be displayed as⁢a
b⁡x,y,z⁢will now be displayed as⁢b
c⁡x,y,z⁢will now be displayed as⁢c
Compute the Laplacian of α.
map⁡expand,Laplacian⁡g,α
−−3⁢ax2⁢z⁢x2+ax,xz⁢x+cxz+az⁢x3+ay,yz2+az2⁢z+az,z⁢dx−by,yz2+2⁢cyz−bx2⁢z⁢x2+bx,xz⁢x−bz2⁢z+bz,z⁢dy−a2⁢x2⁢z2−axx⁢z2+3⁢cz2⁢z−3⁢c2⁢z2+cz,z−2⁢byz3−cx2⁢x2⁢z+cx,xx⁢z+cy,yz2⁢dz
Example 2.
Define a 2 form β and compute its Laplacian.
β≔DGzip⁡a,b,c⁡x,y,z,dx&wedgedy,dx&wedgedz,dy&wedgedz,plus
β≔a⁢dx⁢⋀⁢dy+b⁢dx⁢⋀⁢dz+c⁢dy⁢⋀⁢dz
map⁡expand,Laplacian⁡g,β
−−3⁢ax2⁢z⁢x2+ax,xz⁢x−cxz+az⁢x3+ay,yz2+2⁢byz−3⁢az2⁢z+az,z⁢dx⁢⋀⁢dy+3⁢bx2⁢z⁢x2−bx,xz⁢x−bz⁢x3+2⁢ayz3+b2⁢z2−bz2⁢z−bz,z−by,yz2⁢dx⁢⋀⁢dz+−cy,yz2+a2⁢x2⁢z2−axx⁢z2−c2⁢z2+cz2⁢z−cz,z+cx2⁢x2⁢z−cx,xx⁢z⁢dy⁢⋀⁢dz
Example 3.
Compute the delta derivative of the 2 form β.
Laplacian:-ExteriorDerivativeStar⁡g,β
2⁢ay+b⁢z+2⁢z2⁢bz2⁢z2⁢dx−−a+2⁢x⁢ax+x2⁢c−2⁢x2⁢cz⁢z2⁢z⁢x2⁢dy−−b⁢z+2⁢x⁢bx⁢z+2⁢x2⁢cy2⁢z2⁢x2⁢dz
See Also
DifferentialGeometry
Tensor
ExteriorDerivative
HodgeStar
Download Help Document