Ask Your Question

alexander konovalov's profile - activity

2017-04-15 05:52:50 +0200 commented question How to iterate through finite groups

No, AllSmallGroups(64); in GAP works perfectly fine.

2017-04-04 04:32:38 +0200 commented question Accessing GAP's in function through the C Interface

\in is membership test. Another form of calling it would be \in( Identity(G), G );. It does not matter in this example what is G, but if you need something for the test, try e.g.\in((1,2),SymmetricGroup(3));.

2017-04-04 04:32:37 +0200 commented question How to iterate through finite groups

To me, the error message hints that one tries to call RankPGroup on a group which is not a $p$-group. I don't know why SageMath attempts this though.

2015-06-24 12:22:54 +0200 commented question How do I implement a Gap function I wrote in a gap cell in cloudsage?

Looks to me like the call G.orbit(Set(K[0]), action = "OnChains") is a Sage command which refers to some Sage to GAP interface, which implements only support for standard types of actions. If you want to use own OnChains action, you may have to make a direct call of a GAP command (e.g. Orbit(G, Set(K[0]), OnChains);) instead of using the Sage interface.

2015-06-24 12:13:51 +0200 commented question gap record

GAP 4.7.7 (February 2015) fixed a bug where recursive records might be printed with the wrong component name, coming from component names being ordered differently in two different pieces of code (see here). Could this be related? Is this reproducible with GAP 4.7.7 or 4.7.8?

2014-12-02 10:38:35 +0200 commented answer Trouble importing groups from GAP

@Amri in GAP, you can iterate over all groups of a given order (if Small Group Library provides them) - see SmallGroup and NrSmallGroups. Then you may use Image(IsomorphismPermGroup(G)) on the GAP side to get a permutation group before importing it into Sage.

2014-07-23 01:39:24 +0200 commented answer Sage, small group library

There is probably a typo in the question, not in what you've really tried - in `gap.eval('SmallGroups(8,1)')` one should use "SmallGroup" without trailing 's'