Ask Your Question
0

Generating all elements of $SL_2(\mathbb{F}_q)$

asked 2016-09-26 23:01:48 +0200

vukov gravatar image

What is the fastest way to create a set with all elements of $SL_2(\mathbb{F}_q)$ for $q$ some prime power of size about $50$? One way to do it is to find a representative for each conjugacy class and then use the ConjugacyClass method, but this seems inefficient. Is there a better way?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2016-09-27 00:59:30 +0200

tmonteil gravatar image

You can define your group as follows:

sage: G = SL(2,GF(53))

Then you can get the list of its elements with the list method:

sage: L = G.list()

On my 5+ years old laptop, it takes about 44 seconds.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2016-09-26 23:01:48 +0200

Seen: 163 times

Last updated: Sep 27 '16