File: monoid.tex

package info (click to toggle)
gap 4r4p12-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 29,584 kB
  • ctags: 7,113
  • sloc: ansic: 98,786; sh: 3,299; perl: 2,263; makefile: 498; asm: 63; awk: 6
file content (133 lines) | stat: -rw-r--r-- 4,153 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
% This file was created automatically from monoid.msk.
% DO NOT EDIT!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%A  monoid.msk                 GAP documentation                Thomas Breuer
%%
%A  @(#)$Id: monoid.msk,v 1.4 2002/04/15 10:02:31 sal Exp $
%%
%Y  (C) 1998 School Math and Comp. Sci., University of St.  Andrews, Scotland
%Y  Copyright (C) 2002 The GAP Group
%%
\Chapter{Monoids}

This chapter describes functions for monoids.
Currently there are only few of them.
More general functions for magmas and semigroups can be found in
Chapters~"Magmas" and "Semigroups".


\>IsMonoid( <D> ) P

A *monoid* is a magma-with-one (see~"Magmas") with associative
multiplication.



\>Monoid( <gen1>, <gen2> ... ) F
\>Monoid( <gens> ) F
\>Monoid( <gens>, <id> ) F

In the first form, `Monoid' returns the monoid generated by the
arguments <gen1>, <gen2> ...,
that is, the closure of these elements under multiplication and taking
the 0-th power.
In the second form, `Monoid' returns the monoid generated by the
elements in the homogeneous list <gens>;
a square matrix as only argument is treated as one generator,
not as a list of generators.
In the third form, `Monoid' returns the monoid generated by the
elements in the homogeneous list <gens>, with identity <id>.

It is *not* checked whether the underlying multiplication is associative,
use `MagmaWithOne' (see~"MagmaWithOne") and `IsAssociative'
(see~"IsAssociative")
if you want to check whether a magma-with-one is in fact a monoid.


\>Submonoid( <M>, <gens> ) F
\>SubmonoidNC( <M>, <gens> ) F

are just synonyms of `SubmagmaWithOne' and `SubmagmaWithOneNC',
respectively (see~"SubmagmaWithOne").


\>MonoidByGenerators( <gens> ) O
\>MonoidByGenerators( <gens>, <one> ) O

is the underlying operation of `Monoid' (see~"Monoid").



\>AsMonoid( <C> ) A

If <C> is a collection whose elements form a monoid
(see~"IsMonoid") then `AsMonoid' returns this monoid.
Otherwise `fail' is returned.


\>AsSubmonoid( <D>, <C> ) O

Let <D> be a domain and <C> a collection.
If <C> is a subset of <D> that forms a monoid then `AsSubmonoid'
returns this monoid, with parent <D>.
Otherwise `fail' is returned.


\>GeneratorsOfMonoid( <M> ) A

Monoid generators of a monoid <M> are the same as
magma-with-one generators (see~"GeneratorsOfMagmaWithOne").


\>TrivialSubmonoid( <M> ) A

is just a synonym for `TrivialSubmagmaWithOne'
(see~"TrivialSubmagmaWithOne").



\>FreeMonoid( [<wfilt>, ]<rank> ) F
\>FreeMonoid( [<wfilt>, ]<rank>, <name> ) F
\>FreeMonoid( [<wfilt>, ]<name1>, <name2>, ... ) F
\>FreeMonoid( [<wfilt>, ]<names> ) F
\>FreeMonoid( [<wfilt>, ]infinity, <name>, <init> ) F

Called in the first form, `FreeMonoid' returns a free monoid on
<rank> generators.
Called in the second form, `FreeMonoid' returns a free monoid on
<rank> generators, printed as `<name>1', `<name>2' etc.,
that is, each name is the concatenation of the string <name> and an
integer from `1' to <range>.
Called in the third form, `FreeMonoid' returns a free monoid on
as many generators as arguments, printed as <name1>, <name2> etc.
Called in the fourth form, `FreeMonoid' returns a free monoid on
as many generators as the length of the list <names>, the $i$-th
generator being printed as `<names>[$i$]'.
Called in the fifth form, `FreeMonoid' returns a free monoid on
infinitely many generators, where the first generators are printed
by the names in the list <init>, and the other generators by <name>
and an appended number.

If the extra argument <wfilt> is given, it must be either
`IsSyllableWordsFamily' or `IsLetterWordsFamily' or
`IsWLetterWordsFamily' or `IsBLetterWordsFamily'. The filter then
specifies the representation used for the elements of the free group
(see~"Representations for Associative Words"). If no such filter is
given, a letter representation is used.



\>MonoidByMultiplicationTable( <A> ) F

returns the monoid whose multiplication is defined by the square
matrix <A> (see~"MagmaByMultiplicationTable") if such a monoid exists.
Otherwise `fail' is returned.




%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%E