Differences between revisions 14 and 16 (spanning 2 versions)
Revision 14 as of 2021-08-06 20:03:41
Size: 9161
Editor: anewton
Comment:
Revision 16 as of 2021-08-20 21:55:23
Size: 9211
Editor: anewton
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
This page was first created for Google Summer of Code by Alexis Newton, with mentorship by Mckenzie West. This page was first created for Google Summer of Code 2021 by Alexis Newton, with mentorship by Mckenzie West.
Line 31: Line 31:
def foo(n = input_box(default='10', label="Order:"), m = input_box(default='1', label= "Group Number:")): def order_n1(n = input_box(default='10', label="Order:"), m = input_box(default='1', label= "Group Number:")):
Line 49: Line 49:
def foo(n = input_box(default='10', label="Order:"), Parameter = def order_n1(n = input_box(default='10', label="Order:"), Parameter =
Line 72: Line 72:
def foo(n = input_box(default='10', label="Order:")): def order_n1(n = input_box(default='10', label="Order:")):
Line 92: Line 92:
def foo(n = input_box(default='10', label="Order:"), Parameter = def order_n1(n = input_box(default='10', label="Order:"), Parameter =
Line 114: Line 114:
def foo(n = input_box(default='32', label="Order:")): def order_n1(n = input_box(default='32', label="Order:")):
Line 153: Line 153:
def foo(n = input_box(default='10', label="Upper Bound:")): def order_n1(n = input_box(default='10', label="Upper Bound:")):
Line 185: Line 185:
def foo(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:")): def order_n1(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:")):
Line 218: Line 218:
def foo(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:"), Parameter = def order_n1(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:"), Parameter =
Line 274: Line 274:
def foo(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:"), Parameter = def order_n1(m = input_box(default='1', label="Lower Bound:"), n = input_box(default='10', label="Upper Bound:"), Parameter =

Sage Interactions - Groups Using the GAP System

This page was first created for Google Summer of Code 2021 by Alexis Newton, with mentorship by Mckenzie West.

If you have interactions that you are interested in adding to this page, please do so. You can also contact Alexis Newton at [email protected].

goto interact main page

Calling Groups from GAP

GAP is a system...explanation of what we are doing (calling GAP), what gap is and what its limitations are

We rely heavily on the Small Group and All Small Groups GAP commands within this page. The documentation for these can be found on the GAP System website.

Group of Order n

Use this interact to call a group of order n from the GAP library.

Group of Order n of a Certain Type

Use this interact to specify a type of group to call.

All Groups of Order n

Use this interact to call all groups of order n from the GAP library.

All Groups of Order n of a Certain Type

Use this interact to specify a type of group to call.

Small Group Info

Use this interact to learn information about the small groups of order n contained in the GAP library.

Calling a List of Groups from GAP

explanation part 2

Groups Order Less Than or Equal to n

Use this interact to call all groups from the GAP library that have order less than or equal to your desired value.

Groups Order Between m and n

Use this interact to call all the groups from the GAP library that have order between m and n

Groups of a Certain Type

Use this interact to call all groups of a certain type from the GAP library that have order between m and n

Direct or Semidirect Product Groups

Use this interact to specify groups that contain direct or semidirect products.

interact/groups (last edited 2023-05-15 14:36:43 by anewton)