Identifier
Values
['A',1] => 1
['A',2] => 1
['B',2] => 3
['G',2] => 6
['A',3] => 1
['B',3] => 9
['C',3] => 9
['A',4] => 1
['B',4] => 35
['C',4] => 35
['D',4] => 4
['F',4] => 142
['A',5] => 1
['B',5] => 128
['C',5] => 128
['D',5] => 11
['A',6] => 1
['B',6] => 755
['C',6] => 755
['D',6] => 41
['E',6] => 77
['A',7] => 1
['B',7] => 4105
['C',7] => 4105
['D',7] => 162
['E',7] => 1516
['A',8] => 1
['E',8] => 132462
['C',2] => 3
search for individual values
searching the database for the individual values of this statistic
/
search for generating function
searching the database for statistics with the same generating function
Description
The number of pairwise different full-rank reflection subgroups of the associated Weyl group.
Let R⊆W be the set of reflections in the Weyl group W.
A (possibly empty) subset X⊆R generates a subgroup of W that is again a reflection group. This is the number of all pairwise different full-rank subgroups of W obtained this way.
If Φ+ is an associated set of positive roots, then this also is the number of subsets Y⊆Φ+ such that Y is a simple system of some type and |Y|=n, where n is the rank of W.
For example the group of type B2 has two different subgroups of type A1×A1 and itself as full-rank reflection subgroups.
Let R⊆W be the set of reflections in the Weyl group W.
A (possibly empty) subset X⊆R generates a subgroup of W that is again a reflection group. This is the number of all pairwise different full-rank subgroups of W obtained this way.
If Φ+ is an associated set of positive roots, then this also is the number of subsets Y⊆Φ+ such that Y is a simple system of some type and |Y|=n, where n is the rank of W.
For example the group of type B2 has two different subgroups of type A1×A1 and itself as full-rank reflection subgroups.
Code
def statistic(cartanType):
from sage.graphs.independent_sets import IndependentSets
W = WeylGroup(cartanType)
P = [item.reflection_to_root().to_ambient() for item in W.reflections()]
n = len(P)
V = list(range(n))
E = [[i, j] for i in range(n) for j in range(i) if P[i].inner_product(P[j]) <= 0]
G = Graph([V,E])
C = IndependentSets(G, maximal=True, complement=True)
return len([item for item in C if len(item) == W.rank()])
Created
Dec 13, 2021 at 13:51 by Dennis Jahn
Updated
May 04, 2022 at 11:23 by Dennis Jahn
searching the database
Sorry, this statistic was not found in the database
or
add this statistic to the database – it's very simple and we need your support!