|
Calling Sequence
|
|
GetIDBasis( obj)
SetIDBasis( obj, B)
SetIDBasis( obj, Vs)
SetIDBasis( obj, str)
|
|
Parameters
|
|
obj
|
-
|
a LAVF object
|
B
|
-
|
a IDBasis object
|
Vs
|
-
|
a list of Vectors, a Matrix, a list of linear combinations of parametric derivatives of obj, or the string "standardBasis": representing a change-of-basis for the initial data of obj
|
str
|
-
|
a string, which can be one of the following: "derivedAlgebra", "solvableRadical", "nilRadical", "nilpotentRadical", killingRadical", "centre", "derivedSeries", "lowerCentralSeries", "upperCentralSeries"
|
|
|
|
|
Description
|
|
•
|
An LAVF object has ability to store a initial data (ID) basis within it. An ID basis that is stored in a LAVF object is also a Maple object named IDBasis (see Overview of the IDBasis object).
|
•
|
The GetIDBasis method returns the initial data basis for the determining system of a LAVF object, as an IDBasis object.
|
•
|
The SetIDBasis method sets the value of the IDBasis object in a LAVF object.
|
•
|
The first two calling sequences are front-ends to the corresponding methods of a LHPDE object. That is, let L be a LAVF object and S be its determining system, then the call GetIDBasis(L) is equivalent to GetIDBasis(S). And the call SetIDBasis(L, B) is equivalent to SetIDBasis(S, B) where B is a valid IDBasis object for L (and for S). See GetIDBasis and SetIDBasis of a LHPDE object for more detail.
|
•
|
The third calling sequence is a convenient special case for constructing and setting an IDBasis in a LAVF object in one go, without having to construct an IDBasis first. That is, let L be a LAVF object and S its determining system, then the call SetIDBasis(L,Vs) is equivalent to SetIDBasis(L, B) where B := IDBasis(S,Vs). See LieAlgebrasOfVectorFields[IDBasis] for constructing an IDBasis object.
|
•
|
In the fourth calling sequence, the call SetIDBasis(L, str) first chooses a good ID basis based on the Lie algebraic structure of L. It then sets the IDBasis in L.
|
•
|
The second input argument str can be one of the following: "derivedAlgebra", "solvableRadical", "nilRadical", "nilpotentRadical", "killingRadical", "centre", "derivedSeries", "lowerCentralSeries", "upperCentralSeries". It gives a hint to the method for how to choose a good IDBasis. That is, if str is the name of an ideal ("derivedAlgebra", "solvableRadical", "nilRadical", "nilpotentRadical", "killingRadical", "centre"), SetIDBasis first picks an IDBasis for that ideal, then extends it to a IDBasis of L. If str is the name of a series of ideals ("derivedSeries", "lowerCentralSeries", "upperCentralSeries"), the extension process is applied recursively.
|
•
|
For an IDBasis object to be eligible to be set in a LAVF object, the two objects' parametric derivatives must be the same. See example below.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
First, construct an indeterminate vector field and a determining system, then construct an LAVF object from them...
>
|
|
| (1) |
>
|
|
| (2) |
| (3) |
>
|
|
| (4) |
If L's determining system has not set an IDBasis, then as default the Initial data basis of L is set to a standard IDBasis object (i.e. whose change-of-basis is the identity matrix).
| (5) |
We can set the value of IDBasis in L by first constructing one...
>
|
|
| (6) |
.. and then setting it (this is the 2nd calling sequence).
| (7) |
Note here: for B to be eligible to be set on the LAVF object L, the parametric derivatives on both objects must be the same.
>
|
|
| (8) |
>
|
|
| (9) |
Using the third calling sequence we can construct and set IDBasis in one go..
>
|
|
| (10) |
or we can reset IDBasis in L to the default IDBasis
>
|
|
| (11) |
We fetch the structure constants of L.
>
|
|
Using the fourth calling sequence, the method chooses a good IDBasis based on the derived series of L.
>
|
|
| (12) |
The commutator table will now be displayed with respect to a better ID basis.
>
|
|
| (13) |
As the dimensions of the derived series are [4,3,1,0], here we can see the table is divided into ideals as 1x1,3x3,4x4. And this commutator table has much less dependencies on (x,y) and expressions are much simpler than the one with default IDBasis (as shown below):
>
|
|
| (14) |
|
|
Compatibility
|
|
•
|
The GetIDBasis and SetIDBasis commands were introduced in Maple 2020.
|
|
|
|