On representation zeta function of special linear groups over finite principal ideal local rings
Abstract
We show that the group algebras and are not isomorphic, as well as , by computing the number of conjugacy classes in those groups using MAGMA’s calculator. Similarly, we reproduce special cases of a recent result by Hassain and Singla, showing that for .
Introduction
For a finite group , let be the set of complex irreducible representations of , up to equivalence. Define the representation zeta function of to be:
Note that if are finite groups then if and only if their groups algebras over are isomorphic. Let be a prime and let be the ring of -adic integers, and the ring of power series over . When studying (continuous) representations of profinite groups such as and , it is natural to study the representations of their finite quotients, as continuous representations of profinite groups factor through some finite quotient. In this context, we have the following (special case of a) conjecture by Onn ([1], conjecture 1.3):
As of the time of writing this paper, Onn’s conjecture remains open. Nevertheless, extensive efforts have been devoted over the years to establish it’s correctness: in [1] the conjecture was demonstrated to hold for and all and . Recently, [2] extended this result to and , under the condition that . Subsequent work in [3] proved Onn’s conjecture for and for all and , and shortly after [4] further extended this result to other classical groups, such as . A recent contribution in [5] established that for every there exists such that for any prime Onn’s conjecture holds with , and the same is true for SL.
Conversely, in ([6],[7]) it was proven that the conjecture is false for , , and . Notably, this result can be extended to using similar methods, but not to , as demonstrated in [6] ,§11.
With the assistance of MAGMA’s online computational algebra calculator, we found explicit generators for some of the groups mentioned above and subsequently determined their number of conjugacy classes:
#Conj.Classes | |||
---|---|---|---|
1824 | 1896 | ||
1242 | 1218 | ||
1336 | 1456 | ||
624 | 720 | ||
292 | 352 | ||
132 | 168 | ||
58 | 76 | ||
24 | 30 |
Note that if , then in particular , so it follows from the above:
Theorem 1.
The following pairs of groups have nonisomorphic complex group algebra, or equivalently, different representation zeta function:
-
•
and
-
•
and
Proposition 1.
for .
This approach to the problem may even shed light on the validity of Onn’s conjecture.
The following section outlines the fundamental concepts and provides code examples that were employed to compute the aforementioned data.
Acknowledgements
I would like to express my gratitude for the support and guidance provided by my advisor, Uri Onn, during this work as part of the ’research project’ course at the Technion in spring 2023. His clear direction and insightful feedback greatly contributed to making this subject accessible. Additionally, I thank Jonathan Shulman for many fruitful discussions.
Outline of ideas
MAGMA’s online calculator, available here, fully supports groups of the form , and can easily compute their number of conjugacy classes. As an example, the following code computes the number of conjugacy classes for :
Z:=Integers();
I:=ideal<Z|8>;
A:=quo<Z|I>;
NumberOfClasses(SL(4,A));and the output is ”1896”, as required. Now we return to . Unfortunately, MAGMA doesn’t support this group. Nevertheless, it does support . To compute the number of conjugacy classes of we must find explicit (matrix) generators for , as MAGMA can compute the number of conjugacy classes in a group when provided with an explicit set of generators.
We begin our search in [8], where it is shown that the following matrices generate :
So, it seems plausible that the following matrices could potentially generate :
To address the presence of the element , we once again make an informed guess. We include the simplest matrix in that contains :
Now we compute the size of the subgroup generated by inside and anticipate it is the full size of , which is111 . If this is the case, we have successfully found generators for and can thus compute it’s number of conjugacy classes. We execute the following code to calculate and :
R<x>:=PolynomialRing(GF(2));
I:=ideal<R|x^3>;
Q:=R/I;
G:=GL(4,Q);
x:=elt<G|
0,1,0,0,
0,0,1,0,
0,0,0,1,
1,0,0,0>;
y:=elt<G|
1,0,1,0,
0,-1,-1,0,
0,1,0,0,
0,0,0,1>;
z:=elt<G|
0,1,0,0,
1,0,0,0,
-1,-1,-1,0,
0,0,0,1>;
w:=elt<G|
1,Q.1,0,0,
0,1,0,0,
0,0,1,0,
0,0,0,1>;
H:=sub<G|x,y,z,w>;
#H;
#ConjugacyClasses(H);and the output is , meaning that , and that , as required.
For the remaining groups, we only provide a set of generators (obtained by similar methods), as the code is very similar.
The following matrices generate :
The following matrices generate for :
We conclude by noting that we were able to find generators and, consequently, determine the number of conjugacy classes for other groups not mentioned above, including not only GL but also SL in various degrees and lengths. For further details and data, interested readers are invited to contact the author.
References
- [1] Uri Onn. Representations of automorphism groups of finite o-modules of rank two. Advances in Mathematics, 219(6):2058–2085, 2008.
- [2] Uri Onn, Amritanshu Prasad, and Pooja Singla. Representation zeta functions of arithmetic groups of type in positive characteristic. arXiv preprint arXiv:2308.07073, 2023.
- [3] Pooja Singla. On representations of general linear groups over principal ideal local rings of length two. Journal of Algebra, 324(9):2543–2563, 2010.
- [4] Pooja Singla. On representations of classical groups over principal ideal local rings of length two. Communications in Algebra, 40(11):4060–4067, 2012.
- [5] Itamar Hadas. Spectral equivalence of smooth group schemes over principal ideal local rings. arXiv preprint arXiv:2207.05830, 2022.
- [6] Maliyekkal Hassain and Pooja Singla. Representation growth of compact special linear groups of degree two. Advances in Mathematics, 396:108164, 2022.
- [7] Maliyekkal Hassain. Construction of representations of compact special linear groups of degree two. arXiv preprint arXiv:2209.00919, 2022.
- [8] Marston Conder, Edmund Robertson, and Peter Williams. Presentations for 3-dimensional special linear groups over integer rings. Proceedings of the American Mathematical Society, 115(1):19–26, 1992.