Ask Your Question

qsage's profile - activity

2023-07-23 09:11:58 +0200 received badge  Supporter (source)
2023-07-23 09:11:55 +0200 marked best answer Finding and Identifying Finite Subgroups in SageMath

I have a finite subgroup, which I determined to be finite using the is_finite() function. The cardinality() function helped me establish how many matrices are present in this subgroup. Now, I am curious to know if there is a way to identify this specific finite subgroup in SageMath, for example, is it actually the XX* subgroup? Alternatively, to which group does this subgroup belong? Perhaps there exists a database where we can conveniently check the nature of this subgroup.

I am also wondering if we can directly check if the 'MatrixGroup(new_matrices_)' group is actually an XX* group using a function like if MatrixGroup(new_matrices) == XX. Additionally, I have a related question: How can I locate a specific subgroup in SageMath? For example, I have several subgroups defined in this paper: A Monograph on the Classification of the Discrete Subgroups of SU (4), and if I want to access, let's say the XX subgroup, how can I do it in SageMath? Sorry for the many little questions. I thought that they are all related, so instead of asking a new question for each little question, I combined them into one question and asked them all together.

Here is the minimal code for my matrix group:

addition = matrix([[1,0,0,0],[0,1,0,0],[1,0,0,1],[1,0,1,0]]) 
new_matrices_ = []
gens_ = MatrixGroup(SL(2,5)).gens() #the subgroup I am interested
for m in gens_:
    tensor_mat_= m.matrix().tensor_product(identity_matrix(2))
    new_matrices_.append(tensor_mat_)
 new_matrices_.append(addition)
MatrixGroup(new_matrices_)
MatrixGroup(new_matrices_).is_finite()
MatrixGroup(new_matrices_).cardinality()
2023-07-23 09:11:55 +0200 received badge  Scholar (source)
2023-07-20 02:22:55 +0200 commented question Finding and Identifying Finite Subgroups in SageMath

I have updated the question

2023-07-20 02:22:25 +0200 received badge  Editor (source)
2023-07-20 02:22:25 +0200 edited question Finding and Identifying Finite Subgroups in SageMath

Finding and Identifying Finite Subgroups in SageMath I have a finite subgroup, which I determined to be finite using the

2023-07-19 14:01:19 +0200 received badge  Student (source)
2023-07-19 02:13:28 +0200 asked a question Finding and Identifying Finite Subgroups in SageMath

Finding and Identifying Finite Subgroups in SageMath I have a finite subgroup, which I determined to be finite using the

2023-07-10 15:27:28 +0200 asked a question Cross Product of Generator Matrix

Cross Product of Generator Matrix Hello, I want to do the following items: Take the matrices of SL(2,5) Multiply them

2023-07-10 15:27:28 +0200 asked a question Checking if the given matrices will generate a finite Group

Checking if the given matrices will generate a finite Group Hello, I am a newcomer to the SageMath. Basically, I have 1