DGinfo - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DifferentialGeometry[Tools]

  

DGinfo

  

obtain information about  DifferentialGeometry objects

 

Calling Sequence

Parameters

Description

Function, Vector, DifferentialForm, and Tensor Information

Transformation Information

Frame Information

Miscellaneous

Calling Sequence

DGinfo(X, keyword)

Parameters

X

-

a DifferentialGeometry object

keyword

-

a keyword string

Description

• 

The command DGinfo provides a user friendly interface to the internal representations of all the objects and frames created by the DifferentialGeometry software.

• 

The keyword strings accepted by the DGinfo command are:

AbstractForms

BiformDegree

CoefficientGrading

CoefficientList

CoefficientSet

CoframeLabels

CurrentFrame

DiffeqType

DiffeqVariables

DomainFrame

DomainOrder

ExteriorDerivativeFormStructureEquations

ExteriorDerivativeFunctionStructureEquations

FormDegree

FrameBaseDimension

FrameBaseForms

FrameBaseVectors

FrameDependentVariables

FrameFiberDimension

FrameFiberForms

FrameFiberVectors

FrameGlobals

FrameHorizontalBiforms

FrameIndependentVariables

FrameInformation

FrameJetDimension

FrameJetForms

FrameJetOrder

FrameJetVariables

FrameJetVectors

FrameLabels

FrameNames

FrameProtocol

FrameVerticalBiforms

FunctionOrder

Grading

HorizontalCoframeLabels

JacobianMatrix

JetIndets

JetNotation

JetSpaceDimension

Keywords

LieAlgebraDimension

LieBracketStructureEquations

LieBracketStructureFunction

LieBracketStructureFunctionList

LieDerivativeFunctionStructureEquations

NonJetIndets

ObjectAttributes

ObjectComponents

ObjectFrame

ObjectGenerators

ObjectOrder

ObjectType

RangeFrame

RangeOrder

RepresentationMatrices

TensorDensityType

TensorGenerators

TensorIndexPart1

TensorIndexPart2

TensorIndexType

TensorType

TransformationType

VectorType

VerticalCoframeLabels

Weight

 

 

• 

This command is part of the DifferentialGeometry:-Tools package and so can be used in the form DGinfo(...) only after executing the commands with(DifferentialGeometry) and with(Tools) in that order.  It can always be used in the long form DifferentialGeometry:-Tools:-DGinfo(...).

Function, Vector, DifferentialForm, and Tensor Information

"BiformDegree"

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], [u], E, 2):

 

Example 1.

alpha1 := evalDG(Dx &wedge Dy);

(1)

DGinfo(alpha1, "BiformDegree");

(2)

Example 2.

alpha2 := evalDG(Dx &wedge Cu[]);

(3)

DGinfo(alpha2, "BiformDegree");

(4)

Example 3.

alpha3 := evalDG(Cu[1] &wedge Cu[2]);

(5)

DGinfo(alpha3, "BiformDegree");

(6)

"CoefficientList": list some or all of the coefficients of a vector, differential form, or tensor.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z, w], M):

alpha := evalDG(a*dx &w dy + b*dx &w dz + c*dy &w dz + d*dx &w dw + e*dz &w dw);

(7)

DGinfo(alpha, "CoefficientList", "all");

(8)

DGinfo(alpha, "CoefficientList", [dx &w dy, dx &w dz, dy &w dw]);

(9)

DGinfo(alpha, "CoefficientList", [[1,2], [1,3], [2,4]]);

(10)

"CoefficientSet": find the set of all the coefficients of a vector, differential form, or tensor.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z, w], M):

 

Example 1.

alpha := evalDG(a*dx &w dy + b*dx &w dz + b*dy &w dz + c*dx &w dw + a*dz &w dw);

(11)

DGinfo(alpha, "CoefficientSet");

(12)

Example 2.

X := DGzero("vector");

(13)

DGinfo(X, "CoefficientSet");

(14)

"CoefficientList": list some or all of the coefficients of a vector, differential form, or tensor.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z, w], M):

alpha := evalDG(a*dx &w dy + b*dx &w dz + c*dy &w dz + d*dx &w dw + e*dz &w dw);

(15)

DGinfo(alpha, "CoefficientList", "all");

(16)

DGinfo(alpha, "CoefficientList", [dx &w dy, dx &w dz, dy &w dw]);

(17)

DGinfo(alpha, "CoefficientList", [[1,2], [1,3], [2,4]]);

(18)

"DiffeqType": find the type of the system of differential equations

with(DifferentialGeometry): with(JetCalculus): with(Tools):

DGsetup([x, y], [u, v], E, 2):

Delta := DifferentialEquationData([u[2] + v[1], u[1] - v[2]], [u[1], v[1]]);

(19)

DGinfo(Delta, "DiffeqType");

(20)

"DiffeqVariables": list the jet variables in the differential equation to be solved for

with(DifferentialGeometry): with(JetCalculus): with(Tools):

DGsetup([x, y], [u, v], E, 2):

Delta := DifferentialEquationData([u[2] + v[1], u[1] - v[2]], [u[1], v[1]]);

(21)

DGinfo(Delta, "DiffeqVariables");

(22)

"FormDegree": the degree of a differential form

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z], M):

 

Example 1.

alpha := evalDG(dx +dy);

(23)

DGinfo(alpha, "FormDegree");

(24)

Example 2.

beta := evalDG(3*dx &w dy + 4*dy &w dz - dx &w dz);

(25)

DGinfo(beta, "FormDegree");

(26)

Example 3.

nu := evalDG(dx &w dy &w dz);

(27)

DGinfo(nu, "FormDegree");

(28)

"FunctionOrder": the order of the highest jet coordinate appearing in a Maple expression.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y], [u, v], E):

f1 := u*x + v*y;

(29)

DGinfo(f1, "FunctionOrder");

(30)

Example 2.

DGsetup([x, y], [u], J, 1):

f1 := u[1]*x + u[2];

(31)

DGinfo(f1, "FunctionOrder");

(32)

Example 3.

f1 := u[1, 1, 2]*x + u[2, 2, 2, 2];

(33)

DGinfo(f1, "FunctionOrder");

(34)

"ObjectAttributes": list all the properties of a vector, differential form, tensor, or transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z], M): DGsetup([u, v], N):

 

Example 1.

X := evalDG(a*D_x + b*D_y + c*D_z);

(35)

DGinfo(X, "ObjectAttributes");

(36)

Example 2.

alpha := evalDG(d*dx &w dy + e*dx &w dz + f*dy &w dz);

(37)

DGinfo(alpha, "ObjectAttributes");

(38)

Example 3.

T := evalDG(r*D_x &t dx + s*D_z&t dy + t*D_z &t dx);

(39)

DGinfo(T, "ObjectAttributes");

(40)

Example 4.

Phi := Transformation(M, N, [u = x^2 + y^2 + z^2, v = x*y*z]);

(41)

DGinfo(Phi, "ObjectAttributes");

(42)

Example 5.

DGsetup([[gamma1, gamma2, gamma3, gamma4], chi = dgform(3)], [], P):

ExteriorDerivative(chi);

(43)

DGinfo(dchi, "ObjectAttributes");

(44)

Example 6.

Hook(D_gamma1, chi);

(45)

DGinfo(i_1chi, "ObjectAttributes");

(46)

Example 7.

Hook([D_gamma2, D_gamma3], chi);

(47)

DGinfo(i_2_3chi, "ObjectAttributes");

(48)

"ObjectComponents": list all the components of a vector, differential form, tensor, or transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z], M): DGsetup([u, v], N):

 

Example 1.

X := evalDG(a*D_x + b*D_y + c*D_z);

(49)

DGinfo(X, "ObjectComponents");

(50)

Example 2.

alpha := evalDG(d*dx &w dy + e*dx &w dz + f*dy &w dz);

(51)

DGinfo(alpha, "ObjectComponents");

(52)

Example 3.

T := evalDG(r*D_x &t dx + s*D_z&t dy + t*D_z &t dx);

(53)

DGinfo(T, "ObjectComponents");

(54)

Example 4.

Phi := Transformation(M, N, [u = x^2 + y^2 + z^2, v= x*y*z]);

(55)

DGinfo(Phi, "ObjectComponents");

(56)

"ObjectFrame": return the frame with respect to which the object is defined.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], [u], M, 1): DGsetup([r,s,t], N):

Example 1.

X := evalDG(D_x -3*D_y);

(57)

DGinfo(X, "ObjectFrame");

(58)

Example 2.

T := evalDG(D_r &t D_s &t dt);

(59)

DGinfo(T, "ObjectFrame");

(60)

"ObjectGenerators": list the monomial vectors in a vector or the monomial 1-forms in a differential form.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y, z, w], M):

Example 1.

X := evalDG(y*D_x + z*D_z);

(61)

DGinfo(X, "ObjectGenerators");

(62)

This means that X has only the 1st and 3rd elements from the standard basis for the tangent bundle.

Example 2.

alpha := evalDG(w*dx &w dy + x*dx &w dw + z^2*dy &w dw);

(63)

DGinfo(alpha, "ObjectGenerators");

(64)

This means that alpha do not contain the 3rd element (dz) from the standard basis for the cotangent bundle.

"ObjectOrder": the order of the jet space on which the object is defined.

with(DifferentialGeometry): with(JetCalculus): with(Tools):

 

Example 1.

DGsetup([x, y], [u, v], E, 3):

f := u[2]*x + v[]*y;

(65)

DGinfo(f, "ObjectOrder");

(66)

Example 2.

alpha := evalDG(du[1]*x + du[2,2]);

(67)

DGinfo(alpha, "ObjectOrder");

(68)

Example 3.

beta := evalDG(du[1, 1, 2]*x + u[2, 2, 2, 2]*dy);

(69)

DGinfo(beta, "FunctionOrder");

(70)

Example 4.

X := evalDG(u[1]*D_u[]);

(71)

X3 := Prolong(X, 2);

(72)

DGinfo(X3, "FunctionOrder");

(73)

"ObjectType": the type of the DifferentialGeometry object.

with(DifferentialGeometry): with(Tools): with(LieAlgebras):

DGsetup([x, y], [u], M, 1):

 

Example 1.

f := sin(x)*cos(y);

(74)

DGinfo(f, "ObjectType");

(75)

Example 2.

X := evalDG(D_x + y*D_u[]);

(76)

DGinfo(X, "ObjectType");

(77)

Example 3.

alpha := evalDG(dx &w dy + dx &w du[1]);

(78)

DGinfo(alpha, "ObjectType");

(79)

Example 4.

theta := evalDG(Dx &w Cu[1]);

(80)

DGinfo(theta, "ObjectType");

(81)

Example 5.

T := evalDG(dx &t D_y + dy &t D_y);

(82)

DGinfo(T, "ObjectType");

(83)

Example 6.

A := Vector([1, 2]);

(84)

DGinfo(A, "ObjectType");

(85)

Example 7.

B := Matrix([1, 2]);

(86)

DGinfo(B, "ObjectType");

(87)

Example 8.

B:= Matrix([[1, 2], [3, 4]]);

(88)

DGinfo(B, "ObjectType");

(89)

Example 9.

Phi := IdentityTransformation();

(90)

DGinfo(Phi, "ObjectType");

(91)

Example 10.

L := LieAlgebraData(evalDG([D_x, x*D_x, x^2*D_x]));

(92)

DGinfo(L, "ObjectType");

(93)

Example 11.

DGsetup([x, y], M);

(94)

F := FrameData([y*dx, x*dy], N);

(95)

DGinfo(F, "ObjectType");

(96)

Example 12.

DGsetup([x, y], V);

(97)

R := [Matrix([[1, 0], [0, 0]]), Matrix([[0, 1], [0, 0]]), Matrix([[0, 0], [0, 1]])];

(98)

L := LieAlgebraData(R, Alg);

(99)

DGsetup(L);

(100)

rho := Representation(Alg, V, R);

(101)

DGinfo(rho, "ObjectType");

(102)

"TensorDensityType": the density weight of a tensor.

with(DifferentialGeometry): with(Tools): with(Tensor):

DGsetup([x, y],[u, v, w], E):

g := evalDG(dx &t dx + dy &t dy);

(103)

Example 1.

rho := MetricDensity(g, 3);

(104)

T1 := D_x &tensor rho;

(105)

DGinfo(T1, "TensorDensityType");

(106)

Example 2.

T2 := PermutationSymbol("cov_vrt");

(107)

DGinfo(T2, "TensorDensityType");

(108)

"TensorGenerators": a list of the monomial tensors which generate a given tensor.

with(DifferentialGeometry): with(Tools): with(Tensor):

DGsetup([x, y], [u, v, w], E):

 

Example 1.

T1 := evalDG(dx &t dx &t dx);

(109)

DGinfo(T1, "TensorGenerators");

(110)

Example 2.

T2 := evalDG(dx &t D_y &t dy);

(111)

DGinfo(T2, "TensorGenerators");

(112)

Example 3.

T3 := evalDG(du &t D_v &t dy);

(113)

DGinfo(T3, "TensorGenerators");

(114)

"TensorIndexPart1": the tensor character of a tensor index type.

with(DifferentialGeometry): with(Tools):

DGinfo("con_bas", "TensorIndexPart1");

(115)

DGinfo("cov_bas", "TensorIndexPart1");

(116)

DGinfo("con_vrt", "TensorIndexPart1");

(117)

DGinfo("cov_vrt", "TensorIndexPart1");

(118)

"TensorIndexPart2": the spatial type of a tensor index type.

with(DifferentialGeometry): with(Tools):

DGinfo("con_bas", "TensorIndexPart2");

(119)

DGinfo("cov_bas", "TensorIndexPart2");

(120)

DGinfo("con_vrt", "TensorIndexPart2");

(121)

DGinfo("cov_vrt", "TensorIndexPart2");

(122)

"TensorIndexType": the full tensor index type of a tensor.

with(DifferentialGeometry): with(Tools): with(Tensor):

DGsetup([x, y], [u, v], E):

Example 1.

T1 := evalDG(D_x &t D_y);

(123)

DGinfo(T1, "TensorIndexType");

(124)

Example 2.

T2 := evalDG(dx &t D_y);

(125)

DGinfo(T2, "TensorIndexType");

(126)

Example 3.

T3 := evalDG(du &t D_v);

(127)

DGinfo(T3, "TensorIndexType");

(128)

Example 4.

T4 := evalDG(D_x &t D_v);

(129)

DGinfo(T4, "TensorIndexType");

(130)

"TensorType": the full tensor index type and weight of a tensor.

with(DifferentialGeometry): with(Tools): with(Tensor):

DGsetup([x, y], [u, v], E):

 

Example 1.

T1 := evalDG(D_x &t D_y);

(131)

DGinfo(T1, "TensorType");

(132)

Example 2.

T2 := PermutationSymbol("con_bas");

(133)

DGinfo(T2, "TensorType");

(134)

Example 3.

T3 := evalDG(du &t D_v);

(135)

DGinfo(T3, "TensorType");

(136)

Example 4.

T4 := PermutationSymbol("cov_vrt");

(137)

DGinfo(T4, "TensorType");

(138)

Example 5.

T5 := PermutationSymbol("cov_bas") &tensor PermutationSymbol("con_vrt");

(139)

DGinfo(T5, "TensorType");

(140)

"VectorType": the type (projectionable, point, contact, ...) of a vector field and its order of prolongation.  See AssignVectorType for details.

with(DifferentialGeometry): with(Tools): with(JetCalculus):

DGsetup([x,y], [u], E, 1):

Example 1.

X1 := evalDG(D_x + u[] *D_u[]);

(141)

X1a := AssignVectorType(X1);

(142)

DGinfo(X1a, "VectorType");

(143)

Example 2.

X2 := Prolong(u[]*D_x - x *D_u[], 1);

(144)

DGinfo(X2, "VectorType");

(145)

Example 3.

X3 := GeneratingFunctionToContactVector(u[]*u[1]*u[2]);

(146)

X3a := AssignVectorType(X3);

(147)

DGinfo(X3a, "VectorType");

(148)

Weight": the weight of a monomial form in a graded Lie algebra with coefficients

with(DifferentialGeometry): with(Tools):

 

LD:=LieAlgebraData([[x3, x4] = e1, [x3, x5] = x2, [x4, x5] = x3], [x1,x2,x3,x4,x5], Alg, grading = [-3, -3, -2, -1, -1]);

(149)

DGsetup(LD):

DGsetup([w1, w2, w3, w4, w5], V, grading = [-3, -3, -2, -1, -1]):

rho:= Representation(Alg, V, Adjoint(Alg));

(150)

DGsetup(Alg, rho, AlgV);

(151)

Example 1.

alpha1 := evalDG(w3 *theta5);

(152)

DGinfo(alpha1, "Weight");

(153)

Example 2.

alpha2 := evalDG(w3 * theta1 &w theta5);

(154)

DGinfo(alpha2, "Weight");

(155)

Example 3.

alpha3 := evalDG(w1 * theta3 &w  &w theta4 &w theta5);

(156)

DGinfo(alpha3, "Weight");

(157)

Transformation Information

"DomainFrame": the domain frame of a transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], M): DGsetup([u, v], N):

Phi := Transformation(M, N, [ u =x*y, v= 1/x + 1/y]);

(158)

DGinfo(Phi, "DomainFrame");

(159)

"DomainOrder": the jet space order of the domain of a transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], M): DGsetup([u, v], N): DGsetup([t], [w], J, 1):

 

Example 1.

Phi1 := Transformation(M, N, [u =x*y, v= 1/x + 1/y]);

(160)

DGinfo(Phi1, "DomainOrder");

(161)

Example 2.

Phi2 := Transformation(J, M, [x = w[1], y = w[1, 1]]);

(162)

DGinfo(Phi2, "DomainOrder");

(163)

"JacobianMatrix": the Jacobian Matrix of a transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], M): DGsetup([u, v, w], N):

 

Example 1.

Phi := Transformation(M, N, [u = x*y, v = 1/x + 1/y, w = x + y]);

(164)

DGinfo(Phi, "JacobianMatrix");

(165)

"RangeFrame": the range frame of a transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], M): DGsetup([u, v], N):

Phi := Transformation(M, N, [u =x*y, v= 1/x + 1/y]);

(166)

DGinfo(Phi, "RangeFrame");

(167)

"RangeOrder": the jet space order of the range of a transformation.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], M): DGsetup([u, v], N): DGsetup([t], [w], J, 1):

 

Example 1.

Phi1 := Transformation(M, N, [u =x*y, v= 1/x + 1/y]);

(168)

DGinfo(Phi1, "RangeOrder");

(169)

Example 2.

Phi2 := Transformation(M, J, [t= x, w[]= y, w[1] = y^2]);

(170)

DGinfo(Phi2, "RangeOrder");

(171)

"RepresentationMatrices": the list of matrices defining a representation of a Lie Algebra

with(DifferentialGeometry): with(LieAlgebras): with(Tools):

 

DGsetup([x, y], V);

(172)

R := [Matrix([[1, 0], [0, 0]]), Matrix([[0, 1], [0, 0]]), Matrix([[0, 0], [0, 1]])];

(173)

L := LieAlgebraData(R, Alg);

(174)

DGsetup(L);

(175)

rho := Representation(Alg, V, R);

(176)

DGinfo(rho, "RepresentationMatrices");

(177)

"TransformationType": the type (projectionable, point, contact, ...) of a transformation.  See AssignTransformationType for details.

with(DifferentialGeometry): with(Tools): with(JetCalculus):

DGsetup([x], [u], E, 1):

 

Example 1.

Phi1 := Transformation(E, E, [x = x^2, u[] = u[]*x]);

(178)

Phi1A := AssignTransformationType(Phi1);

(179)

DGinfo(Phi1A, "TransformationType");

(180)

Example 2.

Phi2 := Transformation(E, E, [x = u[], u[] = x]);

(181)

Phi2A := AssignTransformationType(Phi2);

(182)

DGinfo(Phi2A, "TransformationType");

(183)

Example 3.

Phi3 := Transformation(E, E, [x = -2*u[1] + x, u[] = -u[1]^2 + u[], u[1] = u[1]]);

(184)

Phi3A := AssignTransformationType(Phi3);

(185)

DGinfo(Phi3A, "TransformationType");

(186)

Frame Information

"AbstractForms": the list of forms defined in an abstract frame.

with(DifferentialGeometry): with(Tools):

 

DGsetup([[sigma1, sigma2, sigma3], tau = dgform(2), xi = dgform(3)], [], P):

 

Example 1.

DGinfo(P, "AbstractForms");

(187)

Example 2.

ExteriorDerivative(tau);

(188)

DGinfo(P, "AbstractForms");

(189)

Example 3.

Hook(D_sigma1, xi);

(190)

Hook([D_sigma2, D_sigma3], xi);

(191)

DGinfo(P, "AbstractForms");

(192)

"CoefficientGrading": the grading of the coefficients in a Lie algebra with coefficients

with(DifferentialGeometry): with(LieAlgebras): with(Tools):

 

Example 1.

LD:=LieAlgebraData([[x3, x4] = e1, [x3, x5] = x2, [x4, x5] = x3], [x1,x2,x3,x4,x5], Alg, grading = [-3, -3, -2, -1, -1]);

(193)

DGsetup(LD):

DGsetup([w1, w2, w3, w4, w5], V, grading = [-3, -3, -2, -1, -1]):

rho:= Representation(Alg, V, Adjoint(Alg));

(194)

DGsetup(Alg, rho, AlgV):

DGinfo(AlgV, "CoefficientGrading");

(195)

DGinfo(AlgV, "CoefficientGrading", output = "list");

(196)

DGinfo(output = "coefficients", "CoefficientGrading");

(197)

"CoframeLabels": list the labels used to input and display the basis of 1-forms for the cotangent space.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "CoframeLabels");

(198)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(199)

DGsetup(F, [X], [omega]):

DGinfo(N, "CoframeLabels");

(200)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "CoframeLabels");

(201)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(202)

DGsetup(L1):

DGinfo(Alg1, "CoframeLabels");

(203)

"CurrentFrame": the name of the currently active frame.

with(DifferentialGeometry): with(Tools):

DGsetup([x], M): DGsetup([y], N):

DGinfo("CurrentFrame");

(204)

LieBracket(D_x, x*D_x);

(205)

DGinfo("CurrentFrame");

(206)

"ExteriorDerivativeFormStructureEquations": list the formulas for the exterior derivatives of a frame with protocol "LieAlgebra" or "AnholonomicFrame".

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo("ExteriorDerivativeFormStructureEquations");

(207)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(208)

DGsetup(F, [X], [omega]):

DGinfo(N, "ExteriorDerivativeFormStructureEquations");

(209)

Example 3.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(210)

DGsetup(L1):

DGinfo(Alg1, "ExteriorDerivativeFormStructureEquations");

(211)

"ExteriorDerivativeFunctionStructureEquations": list the formulas for the exterior derivatives of the coordinate functions for a frame with protocol or "moving_frame".

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo("ExteriorDerivativeFunctionStructureEquations");

(212)

Example 2.

DGsetup([x, y, z], M):
F := FrameData([y*dx, z*dy, dz], N);

(213)

DGsetup(F, [X], [omega]):

DGinfo(N, "ExteriorDerivativeFunctionStructureEquations");

(214)

Example 3.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(215)

DGsetup(L1):

DGinfo(Alg1, "ExteriorDerivativeFunctionStructureEquations");

(216)

"FrameBaseDimension": the dimension of the base manifold M for a frame defining a bundle E -> M; the dimension of M for a frame defining a manifold M; the dimension of the Lie algebra for a frame defining a Lie algebra.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameBaseDimension");

(217)

 

Example 2.

DGsetup([x, y], [u, v, w], E):

DGinfo(E, "FrameBaseDimension");

(218)

Example 3.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(219)

DGsetup(L1):

DGinfo(Alg1, "FrameBaseDimension");

(220)

"FrameBaseForms": the basis 1-forms for the cotangent space of the base manifold M for a frame defining a bundle E -> M; the basis 1-forms for the cotangent space M for a frame defining a manifold M; the dual 1-forms of a Lie algebra for a frame defining a Lie algebra.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameBaseForms");

(221)

 

Example 2.

DGsetup([x, y, z], M):
F := FrameData([y*dx, z*dy, dz], N);

(222)

DGsetup(F, [X], [omega]):

DGinfo(N, "FrameBaseForms");

(223)

 

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameBaseForms");

(224)

 

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(225)

DGsetup(L1):

DGinfo(Alg1, "FrameBaseForms");

(226)

"FrameBaseVectors": the basis vectors for the tangent space of the base manifold M for a frame defining a bundle E -> M; the basis vectors for the tangent space M for a frame defining a manifold M; the basis vectors of a Lie algebra for a frame defining a Lie algebra.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameBaseVectors");

(227)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(228)

DGsetup(F, [W], [omega]):

DGinfo(N, "FrameBaseVectors");

(229)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameBaseVectors");

(230)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(231)

DGsetup(L1):

DGinfo(Alg1, "FrameBaseVectors");

(232)

"FrameDependentVariables": the dependent or fiber variables for a frame defining a bundle E -> M.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameDependentVariables");

(233)

Example 2.

DGsetup([x, y, z], [u, v], E):

DGinfo(M, "FrameDependentVariables");

(234)

Example 3.

DGsetup([x, y, z], [u, v], J, 1):

DGinfo(M, "FrameDependentVariables");

(235)

"FrameFiberDimension": the dimension of the fiber for a frame defining a bundle E -> M.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameFiberDimension");

(236)

 

Example 2.

DGsetup([x, y, z], [u, v], E):

DGinfo(E, "FrameFiberDimension");

(237)

 

Example 3.

DGsetup([x, y, z], [u, v], J, 1):

DGinfo(J, "FrameFiberDimension");

(238)

"FrameFiberForms": the coordinate basis of vertical 1-forms for a fiber bundle E -> M.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameFiberForms");

(239)

Example 2

DGsetup([x, y, z], [u, v], E):

DGinfo(E, "FrameFiberForms");

(240)

Example 3

DGsetup([x, y, z], [u, v], J, 1):

DGinfo(J, "FrameFiberForms");

(241)

"FrameFiberVectors": the coordinate basis of vertical vectors for a fiber bundle E -> M.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameFiberVectors");

(242)

Example 2.

DGsetup([x, y, z], [u, v], E):

DGinfo(E, "FrameFiberVectors");

(243)

Example 3.

DGsetup([x, y, z], [u, v], J, 1):

DGinfo(J, "FrameFiberVectors");

(244)

"FrameGlobals": the list of Maple names that are assigned or protected when a frame is defined using the DGsetup command.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameGlobals");

(245)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz],N);

(246)

DGsetup(F, [W], [omega]):

DGinfo(N, "FrameGlobals");

(247)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameGlobals");

(248)

 

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(249)

DGsetup(L1):

DGinfo(Alg1, "FrameGlobals");

(250)

"FrameHorizontalBiforms": the list of horizontal biforms on a jet space

with(DifferentialGeometry): with(Tools):

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameHorizontalBiforms");

(251)

 

Example 2.

DGsetup([x, y, z], [u, v], J, 1):

DGinfo(J, "FrameHorizontalBiforms");

(252)

"FrameIndependentVariables": the coordinate variables of the base manifold M for a frame defining a bundle E -> M; the coordinate variables of M for a frame defining a manifold M; the internally defining coordinate variables of the Lie algebra for a frame defining a Lie algebra.

with(DifferentialGeometry): with(Tools):

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameIndependentVariables");

(253)

 

Example 2.

Omega := evalDG([y*dx, z*dy, dz]);

(254)

F := FrameData(Omega, N);

(255)

DGsetup(F, [X], [omega]):

DGinfo(N, "FrameIndependentVariables");

(256)

 

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameIndependentVariables");

(257)

 

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(258)

DGsetup(L1):

DGinfo(Alg1, "FrameIndependentVariables");

(259)

"FrameInformation": a complete display of all information pertaining to a given frame.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameInformation");

(260)

 

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(261)

DGsetup(F, [W], [omega]):

DGinfo(N, "FrameInformation");

(262)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameInformation");

(263)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(264)

DGsetup(L1):

DGinfo(Alg1, "FrameInformation");

(265)

"FrameJetDimension": the total dimension of the frame.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameJetDimension");

(266)

Example 2.

DGsetup([x, y, z], [u, v], N):

DGinfo(N, "FrameJetDimension");

(267)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(J, "FrameJetDimension");

(268)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(269)

DGsetup(L1):

DGinfo(Alg1, "FrameJetDimension");

(270)

"FrameJetForms": the basis of all 1-forms for the frame.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameJetForms");

(271)

Example 2.

DGsetup([x, y, z], [u, v], N):

DGinfo(N, "FrameJetForms");

(272)

Example 3.

DGsetup([x, y], [u], J, 2):

DGinfo(J, "FrameJetForms");

(273)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(274)

DGsetup(L1):

DGinfo(Alg1, "FrameJetForms");

(275)

"FrameJetOrder": the jet space order of the frame.

with(DifferentialGeometry): with(Tools): with(JetCalculus):

 

Example 1.

DGsetup([x, y, z], [u, v], N):

DGinfo(N, "FrameJetOrder");

(276)

Example 2.

DGsetup([x, y], [u], J, 2):

DGinfo(J, "FrameJetOrder");

(277)

Example 3.

DGsetup([x, y], [u], J, 2):

Prolong(4);

(278)

DGinfo(J, "FrameJetOrder");

(279)

"FrameJetVariables": the list of all variables for the frame.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameJetVariables");

(280)

Example 2.

DGsetup([x, y, z], [u, v], N):

DGinfo(N, "FrameJetVariables");

(281)

Example 3.

DGsetup([x, y], [u], J, 2):

DGinfo(J, "FrameJetVariables");

(282)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(283)

DGsetup(L1):

DGinfo(Alg1, "FrameJetVariables");

(284)

"FrameJetVectors": the list of all basis vectors for the frame.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameJetVectors");

(285)

 

Example 2.

DGsetup([x, y, z], [u, v], N):

DGinfo(N, "FrameJetVectors");

(286)

 

Example 3.

DGsetup([x, y], [u], J, 2):

DGinfo(J, "FrameJetVectors");

(287)

 

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(288)

DGsetup(L1):

DGinfo(Alg1, "FrameJetVectors");

(289)

"FrameLabels": list the labels used to input and display the basis of vectors for the tangent space.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameLabels");

(290)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(291)

DGsetup(F, [W], [omega]):

DGinfo(N, "FrameLabels");

(292)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameLabels");

(293)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(294)

DGsetup(L1):

DGinfo(Alg1, "FrameLabels");

(295)

"FrameNames": the list of initialized frames

with(DifferentialGeometry): with(Tools):

 

DGinfo("FrameNames");

(296)

"FrameProtocol": the name of the frame protocol; this protocol controls the computation rules for many operations in DifferentialGeometry.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameProtocol");

(297)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(298)

DGsetup(F, [X], [omega]):

DGinfo(N, "FrameProtocol");

(299)

Example 3.

DGsetup([x, y], [u], E, 2):

DGinfo(E, "FrameProtocol");

(300)

Example 4.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(301)

DGsetup(L1):

DGinfo(Alg1, "FrameProtocol");

(302)

"FrameVerticalBiforms": the list of the contact 1-forms for a frame defining a jet space.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "FrameVerticalBiforms");

(303)

DGsetup([x, y], [u, v], J, 2):

DGinfo(J, "FrameVerticalBiforms");

(304)

"Grading": the grading of a Lie algebra

with(DifferentialGeometry): with(LieAlgebras): with(Tools):

Example 1.

LD:=LieAlgebraData([[x3, x4] = e1, [x3, x5] = x2, [x4, x5] = x3], [x1,x2,x3,x4,x5], Alg, grading = [-3, -3, -2, -1, -1]);

(305)

DGsetup(LD);

(306)

DGinfo(Alg, "Grading");

(307)

"HorizontalCoframeLabels": the list of labels, used for display purposes, for the horizontal biforms defined on a jet space.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "HorizontalCoframeLabels");

(308)

DGsetup([x, y], [u, v], J, 2):

DGinfo(J, "HorizontalCoframeLabels");

(309)

"LieBracketStructureEquations": a matrix giving the Lie brackets of the frame basis vectors for a frame with protocol "LieAlgebra" or "AnholonomicFrame".

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "LieBracketStructureEquations");

(310)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(311)

DGsetup(F, [W], [omega]):

DGinfo(N, "LieBracketStructureEquations");

(312)

Example 3.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(313)

DGsetup(L1):

DGinfo(Alg1, "LieBracketStructureEquations");

(314)

"LieBracketStructureFunction": a specific structure function for a frame with "LieAlgebra" or "AnholonomicFrame" protocol.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):
F := FrameData([y*dx, z*dy, dz], N);

(315)

DGsetup(F, [W], [omega]):

DGinfo(N, "LieBracketStructureEquations");

(316)

DGinfo([1,2,1], "LieBracketStructureFunction");

(317)

DGinfo([2,3,2], "LieBracketStructureFunction");

(318)

DGinfo([2,3,3], "LieBracketStructureFunction");

(319)

Example 2.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(320)

DGsetup(L1):

DGinfo(Alg1, "LieBracketStructureEquations");

(321)

"LieBracketStructureFunctionList ": a list of structure function for a frame with "LieAlgebra" or "AnholonomicFrame" protocol.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "LieBracketStructureFunctionList");

(322)

Example 2.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(323)

DGsetup(F, [W], [omega]):

[LieBracket(W1, W2), LieBracket(W1, W3), LieBracket(W2, W3)];

(324)

DGinfo(N, "LieBracketStructureFunctionList");

(325)

Example 3.

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(326)

DGsetup(L1):

DGinfo(Alg1, "LieBracketStructureFunctionList");

(327)

"LieDerivativeFunctionStructureEquations": a matrix specifying the Lie derivatives of the coordinate variables with respect to the frame basis vectors for a frame with "AnholonomicFrame" protocol.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

F := FrameData([y*dx, z*dy, dz], N);

(328)

DGsetup(F, [X], [omega]):

DGinfo(N, "LieDerivativeFunctionStructureEquations");

(329)

"VerticalCoframeLabels": the list of labels, used for display proposes, for the vertical biforms defined on jet space.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

DGinfo(M, "VerticalCoframeLabels");

(330)

DGsetup([x, y], [u, v], J, 1):

DGinfo(J, "VerticalCoframeLabels");

(331)

Miscellaneous

"JetNotation": the choice of jet notation for a frame defining the jet space or fiber bundle.

with(DifferentialGeometry): with(Tools):

DGsetup([x, y], [u], J1, 2):

DGinfo(J1, "FrameJetVariables");

(332)

DGinfo(J1, "JetNotation");

(333)

Preferences("JetNotation", "JetNotation2");

(334)

DGsetup([x, y], [u], J2, 2):

DGinfo(J2, "FrameJetVariables");

(335)

DGinfo(J2, "JetNotation");

(336)

"JetIndets": the list of frame variables appearing in a Maple expression.  See the Maple indets command.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

f1 := a*x^2 + b*y;

(337)

indets(f1);

(338)

DGinfo(f1, "JetIndets");

(339)

Example 2.

DGsetup([x, y], [u,v], E, 2):

f2 := u[2,2]*c + exp(v[])*d;

(340)

DGinfo(f2, "JetIndets");

(341)

"JetSpaceDimension": the dimension of a jet space of a given order for a given fiber bundle E.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x], [u], J1, 1):

DGinfo(3, "JetSpaceDimension", J1);

(342)

DGinfo(4, "JetSpaceDimension", J1);

(343)

Example 2.

DGsetup([x, y], [u], J2, 1):

DGinfo(2, "JetSpaceDimension", J2);

(344)

DGinfo(3, "JetSpaceDimension", J2);

(345)

"Keywords": the keyword strings accepted by the DGinfo command.

with(DifferentialGeometry): with(Tools):

DGinfo("Keywords");

(346)

"LieAlgebraDimension": the dimension of a Lie algebra, defined by a LieAlgebraData structure.

with(DifferentialGeometry): with(Tools):

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[2, 4, 1], 1], [[3, 4, 3], 1]]]);

(347)

DGinfo(L1, "LieAlgebraDimension");

(348)

"NonJetIndets": the list of Maple names other than frame variables appearing in a Maple expression.

with(DifferentialGeometry): with(Tools):

 

Example 1.

DGsetup([x, y, z], M):

f1 := a*x^2 + b*y;

(349)

indets(f1);

(350)

DGinfo(f1, "NonJetIndets");

(351)

Example 2.

DGsetup([x, y], [u,v], E, 2):

f2 := u[2,2]*c + exp(v[])*d;

(352)

DGinfo(f2, "NonJetIndets");

(353)

See Also

DifferentialGeometry

Tools

JetCalculus

LieAlgebras

 


Download Help Document