DifferentialGeometry
InverseTransformation
find the inverse of a transformation
Calling Sequence
Parameters
Description
Examples
InverseTransformation(Phi, options)
Phi
-
a transformation mapping one manifold M to another manifold N
options
branch = "all" or branch = [pt1, pt2], where pt2 is a list of coordinates (Maple expressions) defining a point in M and Phi(pt2) = pt1
The InverseTransformation command uses the Maple solve command to find a (local) inverse transformation Psi: N -> M, that is, Psi o Phi = identity on M and Phi o Psi = identity on N.
Use the Maple environment variable _EnvExplicit = true to obtain explicit formulas for the inverse.
In the case where there are multiple local inverses, the first one in the list returned by solve is returned by InverseTransformation. This may vary from one Maple session to another.
With branch = "all", InverseTransformation returns a list of all the inverse transformations.
With branch = [pt1, pt2], InverseTransformation returns the particular inverse transformation Psi satisfying Psi(pt1) = pt2.
This command is part of the DifferentialGeometry package, and so can be used in the form InverseTransformation(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-InverseTransformation.
with⁡DifferentialGeometry:
Define a pair of 2-dimensional manifolds.
DGsetup⁡x,y,M:DGsetup⁡u,v,N:
Example 1.
Define a simple transformation Phi1: M -> N with a unique global inverse.
Φ1≔Transformation⁡M,N,u=2⁢x−3⁢y,v=−x+2⁢y
Φ1≔u=2⁢x−3⁢y,v=−x+2⁢y
Ψ1≔InverseTransformation⁡Φ1
Ψ1≔x=2⁢u+3⁢v,y=2⁢v+u
Use ComposeTransformations to checks the result of InverseTransformation.
ComposeTransformations⁡Ψ1,Φ1
x=x,y=y
ComposeTransformations⁡Φ1,Ψ1
u=u,v=v
Example 2.
Define a transformation Phi2: M -> N with multiple local inverses.
Φ2≔Transformation⁡M,N,u=x2,v=y2
Φ2≔u=x2,v=y2
Ψ2≔InverseTransformation⁡Φ2
Ψ2≔x=RootOf⁡_Z2−u,y=RootOf⁡_Z2−v
To get explicit solutions:
_EnvExplicit≔true
Ψ2≔x=u,y=v
To get all possible inverses:
AllInverses≔InverseTransformation⁡Φ2,branch=all
AllInverses≔x=u,y=v,x=u,y=−v,x=−u,y=v,x=−u,y=−v
Since Phi2([- 1, - 1]) = [1, 1], we can ask for that particular inverse which maps [1, 1] to [- 1, - 1]. We can use either [1, 1] or [u = 1, v = 1] as arguments in the command InverseTransformation to indicate the coordinates of the point.
InverseTransformation⁡Φ2,branch=1,1,−1,−1
x=−u,y=−v
InverseTransformation⁡Φ2,branch=u=1,v=1,x=−1,y=−1
See Also
ComposeTransformations
Transformation
Download Help Document