KGB Related¶
Function | Argument(s) -> Result(s) |
---|---|
KGB | (RealFrom,int->KGBElt) |
% | (KGBElt->RealForm,int) |
Cartan_class | (KGBElt->CartanClass) |
involution | (KGBElt->mat) |
length | (KGBElt->int) |
status | (int,KGBElt->int) |
status | (vec,KGBElt->int) |
cross | (int,KGBElt->KGBElt) |
Cayley | (int,KGBElt->KGBElt) |
twist | (KGBElt->KGBElt) |
torus_factor | (KGBElt->ratvec) |
torus_bits | (KGBElt->vec) |
= | (KGBElt,KGBElt) |
block | (RealForm,RealForm->Block) |
% | (Block->RealForm,RealForm) |
# | (Block->int) |
element | (Block,int->KGBElt,KGBElt) |
index | (Block,KGBElt,KGBElt->int) |
dual | (Block->Block) |
status | (int,Block,int->) |
KGB¶
(RealFrom,int->KGBElt)
: select a KGB element x among those of a real formThe call
KGB(i,rf)
selects the element in line i of theprint_KGB(rf)
output.
%¶
(KGBElt->RealForm,int)
: real form and number; inverse ofKGB@(RealForm,int)
Cartan_class¶
(KGBElt->CartanClass)
: the Cartan class for the KGB element
involution¶
(KGBElt->mat)
: the involution of X^* associated to the KGB element
length¶
(KGBElt->int)
: length of the element within its KGB set
status¶
(int,KGBElt->int)
: status of generator on KGB element, scale 0..4Encoding 0: Complex descent, 1: imaginary compact, 2: real, 3: imaginary non-compact, 4: Complex ascent
status¶
(vec,KGBElt->int)
: status of any root on KGB element, scale 0..4The value status(alpha,x) gives the status of the root alpha at x; the encoding of statuses is the same as for the function status@(int,KGBElt)
cross¶
(int,KGBElt->KGBElt)
: cross action for (posrootnr,KGB element)Returns result of cross action by root reflection of the given KGB element
Cayley¶
(int,KGBElt->KGBElt)
: Cayley transform for (posrootnr,KGB element)Returns either the Cayley transform or an inverse Cayley transform of the KGB element through the given positive root, or returns that element itself when neither is defined. If defined, one can find which it is using status, and whether there is a second inverse Cayley transform can be found out by applying cross action to the result; it either returns the same result, which signifies a single-value inverse Cayley, or else the second value
twist¶
(KGBElt->KGBElt)
: twist of KGB element x, useful for Hermitian dualThis is defined by conjugation of x by the distinguished involution delta
torus_factor¶
(KGBElt->ratvec)
: coweight for KGB element, twice that in print_XThis is a \(\theta^t\) stable rational vector v with integral evaluations on all imaginary roots; interpreted modulo the image of 1+theta^t acting on \(X_*\), so in particular modulo \((2\\mathbb{Z})^n\). For an imaginary root \(\alpha\) the scalar product \(langle v + \check\rho_i , \alpha \rangle\) determines whether \(\alpha\) is compact (if even) or noncompact (if odd). Together with the inner class and the invlution, this value completely characterises the KGB element (and its real form), and it can be reconstructed using the
KGB_elt
function below.
torus_bits¶
(KGBElt->vec)
: torus part of KGB element as vector of 0,1 valuesA vector of size the rank that distinguishes between different KGB elements at the same involution, in the format used internally. From this the value torus_factor(x) is computed using base_grading_vector(rf)-torus_bits(x), for the real form rf of x, which value is then symmetrized for theta^t.
KGB_elt¶
(RealForm,mat,ratvec)
: KGB element defined by rational coweightThis function finds a KGB element x such that
real_form(x)
,involution(x)
, andtorus_factor(x)
match the values(rf,M,v)
given as arguments. The interpretation for the (involution) matrix M and rational (coweight) vector v are as forreal_form@(InnerClass,mat,ratvec)
; moreover rf should be equal to the real form returned (for this inner class) byreal_form(ic,M,v)
, and the differencev-base_grading_vector(rf)
must be an integer vector. There is then at most one KGB element x for rf such thattorus_factor(x)
is congruent to v modulo the image of^M+1
(i.e., M+1 applied on right), which x is then returned by this function (if no such x is found, an error is signaled).
=¶
(KGBElt,KGBElt)
: equality of elements of a same KGB set
block¶
(RealForm,RealForm->Block)
: construct tradiational atlas block
%¶
(Block->RealForm,RealForm)
: decompose block, inverse of ‘block’
#¶
(Block->int)
: number of elements of block
element¶
(Block,int->KGBElt,KGBElt)
: KGB and dual KGB values for block element
index¶
(Block,KGBElt,KGBElt->int)
: index in block, from KGB, dual KGB components This is the inverse of the map defined by element@(Block,int): given a compatible pair of a KGB element x and a dual KGB element y, it returns the index in the block of the corresponding element. For efficiency reasons the function requires the containing block to be supplied as first argument; if needed,block(real_form(x),dual_real_form(real_form(y)))
computes the block
dual¶
(Block->Block)
: dual block, with real form and dual real form swapped
status¶
(int,Block,int->)
: status at a block element of a simple reflectionFor s the index of a reflection, and i the index of an element of block b, status(s,b,i) gives according to the codes 0:C-, 1:ic, 2:r1, 3:r2, 4:C+, 5: rn, 6:i1, 7:i2. Note that the descents s have status(b,i,s)<4