Overview of the KF Object
Description
KF Object Methods
Examples
The KF object is designed and created to represent the Killing form of a Lie algebra.
By definition, the Killing form K of a Lie algebra L is the symmetric bilinear form on L and defined by K(V,V') = tr(ad V. adV') where V,V' are vector fields in L.
The KF object can only be constructed via query the Killing form of a Lie algebra. That is, let L be a LAVF object then the call K := KillingForm(L) construct a KF object K. object. See KillingForm for more detail.
Some methods become available once a valid KF object is constructed. See below for more details.
After a KF object K is successfully constructed, each method of K can be accessed by either the short form method(K, arguments). Note that the long form K:-method(K, arguments) would not work because the KF object is designed as a local Maple object.
The following is a list of available methods for a KF object.
GetMatrix
IsTrivial
IsNondegenerate
The KF object can act as the symmetric bilinear operator. See KF Object as Operator for more detail.
with⁡LieAlgebrasOfVectorFields:
Typesetting:-Settings⁡userep=true:
Typesetting:-Suppress⁡ξ⁡x,y,η⁡x,y:
V≔VectorField⁡ξ⁡x,y⁢Dx+η⁡x,y⁢Dy,space=x,y
V≔ξ⁢ⅆⅆx+η⁢ⅆⅆy
E2≔LHPDE⁡diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x=−diff⁡ξ⁡x,y,y,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,x=0,indep=x,y,dep=ξ,η
E2≔ξy,y=0,ηx=−ξy,ηy=0,ξx=0,indep=x,y,dep=ξ,η
Construct a vector fields system for E(2).
L≔LAVF⁡V,E2
L≔ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξy,y=0,ξx=0,ηx=−ξy,ηy=0
Find the KillingForm of L
K≔KillingForm⁡L
K≔X,Y↦−2⋅∂∂yX⁡x⋅∂∂yY⁡x
Although the Killing form K is an KF object, KF is a local Maple object and is not visible to public.
type⁡K,object
true
type⁡K,KF
Error, type `KF` does not exist
The KF object K can act as a symmetric bilinear operator on vector fields,
X≔VectorField⁡ξ⁡x,y⁢Dx+η⁡x,y⁢Dy,space=x,y
X≔ξ⁢ⅆⅆx+η⁢ⅆⅆy
Y≔subs⁡ξ=α,η=β,X
Y≔α⁡x,y⁢ⅆⅆx+β⁡x,y⁢ⅆⅆy
K⁡X,Y
−2⁢ξy⁢∂∂yα⁡x,y
And K has access to some methods:
GetMatrix⁡K
00000000−2
IsTrivial⁡K
false
IsNondegenerate⁡K
See Also
LieAlgebrasOfVectorFields (Package overview)
LAVF (Object overview)
LieAlgebrasOfVectorFields[LAVF]
KillingForm
Download Help Document