GAP is a system for discrete computational algebra, with particular emphasis on Computational Group Theory. GAP provides a programming language, a library of thousands of functions implementing algebraic algorithms written in the GAP language as well as large data libraries of algebraic objects, for example the Small Groups Library which contains, among others, all 423 164 062 groups of order at most 2000 except 1024.
This lesson gives an introduction to GAP. It is centred around a common task of searching in the Small Groups Library for interesting examples and counterexamples, and a particular research problem in which we will be interested is to find examples of groups such that the average order of their element is an integer.
The lesson will lead the learner along the path from working in the GAP command line and exploring algebraic objects interactively to saving the GAP code into files, creating functions and regression tests, and further to performing comprehensive search and extending the system by adding new attributes.
On this path, the learner will became familiar with:
basic constructions of the GAP programming language,
ways to find necessary information in the GAP system, and
good design practices to organise GAP code into complex programs.
Prerequisites
The lesson is oriented on learners possessing the minimal theoretical background (at least at the level of undergraduate group theory course) and willing to learn how the concepts from abstract algebra may be explored using computational tools. No previous experience of working with GAP is required.
Learners need to understand the concepts of files and directories (including home and working directories) and know only how to start GAP.
Getting ready
- Create a new directory called
avgord
in a suitable place.- Change into your new directory.
- Start GAP:
- on Linux and OS X, call
path-to-your-gap-installation/gap4r8/bin/gap.sh
(edit the path as necessary);- on Windows, call it via the appropriate menu or by double-clicking on the
gap4r8/bin/gap.bat
file in your GAP installation.- Verify that your current directory is set up properly: call
DirectoryCurrent();
on Windows orExec("pwd");
on Linux and OS X and check that the path in the output points to theavgord
directory.
Setup | Download files required for the lesson | |
00:00 | 1. First session with GAP | Working with the GAP command line |
00:40 | 2. Some more GAP objects | Further examples of immediate and positional objects and operations with them |
01:00 | 3. Functions in GAP | Functions as a way of code re-use |
01:55 | 4. Using regression tests | Test-driven development |
02:45 | 5. Small groups search |
Modular programming: putting functions together
How to check a conjecture for all groups of a given order. |
03:40 | 6. Attributes and Methods | How to record information in GAP objects |
04:30 | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.