Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
All published worksheets from http://sagenb.org
Image: ubuntu2004
Using the notebook interface
Look at the set of 4 drop down menus directly above this cell. Notice that the right-most one says ``gap'' (by default it would say ``sage'').
A few notes about using the sage notebook interface:
The work all happens inside "cells" these are the rectangular areas with a thin black outline that you see below.
Move your mouse into the area above or below a cell. A blue bar appears. Clicking on this bar creates a new cell. Shift-clicking creates a text area.
To get rid of a cell, delete all its contents then hit "backspace" in the empty cell.
Hitting "enter" in a cell just inserts a linebreak - to execute the code in a cell you must either click "evaluate" or hit "enter" while holding down the "shift" key.
Finally, note that the text areas (such as the one you are currently reading) understand LaTeX code so you can put in nicely formatted mathematics:
Basic arithmetic
As you can see above, GAP can do lots of interesting calculations and it can do them with rather amazingly large numbers!
It also can handle many of the standard rings in which we calculate, including cyclotomics.
Teaching Mode
GAP is really a professional grade tool for researchers in computational group theory. Most of what it does is heavily optimized and the conventions that experts use are followed. For beginners it can be bewildering!
Teaching mode is designed to ameliorate this issue. It is a work in progress, but it is definitely helpful! Teaching mode will become available with the release of GAP 4.5 which should be any day now!
What's a PC group? Politically correct? Personal Computer?
The polycyclic group above really is but GAP finds it more efficient to have generators for each of the primes dividing 15. This is one of the things that "Teaching Mode" repairs.
If you want something, today, that is more evidently the cyclic group of some order (or indeed any other small group you might have in mind) you can build a group by specifying its multiplication table.
Or, if you are willing to describe cyclic permutations first, you can use:
Rings and groups of units
The builtin GAP commands which one might think would create cyclic groups actually construct finite rings. Of course their additive structure is that of a cyclic group but commands like Order() will think you're asking for the multiplicative order...
Polynomials
The code below constructs the set of all polynomials with degree at most 2 and coefficients in GF(3).
Permutations and Cycle Notation
This falls into the "using GAP as a fancy calculator" category: