DifferentialGeometry
IntegrateForm
evaluate a p-fold iterated integral of a differential p-form
Calling Sequence
Parameters
Description
Examples
IntegrateForm(omega, integrationlimits)
omega
-
a differential p-form on a p-dimensional manifold N
integrationlimits
a p-term sequence t1 = a1 .. b1, t2 = a1(t1) .. b1(t1), t3 = a3(t1, t2) .. b3(t1, t2), ..., where t1, t2, t3, ... are coordinates on N, defining a p-dimensional region in N
With respect to the coordinates t1, t2, t3, ... on N, the p-form omega can be written as omega = f(t1, t2, t3, ...) dt1 &w dt2 &w dt3 .... The command IntegrateForm integrates the function f(t1, t2, t3, ...) over the p-dimensional region defined by t1 = a1 .. b1, t2 = a1(t1) ... b1(t1), t3 = a3(t1, t2) ... b3(t1, t2), ....
In many cases one is interested in integrating a p-form omega on a manifold M over an imbedding submanifold phi : N -> M. This is done in the DifferentialGeometry package by first computing the pullback theta = Phi^*(omega) with the Pullback command and then integrating the resulting p-form theta over N with the IntegrateForm command.
In many cases a more efficient alternative to the IntegrateForm command is provided by the VectorCalculus[int] command.
This command is part of the DifferentialGeometry package, and so can be used in the form IntegrateForm(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-IntegrateForm.
with⁡DifferentialGeometry:
Example 1.
Integrate the 2-form (x^2 + 3*x*y)*dx &w dy over the triangle T with vertices (0, 0), (1, 0), and (0, 1).
DGsetup⁡x,y,M:
ω≔evalDG⁡x2+3⁢x⁢y⁢dx&wdy
ω≔x2+3⁢x⁢y⁢dx⁢⋀⁢dy
To evaluate the double integral over T we note that for a point (x, y) in T the variable x ranges from 0 to 1 and, for a given x value, y ranges from 0 to 1 - x.
IntegrateForm⁡ω,x=0..1,y=0..1−x
524
Example 2.
Compute the line integral of the 1-form omega = y^2*dx + z^2*dy + x*y*z*dz along the curve x = sin(t)*cos(t), y = sin(t)*cos(t), z = exp(t) from t = 0 to t = Pi.
DGsetup⁡t,N:DGsetup⁡x,y,z,E3:
ω≔evalDG⁡y2⁢dx+z2⁢dy+x⁢y⁢z⁢dz
ω≔y2⁢dx+z2⁢dy+z⁢x⁢y⁢dz
Φ≔Transformation⁡N,E3,x=sin⁡t⁢cos⁡t,y=sin⁡t⁢cos⁡t,z=exp⁡t
Φ≔x=sin⁡t⁢cos⁡t,y=sin⁡t⁢cos⁡t,z=ⅇt
IntegrateForm⁡Pullback⁡Φ,ω,t=0..π
−310+3⁢ⅇ2⁢π10
Example 3.
Compute the surface integral of the 1-form omega = y^2*z^2*dx &w dy + x^2*y^2*dy &w dz + x^2*z^2*dx &w dz over the surface of the ellipsoid x^2 + y^2/4 + z^2/9 = 1.
We shall parameterize the surface of the ellipsoid with coordinates (theta, phi) and map x = cos(theta)*sin(phi), y = 2*sin(theta)*sin(phi), z = 3*cos(phi).
DGsetup⁡θ,φ,N:DGsetup⁡x,y,z,E3:
ω≔evalDG⁡−3⁢y2⁢z⁢dx&wdy+x⁢z2⁢dy&wdz−x2⁢y⁢dx&wdz
ω≔−3⁢y2⁢z⁢dx⁢⋀⁢dy−x2⁢y⁢dx⁢⋀⁢dz+x⁢z2⁢dy⁢⋀⁢dz
Φ≔Transformation⁡N,E3,x=cos⁡θ⁢sin⁡φ,y=2⁢sin⁡θ⁢sin⁡φ,z=3⁢cos⁡φ
Φ≔x=cos⁡θ⁢sin⁡φ,y=2⁢sin⁡θ⁢sin⁡φ,z=3⁢cos⁡φ
IntegrateForm⁡Pullback⁡Φ,ω,θ=0..2⁢π,φ=0..π
16⁢π5
See Also
Pullback
Transformation
VectorCalculus[int]
Download Help Document