DifferentialGeometry
Pullback
pullback a differential p-form by the Jacobian of a transformation
Calling Sequence
Parameters
Description
Examples
Pullback(Phi, omega)
Phi
-
a transformation from a manifold M to a manifold N
omega
a differential r-form on the manifold N, where r is not greater than the dimension of M
The pullback of omega with respect to a transformation Phi: M -> Nis an r-form theta on the manifold M and is denoted by theta = Phi^*(omega). If p is a point of M and X_1, X_2, ..., X_r are vectors in T_pM, then:
theta(p)(X_1, X_2, ..., X_r) = omega(Phi_*(X_1), Phi_*(X_2), ..., Phi_*(X_r)) (*)
The pullback of a 0-form, that is, a real-valued function g on N, is the real-valued function f = g o Phi on M.
In components, let J be the Jacobian matrix of Phi computed with respect to a system of coordinates x^i on M and y^j on N and evaluated at p. Let a be the row vector whose entries are the components of a 1-form omega at q = Phi(p), computed with respect to the coordinate basis on N. Then the matrix vector product b = a.J gives the components of theta = Phi^*(omega) with respect to the coordinate basis on M.
From the definition (*), it follows that Phi^* is a homomorphism from the ring of all differential forms on N to the ring of differential forms on M, that is, Phi^*(omega1 + omega2) = Phi^*(omega1) + Phi^*(omega2) and Phi^*(omega1 &w omega2) = Phi^*(omega1) &w Phi^*(omega2) (**) for all forms omega1 and omega2 on N. Pullback uses property (*), applied to 1-forms, together with (**) to calculate the pullback of an r-form.
The Pullback command can be applied to a list of differential forms.
This command is part of the DifferentialGeometry package, and so can be used in the form Pullback(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-Pullback.
with⁡DifferentialGeometry:
Example 1.
Calculate the pullback of the differential form omega1 with respect to the transformation Phi1 at the point p1 = [x = 1, y = 2]. Check this result using the Jacobian of Phi1.
DGsetup⁡x,y,M:DGsetup⁡u,v,w,N:
p1≔x=1,y=2
Φ1≔Transformation⁡M,N,u=x+2⁢y,v=3⁢x+4⁢y,w=5⁢x+6⁢y
Φ1≔u=x+2⁢y,v=3⁢x+4⁢y,w=5⁢x+6⁢y
ω1≔v⁢du+w⁢dv+u⁢dw
ω1≔du⁢v+dv⁢w+dw⁢u
θ1≔Pullback⁡Φ1,ω1
θ1≔23⁢x+32⁢y⁢dx+32⁢x+44⁢y⁢dy
theta1_at_p1≔eval⁡θ1,p1
theta1_at_p1≔87⁢dx+120⁢dy
We check this last result against a direct computation using the Jacobian of Phi1. First calculate the coordinates of q1 = Phi1(p1) and evaluate omega1 at this point.
q1≔ApplyTransformation⁡Φ1,p1
q1≔u=5,v=11,w=17
omega1_at_q1≔eval⁡ω1,q1
omega1_at_q1≔11⁢du+17⁢dv+5⁢dw
a≔Vectorrow⁡11,17,5
a≔11175
J≔Tools:-DGinfo⁡Φ1,JacobianMatrix
J≔123456
b≔a·J
b≔87120
The entries of b coincide with the components of theta1_at_p1.
Example 2.
Pullback⁡Φ1,du,dv
dx+2⁢dy,3⁢dx+4⁢dy
Example 3.
Express the function f and the 2-form omega2 in spherical coordinates.
DGsetup⁡x,y,z,E3:DGsetup⁡ρ,θ,φ,Sp:
f2≔x2+y2+z2
ω2≔evalDG⁡z⁢dx&wdy−y⁢dx&wdz+x⁢dy&wdz
ω2≔z⁢dx⁢⋀⁢dy−y⁢dx⁢⋀⁢dz+x⁢dy⁢⋀⁢dz
Φ2≔Transformation⁡Sp,E3,x=ρ⁢cos⁡θ⁢sin⁡φ,y=ρ⁢sin⁡θ⁢sin⁡φ,z=ρ⁢cos⁡φ
Φ2≔x=ρ⁢cos⁡θ⁢sin⁡φ,y=ρ⁢sin⁡θ⁢sin⁡φ,z=ρ⁢cos⁡φ
simplify⁡Pullback⁡Φ2,f2
ρ2
simplify⁡Pullback⁡Φ2,ω2
−ρ3⁢sin⁡φ⁢dθ⁢⋀⁢dφ
See Also
Pushforward
PushPullTensor
Transformation
Download Help Document