|
Description
|
|
•
|
The LAVF object is designed and created to represent a Lie algebras of vector field (LAVF). An LAVF is usually of the form before solving the symmetry determining system to get solution vector fields.
|
•
|
There are more than 60 methods that are available for a LAVF object, types of methods including (i) basic and solution properties of a LAVF, (ii) Lie algebraic and geometrical properties of a LAVF, (iii) Lie algebraic and geometrical relationships among LAVFs, (iv) utility methods for manipulating a LAVF (or LAVFs). Some Maple existing builtins are extended for allowing LAVF object.
|
•
|
The LAVF object is allowed to be either of finite or infinite type. And the form of its determining system can be un-solved, or solved, or any forms in between (i.e. partially solved).
|
•
|
All methods of the LAVF object become available only once a valid LAVF object is constructed successfully. To construct a LAVF object, see LieAlgebrasOfVectorFields[LAVF].
|
•
|
A LAVF object is mathematically represented by the formal vector field as a VectorField object and the determining system as a LHPDE object. Here the components of the formal vector field must be (part of) the dependent variables of the determining system.These two data attributes can be accessed via the GetVectorField and GetDeterminingSystem methods.
|
•
|
After a LAVF object L is successfully constructed, each method in L can be accessed by either the short form method(L, arguments) or the long form L:-method(L, arguments).
|
|
|
LAVF Object Methods
|
|
•
|
After a LAVF object is constructed, the following methods are available:
|
•
|
The following Maple builtins functions are extended so that they work for a LAVF object: type, has, hastype, indets. See LAVF Object Overloaded Builtins for more detail.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
Example1: we first require to construct a vector field and a LHPDE object for representing the determining system for E(2).
>
|
|
| (1) |
>
|
|
| (2) |
| (3) |
E2 is a valid LAVF object and a collection of methods are available for E(2).
>
|
|
| (5) |
Basic properties of E2 can be obtained by:
| (6) |
>
|
|
| (7) |
Both X and S are Maple objects too, and have access to various methods too. For example,
We can check algebraic properties of E2.
Fetch structure constants of E2 & display it.
>
|
|
>
|
|
Some properties of E2 are also represented as LAVF objects (or lists of LAVF objects).
| (16) |
| (17) |
| (18) |
A LAVF object can be converted into a PDO for vector fields.
| (19) |
Solving E2 vector fields system to find vector fields.
| (20) |
Example2: now we consider three 3-d rotation vector fields that generating standard SO(3) action on R3(x,y,z). First we construct these vector fields.
>
|
|
>
|
|
| (21) |
>
|
|
| (22) |
>
|
|
| (23) |
>
|
|
| (24) |
Then a LAVF object as the vector fields system for SO(3) can be constructed by
>
|
|
| (25) |
Some geometric properties of SO(3).
Invariants may be found via integration.
We can explore the geometric properties of SO3 in further detail by extracting its orbit distribution.
>
|
|
| (30) |
OD is also a Maple object named Distribution, and it has access to various methods.
>
|
|
>
|
|
| (32) |
|
|
|