DifferentialGeometry[Pushforward] - pushforward a vector or a vector field by the Jacobian of a transformation
|
Calling Sequence
|
|
Pushforward(Phi, X, pt)
Pushforward(Phi, X)
Pushforward(Phi, Psi, X)
|
|
Parameters
|
|
Phi
|
-
|
a transformation from a manifold M to a manifold N
|
X
|
-
|
a vector defined at a point pt of M; or a vector field on M
|
pt
|
-
|
a list specifying the coordinates of a point on M
|
Psi
|
-
|
a transformation from the manifold N to a manifold M, typically the inverse of the map Phi
|
|
|
|
|
Description
|
|
•
|
In differential geometry, the Jacobian of a transformation Phi: M -> N is considered to be a linear transformation between tangent spaces Phi_*: T_pM -> T_qN, where p is a point of M and q = Phi(p). Let X be a tangent vector in T_pM. Then Y = Phi_*(X) may be defined in one of two ways. If X is viewed as a derivation on the smooth functions defined in a neighborhood of p in M, then Y = Phi_*(X) is the derivation on the smooth functions g defined in a neighborhood q of N by Y(g) = X(Phi o g). If X is viewed as the tangent vector to a curve alpha(t) at t = 0, then Y is the tangent vector to the curve beta = (Phi o alpha)(t) at t = 0.
|
•
|
The vector Y = Phi_*(X) is called the pushforward of X by Phi. The vector Y is computed by Pushforward(Phi, X, pt), where pt = [a1, a2, a3, ...] or pt = [x1 = a1, x2 = a2, x3 = a3, ...] are the coordinates of the point p.
|
•
|
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 column vector whose entries are the components of X computed with respect to the coordinate basis on M. Then the matrix vector product b = J.a gives the components of Y = Phi_*(X) with respect to the coordinate basis on N.
|
•
|
The command Pushforward(Phi, X) returns a vector on N whose coefficients are functions of the coordinates on M. The result defines the pushforward of the vector field X at an arbitrary point of M.
|
•
|
If Phi is an invertible transformation with inverse Psi, then a vector field Y on N can be constructed from a vector field X on M by setting Y(q) = Phi_*(X(p)), where q is an arbitrary point of N and p = Psi(q). The command Pushforward(Phi, Psi, X) returns the vector field Y.
|
•
|
The Pushforward command can be applied to a list of vectors.
|
•
|
This command is part of the DifferentialGeometry package, and so can be used in the form Pushforward(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-Pushforward.
|
|
|
Examples
|
|
>
|
|
Example 1.
Compute the pushforward of the vector X1, defined at the point [x = 1, y = 3] by the transformation Phi. Check this answer against the component calculation of the pushforward using the Jacobian matrix.
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
The entries of the vector C agree with the components of the vector Y1.
Example 2.
Show that the points p1 = [1, 1] and p2 = [- 1, - 1], in M, map under the transformation Phi to the same point in N but that the pushforward of the vector field D_x by Phi at these two points are different.
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
| (9) |
>
|
|
| (10) |
>
|
|
| (11) |
Example 3.
Compute the pushforward of the vector field X3 by the transformation Phi3 at an arbitrary point. Here we use the second calling sequence for Pushforward.
>
|
|
| (12) |
>
|
|
| (13) |
>
|
|
| (14) |
Example 4.
Express the vector field X4 in polar coordinates. First set up the polar coordinate system and define the transformation Phi4 from polar to Cartesian coordinates. Calculate the inverse transformation. Use the third calling sequence for Pushforward.
>
|
|
>
|
|
| (15) |
>
|
|
| (16) |
>
|
|
>
|
|
| (17) |
>
|
|
| (18) |
Example 5.
Find the tangent vector to the curve t -> [x = t^2, y = t^3, z = t^3].
>
|
|
>
|
|
| (19) |
>
|
|
| (20) |
Example 6.
Find a basis for the tangent plane to the surface z = x^3 - 3*x*y^2 at each point [x, y, z].
>
|
|
>
|
|
| (21) |
>
|
|
| (22) |
Example 7.
Find the projection of the vector field X5 under the map Phi5.
>
|
|
>
|
|
| (23) |
>
|
|
| (24) |
>
|
|
| (25) |
The goal now is to rewrite the coefficients of this vector field in terms of the variables u and v. The map Phi5 is not invertible but it does admit a right inverse Sigma.
>
|
|
| (26) |
>
|
|
| (27) |
We use this map as the second argument in the third calling sequence for Pushforward.
>
|
|
| (28) |
Example 8.
The Pushforward command can also be applied to a list of vectors.
>
|
|
| (29) |
>
|
|
| (30) |
N >
|
|
|
|