Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Bib Ind
 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 

12 McAlister triple semigroups and E-unitary inverse semigroups
 12.1 Creating McAlister triple semigroups

12 McAlister triple semigroups and E-unitary inverse semigroups

In this section, we describe the functions in GAP for creating and computing with McAlister triple semigroups and their subsemigroups. This implementation is based on the section in Chapter 5 of [How95] but differs from the treatment in Howie by using right actions instead of left. Some definitions found in the documentation are changed for this reason.

The importance of the McAlister triple semigroups lies in the fact that they are exactly the E-unitary inverse semigroups, which are an important class in the study of inverse semigroups.

First we define E-unitary inverse semigroups. It is standard to denote the subsemigroup of a semigroup consisting of its idempotents by E. A semigroup S is said to be E-unitary if for all e in E and for all s in S:

For inverse semigroups these two conditions are equivalent. We are only interested in E-unitary inverse semigroups. Before defining McAlister triple semigroups we define a McAlister triple. A McAlister triple is a triple (G,X,Y) which consists of:

Furthermore, (G,X,Y) must satisfy the following four properties to be a McAlister triple:

M1

Y is a subset of X which is a join-semilattice together with the restriction of the order relation of X to Y.

M2

Y is an order ideal of X. That is to say, for all A \(\in\) X and for all B \(\in\) Y: if A \(\leq\) B, then A \(\in\) Y.

M3

Every element of X is the image of some element in Y moved by an element of G. That is to say, for every A \(\in\) X, there exists some B \(\in\) Y and there exists g \(\in\) G such that A = Bg.

M4

Finally, for all g \(\in\) G, the intersection {yg : y \(\in\) Y} \(\cap\) Y is non-empty.

We may define an E-unitary inverse semigroup using a McAlister triple. Given (G,X,Y) let M(G,X,Y) be the set of all pairs (A,g) in Y x G such that A acted on by the inverse of g is in Y together with multiplication defined by

(A,g)*(B,h) = (Join(A,Bg^-1),hg)

where Join is the natural join operation of the semilattice and Bg^-1 is B acted on by the inverse of g. With this operation, M(G,X,Y) is a semigroup which we call a McAlister triple semigroup over (G,X,Y). In fact every McAlister triple semigroup is an E-unitary inverse semigroup and every E-unitary inverse semigroup is isomorphic to some McAlister triple semigroup. Note that there need not be a unqiue McAlister triple semigroup for a particular McAlister triple because in general there is more than one way for a group to act on a partial order.

12.1 Creating McAlister triple semigroups

12.1-1 IsMcAlisterTripleSemigroup
‣ IsMcAlisterTripleSemigroup( S )( filter )

Returns: true or false.

This function returns true if S is a McAlister triple semigroup. A McAlister triple semigroup is a special representation of an E-unitary inverse semigroup IsEUnitaryInverseSemigroup (16.2-3) created by McAlisterTripleSemigroup (12.1-2).

12.1-2 McAlisterTripleSemigroup
‣ McAlisterTripleSemigroup( G, X, Y[, act] )( operation )

Returns: A McAlister triple semigroup.

The following documentation covers the technical information needed to create McAlister triple semigroups in GAP, the underlying theory can be read in the introduction to Chapter 12.

In this implementation the partial order X of a McAlister triple is represented by a Digraph (Digraphs: Digraph) object X. The digraph represents a partial order in the sense that vertices are the elements of the partial order and the order relation is defined by A \(\leq\) B if and only if there is an edge from B to A. The semilattice Y of the McAlister triple should be an induced subdigraph Y of X and the DigraphVertexLabels (Digraphs: DigraphVertexLabels) must correspond to the vertices of X on which Y is induced. That means that the following:

Y = InducedSubdigraph(X, DigraphVertexLabels(Y))

must return true. Herein if we say that a vertex A of X is 'in' Y then we mean there is a vertex of Y whose label is A. Alerternatively the user may choose to give the argument Y as the vertices of X on which Y is the induced subdigraph.

A McAlister triple semigroup is created from a quadruple (G, X, Y, act) where:

For user convienience, there are multiple versions of McAlisterTripleSemigroup. When the argument act is ommitted it is assumed to be OnPoints (Reference: OnPoints). Additionally, the semilattice argument Y may be replaced by a homogeneous list sub_ver of vertices of X. When sub_ver is provided, McAlisterTripleSemigroup is called with Y equalling InducedSubdigraph(X, sub_ver) with the appropriate labels.

gap> x := Digraph([[1], [1, 2], [1, 2, 3], [1, 4], [1, 4, 5]]);
<immutable digraph with 5 vertices, 11 edges>
gap> y := InducedSubdigraph(x, [1, 4, 5]);
<immutable digraph with 3 vertices, 6 edges>
gap> DigraphVertexLabels(y);
[ 1, 4, 5 ]
gap> A := AutomorphismGroup(x);
Group([ (2,4)(3,5) ])
gap> S := McAlisterTripleSemigroup(A, x, y, OnPoints);
<McAlister triple semigroup over Group([ (2,4)(3,5) ])>
gap> T := McAlisterTripleSemigroup(A, x, y);
<McAlister triple semigroup over Group([ (2,4)(3,5) ])>
gap> S = T;
false
gap> IsIsomorphicSemigroup(S, T);
true

12.1-3 McAlisterTripleSemigroupGroup
‣ McAlisterTripleSemigroupGroup( S )( attribute )

Returns: A group.

Returns the group used to create the McAlister triple semigroup S via McAlisterTripleSemigroup (12.1-2).

12.1-4 McAlisterTripleSemigroupPartialOrder
‣ McAlisterTripleSemigroupPartialOrder( S )( attribute )

Returns: A partial order digraph.

Returns the IsPartialOrderDigraph (Digraphs: IsPartialOrderDigraph) used to create the McAlister triple semigroup S via McAlisterTripleSemigroup (12.1-2).

12.1-5 McAlisterTripleSemigroupSemilattice
‣ McAlisterTripleSemigroupSemilattice( S )( attribute )

Returns: A join-semilattice digraph.

Returns the IsJoinSemilatticeDigraph (Digraphs: IsJoinSemilatticeDigraph) used to create the McAlister triple semigroup S via McAlisterTripleSemigroup (12.1-2).

12.1-6 McAlisterTripleSemigroupAction
‣ McAlisterTripleSemigroupAction( S )( attribute )

Returns: A function.

Returns the action used to create the McAlister triple semigroup S via McAlisterTripleSemigroup (12.1-2).

12.1-7 IsMcAlisterTripleSemigroupElement
‣ IsMcAlisterTripleSemigroupElement( x )( filter )
‣ IsMTSE( x )( filter )

Returns: true or false.

Returns true if x is an element of a McAlister triple semigroup; in particular, this returns true if x has been created by McAlisterTripleSemigroupElement (12.1-8). The functions IsMTSE and IsMcAlisterTripleSemigroupElement are synonyms. The mathematical description of these objects can be found in the introduction to Chapter 12.

12.1-8 McAlisterTripleSemigroupElement
‣ McAlisterTripleSemigroupElement( S, A, g )( operation )
‣ MTSE( S, A, g )( operation )

Returns: A McAlister triple semigroup element.

Returns the McAlister triple semigroup element of the McAlister triple semigroup S which corresponds to a label A of a vertex from the McAlisterTripleSemigroupSemilattice (12.1-5) of S and a group element g of the McAlisterTripleSemigroupGroup (12.1-3) of S. The pair (A,g) only represents an element of S if the following holds: A acted on by the inverse of g (via McAlisterTripleSemigroupAction (12.1-6)) is a vertex of the join-semilattice of S.

The functions MTSE and McAlisterTripleSemigroupElement are synonyms.

gap> x := Digraph([[1], [1, 2], [1, 2, 3], [1, 4], [1, 4, 5]]);
<immutable digraph with 5 vertices, 11 edges>
gap> y := InducedSubdigraph(x, [1, 2, 3]);
<immutable digraph with 3 vertices, 6 edges>
gap> A := AutomorphismGroup(x);
Group([ (2,4)(3,5) ])
gap> S := McAlisterTripleSemigroup(A, x, y, OnPoints);
<McAlister triple semigroup over Group([ (2,4)(3,5) ])>
gap> T := McAlisterTripleSemigroup(A, x, y);
<McAlister triple semigroup over Group([ (2,4)(3,5) ])>
gap> S = T;
false
gap> IsIsomorphicSemigroup(S, T);
true
gap> a := MTSE(S, 1, (2, 4)(3, 5));
(1, (2,4)(3,5))
gap> b := MTSE(S, 2, ());
(2, ())
gap> a * a;
(1, ())
gap> IsMTSE(a * a);
true
gap> a = MTSE(T, 1, (2, 4)(3, 5));
false
gap> a * b;
(1, (2,4)(3,5))
 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 
Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Bib Ind

generated by GAPDoc2HTML