You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-support
Hello there!
I am trying to do some computations with the special linear group of a finite ring (given as the quotient ring of a larger ring), and am running into an issue in which it seems that Sagemath doesn't know that the special linear group of a finite ring is finite? Here is a minimal working example which reproduces the error:
q =7FqT.<T>= GF(q)[]
N = T^2+1FqTN=QuotientRing(FqT, N*FqT)
S = SL(2,FqTN)
S.is_finite()This error arose when I was trying to enumerate subgroups of this special linear group. But the method I found in the Sagemath documentation, conjugacy_classes_subgroups(), seems to not exist for a special linear group?
Vincent Delecroix
unread,
Apr 12, 2023, 1:58:02 PM4/12/23
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-s...@googlegroups.com
Indeed, the problem comes from two methods calling each other
* S.order (inherited from sage/groups/group.pyx)
* S.cardinality (inherited from sage/categories/finite_groups.py)