maths.freeAbstract Algebra › 3. Groups › Sage

Sage

Many of the groups discussed in this chapter are available for study in Sage.

Sage

Many of the groups discussed in this chapter are available for study in Sage. It is important to understand that sets that form algebraic objects (groups in this chapter) are called parents in Sage, and elements of these objects are called, well, elements. So every element belongs to a parent (in other words, is contained in some set). We can ask about properties of parents (finite? order? abelian?), and we can ask about properties of individual elements (identity? inverse?). In the following we will show you how to create some of these common groups and begin to explore their properties with Sage.

Integers mod n

We would like to work with elements of Z8. If you were to type a 6 into a compute cell right now, what would you mean? The integer \(6\), the rational number \(\frac{6}{1}\), the real number \(6.00000\), or the complex number \(6.00000+0.00000i\)? Or perhaps you really do want the integer \(6\) mod \(8\)? Sage really has no idea what you mean or want. To make this clear, you can coerce 6 into Z8 with the syntax Z8(6). Without this, Sage will treat a input number like 6 as an integer, the simplest possible interpretation in some sense. Study the following carefully, where we first work with normal integers and then with integers mod 8.

Z8 is a bit unusual as a first example, since it has two operations defined, both addition and multiplication, with addition forming a group, and multiplication not forming a group. Still, we can work with the additive portion, here forming the Cayley table for the addition.

When \(n\) is a prime number, the multipicative structure (excluding zero), will also form a group.

The integers mod \(n\) are very important, so Sage implements both addition and multiplication together. Groups of symmetries are a better example of how Sage implements groups, since there is just one operation present.

Groups of symmetries

The symmetries of some geometric shapes are already defined in Sage, albeit with different names. They are implemented as permutation groups which we will begin to study carefully in .

Sage uses integers to label vertices, starting the count at 1, instead of letters. Elements by default are printed using cycle notation which we will see described carefully in . Here is an example, with both the mathematics and Sage. For the Sage part, we create the group of symmetries and then create the symmetry \(\rho_2\) with coercion, followed by outputting the element in cycle notation. Then we create just the bottom row of the notation we are using for permutations. \[\begin{aligned}\end{aligned}\]

The final list comprehension deserves comment. The .domain() method gives a list of the symbols used for the permutation group triangle and then rho2 is employed with syntax like it is a function (it is a function) to create the images that would occupy the bottom row.

With a double list comprehension we can list all six elements of the group in the bottom row format. A good exercise would be to pair up each element with its name as given in .

Different books, different authors, different software all have different ideas about the order in which to write multiplication of functions. This textbook builds on the idea of composition of functions, so that \(fg\) is the composition \((fg)(x)=f(g(x))\) and it is natural to apply \(g\) first. Sage takes the opposite view and since we write \(fg\), Sage will understand that we want to do \(f\) first. Neither approach is wrong, and neither is necessarily superior, they are just different and there are good arguments for either one. When you consult other books that work with permutation groups, you want to first determine which approach it takes. (Be aware that this discussion of Sage function composition is limited to permutations onlyregular functions in Sage compose in the order you might be familiar with from a calculus course.)

The translation here between the text and Sage will be worthwhile practice. Here we will reprise the discussion at the end of , but reverse the order on each product to compute Sage-style and exactly mirror what the text does.

Condensed — the full section is in Judson, Abstract Algebra: Theory and Applications.

Quaternions

Sage implements the quaternions, but the elements are not matrices, but rather are permutations. Despite appearances the structure is identical. It should not matter which version you have in mind (matrices or permutations) if you build the Cayley table and use the default behavior of using letters to name the elements. As permutations, or as letters, can you identify \(-1\), \(I\), \(J\) and \(K\)?

It should be fairly obvious that a is the identity element of the group (\(1\)), either from its behavior in the table, or from its bottom row representation as the first element of the list above. And if you prefer, you can ask Sage for a list of its outputs when viewed as a function.

Now \(-1\) should have the property that \(-1\cdot -1= 1\). We see that the identity element a is on the diagonal of the Cayley table only when we compute c*c. We can verify this easily, by extracting the third element of the column headings of the Cayley table. Now that we have identified \(-1\), once we locate \(I\), we can easily compute \(-I\), and so on.

See if you can pair up the letters with all eight elements of the quaternions. Be a bit careful with your names, the symbol I is used by Sage for the imaginary number \(i=\sqrt{-1}\) (which we will use below), but Sage will silently let you redefine it to be anything you like. Same goes for using lower-case i in Sage. So call your elements of the quaternions something like QI, QJ, QK to avoid confusion.

As we begin to work with groups it is instructive to work with the actual elements. But many properties of groups are totally independent of the order we use for multiplication, or the names or representations we use for the elements. Here are facts about the quaternions we can compute without any knowledge of just how the elements are written or multiplied.

Subgroups

The best techniques for creating subgroups will come in future chapters, but we can create some groups that are naturally subgroups of other groups.

Elements of the quaternions were represented by certain permutations of the integers 1 through 8. We can also build the group of all permutations of these eight integers. It gets pretty big, so do not list it unless you want a lot of output! (I dare you.)

The quaternions, Q, is a subgroup of the full group of all permutations, the symmetric group \(S_8\) or S8, and Sage regards this as a property of Q.

In Sage the complex numbers are known by the name CC. We can create a list of the elements in the subgroup described in . Then we can verify that this set is a subgroup by examining the Cayley table, using multiplication as the operation.

Symbols used here

\sqrt{x},\ \sqrt[n]{x}
square root, n-th root
The non-negative number whose square (n-th power) is x.
i
imaginary unit
i² = −1.
\mathbb{N},\ \mathbb{Z},\ \mathbb{Q},\ \mathbb{R},\ \mathbb{C}
number sets
Naturals, integers, rationals, reals, complex numbers.
x \in A,\ A \subseteq B
element of, subset
x belongs to A; every element of A is in B.
\blacksquare\ \text{or}\ \square
end of proof (halmos)
Marks the point where the statement has been established.
a \equiv b \pmod n
congruent modulo n
n divides a − b; a and b have the same remainder.
a \mid b,\ \gcd(a,b)
divides, greatest common divisor
b is a multiple of a; the largest number dividing both.
(G, \cdot),\ e,\ g^{-1}
group, identity, inverse
A set with an operation; the do-nothing element; the element that undoes g.
G \cong H,\ G / N
isomorphic, quotient group
Same structure; the group of cosets of a normal subgroup N.
\mathbb{Z}/n\mathbb{Z},\ \mathbb{Z}_n
integers modulo n
The remainders 0…n−1 with clock arithmetic.
\operatorname{Hom}(A, B),\ f \circ g
arrows from A to B, composition
The set of morphisms; do g then f.

Questions people ask

What is a group, in plain words?

A set with one operation that is associative, has an identity, and lets every element be undone. Symmetries of any object form a group — that is where the idea came from.

What is the difference between a ring and a field?

A ring has addition and multiplication that behave like the integers (you cannot always divide); a field is a ring where every non-zero element has a reciprocal, like the rationals or the reals.

ନିଜେ ଚେଷ୍ଟାକରନ୍ତୁ

Parts of this page are adapted from Judson, Abstract Algebra: Theory and Applications (GFDL 1.3). Condensed and re-explained here; errors are ours.

ଅଧିକ Abstract Algebra