Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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.
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.
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.
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.
Example 5.
Find the tangent vector to the curve t -> [x = t^2, y = t^3, z = t^3].
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].
Example 7.
Find the projection of the vector field X5 under the map Phi5.
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.
We use this map as the second argument in the third calling sequence for Pushforward.
Example 8.
The Pushforward command can also be applied to a list of vectors.
See Also
DifferentialGeometry, ComposeTransformations, DGinfo, PullbackVector, Pullback, Transformation
Download Help Document