DifferentialGeometry
ApplyTransformation
evaluate a transformation at a point
Calling Sequence
Parameters
Description
Examples
ApplyTransformation(Phi, pt)
Phi
-
transformation from a manifold M to another manifold N
pt
a list of coordinates or a list of equations defining a point in the domain manifold M
ApplyTransformation(Phi, pt) returns the coordinates of the point Phi(pt) in N.
The second argument is of the form [a1, a2, ...] or [x1 = a1, x2 = a2, ...], where x1, x2, ... are the coordinates on M.
This command is part of the DifferentialGeometry package, and so can be used in the form ApplyTransformation(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-ApplyTransformation.
with⁡DifferentialGeometry:
Example 1.
Define coordinate systems M and N.
DGsetup⁡x,y,z,M:DGsetup⁡u,v,N:
Define a transformation Phi from M to N.
Φ≔Transformation⁡M,N,u=x2+y2+z2,v=x⁢y+y⁢z+x⁢z
Φ≔u=x2+y2+z2,v=x⁢y+x⁢z+y⁢z
Apply the transformation Phi to the points p1, p2.
p1≔1,2,3
ApplyTransformation⁡Φ,p1
14,11
p2≔x=5,y=0,z=1
ApplyTransformation⁡Φ,p2
u=26,v=5
See Also
Transformation
PDEtools[dchange]
Physics[TransformCoordinates]
Physics
Download Help Document