Tensor[Laplacian] - find the Laplacian of a differential form with respect to a metric.
Calling Sequences
Laplacian(g, omega)
Parameters
g - a covariant metric tensor on an n-dimensional manifold M
omega - a differential form on M
|
Description
|
|
•
|
The Laplace-Beltrami operator Delta is the second order linear differential operator which acts on p-forms omega by Delta(omega) = (d o delta + delta o d) (omega).
|
•
|
The delta differential operator is the first-order linear differential operator defined in terms of the exterior derivative operator d and the Hodge star operator * by
|
delta(omega) = (-1)^(k)(* d *)(omega),
where omega is a p-form and k = n*p +n +1. The form delta(omega) has degree p-1. Since a metric tensor is needed to define the Hodge star operator * , a metric is also needed to define delta.
•
|
The Laplacian(g, omega) computes the Laplacian Delta(omega) of the differential form with respect to the metric tensor g.
|
•
|
The command Laplacian:-ExteriorDerivativeStar(g, omega) computes delta(omega).
|
•
|
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.
|
|
|
Examples
|
|
>
|
|
Define a manifold M with coordinates [x, y, z] and a metric g on M.
>
|
|
M >
|
|
| (2.1) |
Example 1.
Define a differential 1-form alpha and suppress the printing of the arguments of its coefficients with the PDEtools[declare] command.
M >
|
|
| (2.2) |
M >
|
|
Compute the Laplacian of alpha.
M >
|
|
| (2.4) |
Example 2.
Define a 2 form beta and compute its Laplacian.
M >
|
|
| (2.5) |
M >
|
|
| (2.6) |
Example 3.
Compute the delta derivative of the 2 form beta.
M >
|
|
| (2.7) |
|
|
Download Help Document
Was this information helpful?