File: orders.tex

package info (click to toggle)
gap 4r4p10-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 29,224 kB
  • ctags: 7,084
  • sloc: ansic: 98,591; sh: 3,284; perl: 2,263; makefile: 467; awk: 6
file content (502 lines) | stat: -rw-r--r-- 16,889 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
% This file was created automatically from orders.msk.
% DO NOT EDIT!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%A  orders.msk                GAP documentation                Isabel Araujo
%%
%A  @(#)$Id: orders.msk,v 1.6 2002/04/15 10:02:31 sal Exp $
%%
%Y  (C) 2000 School Math and Comp. Sci., University of St.  Andrews, Scotland
%Y  Copyright (C) 2002 The GAP Group
%%
\Chapter{Orderings}

In {\GAP} an ordering is a relation defined on a family, which is 
reflexive, anti-symmetric and transitive.


\>IsOrdering( <ord> ) C

returns `true' if and only if the object <ord> is an ordering.


\>OrderingsFamily( <fam> ) A

for a family <fam>, returns the family of all
orderings on elements of <fam>.




%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Building new orderings}

\>OrderingByLessThanFunctionNC( <fam>, <lt> ) O
\>OrderingByLessThanFunctionNC( <fam>, <lt>, <l> ) O

In the first form, `OrderingByLessThanFunctionNC' returns the ordering on
the elements of the  elements  of  the  family  <fam>  according  to  the
`LessThanFunction' given by <lt>, where <lt> is a function that takes two
arguments in <fam> and returns `true' or `false'.

In the second form, for a family <fam>, a function <lt> that takes 
two arguments in <fam> and returns `true' or `false', and a list <l>
of properties of orderings, `OrderingByLessThanFunctionNC'
returns the ordering on the elements of <fam> with
`LessThanFunction' given by <lt> and with the properties
from <l> set to `true'.


\>OrderingByLessThanOrEqualFunctionNC( <fam>, <lteq> ) O
\>OrderingByLessThanOrEqualFunctionNC( <fam>, <lteq>, <l> ) O

In the  first  form,  `OrderingByLessThanOrEqualFunctionNC'  returns  the
ordering on the elements of the elements of the family <fam> according to
the `LessThanOrEqualFunction' given by <lteq>, where <lteq> is a function
that takes two arguments in <fam> and returns `true' or `false'.

In the second form, for a family <fam>, a function <lteq> that takes 
two arguments in <fam> and returns `true' or `false', and a list <l>
of properties of orderings, `OrderingByLessThanOrEqualFunctionNC'
returns the ordering on the elements of <fam> with
`LessThanOrEqualFunction' given by <lteq> and with the properties
from <l> set to `true'.

Notice that these functions do not check whether <fam> and <lt> or <lteq>
are compatible, and whether the properties listed in <l> are indeed
true.




\beginexample
gap> f := FreeSemigroup("a","b");;
gap> a := GeneratorsOfSemigroup(f)[1];;
gap> b := GeneratorsOfSemigroup(f)[2];;
gap> lt := function(x,y) return Length(x)<Length(y); end;
function( x, y ) ... end
gap> fam := FamilyObj(a);;
gap> ord := OrderingByLessThanFunctionNC(fam,lt);
Ordering
\endexample
			 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Properties and basic functionality}

\>IsWellFoundedOrdering( <ord> ) P

for an ordering <ord>,
returns `true' if and only if the ordering is well founded.
An ordering <ord> is well founded if it admits no infinite descending
chains.
Normally this property is set at the time of creation of the ordering
and there is no general method to check whether a certain ordering
is well founded.


\>IsTotalOrdering( <ord> ) P

for an ordering <ord>,
returns true if and only if the ordering is total.
An ordering <ord> is total if any two elements of the family 
are comparable under <ord>. 
Normally this property is set at the time of creation of the ordering
and there is no general method to check whether a certain ordering
is total.


\>IsIncomparableUnder( <ord>, <el1>, <el2> ) O

for an ordering <ord> on the elements of the family of <el1> and <el2>,
returns `true' if $el1\neq el2$ and  `IsLessThanUnder'(<ord>,<el1>,<el2>), 
`IsLessThanUnder'(<ord>,<el2>,<el1>) are both false; and
returns `false' otherwise.


\>FamilyForOrdering( <ord> ) A

for an ordering <ord>,
returns the family of elements that the ordering <ord> compares.


\>LessThanFunction( <ord> ) A

for an ordering <ord>, 
returns a function <f> which takes two elements <el1>, <el2> in the 
`FamilyForOrdering'(<ord>) and returns `true' if <el1> is 
strictly less than <el2> (with respect to <ord>) and returns `false' 
otherwise.


\>LessThanOrEqualFunction( <ord> ) A

for an ordering <ord>,
returns a function that takes two elements <el1>, <el2> in the 
`FamilyForOrdering'(<ord>) and returns `true' if <el1> is 
less than *or equal to* <el2> (with respect to <ord>) and returns `false' 
otherwise.


\>IsLessThanUnder( <ord>, <el1>, <el2> ) O

for an ordering <ord> on the elements of the family of <el1> and <el2>,
returns `true' if <el1> is (strictly) less than <el2> with
respect to <ord>, and `false' otherwise.


\>IsLessThanOrEqualUnder( <ord>, <el1>, <el2> ) O

for an ordering <ord> on the elements of the family of <el1> and <el2>,
returns `true' if <el1> is less than or equal to <el2> with
respect to <ord>, and `false' otherwise.



\beginexample
gap> IsLessThanUnder(ord,a,a*b);
true
gap> IsLessThanOrEqualUnder(ord,a*b,a*b);
true
gap> IsIncomparableUnder(ord,a,b);
true
gap> FamilyForOrdering(ord) = FamilyObj(a);
true
\endexample


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Orderings on families of associative words}

We now consider orderings on families of associative words.

\>IsOrderingOnFamilyOfAssocWords( <ord> ) P

for an ordering <ord>,
returns true if <ord> is an ordering over a family of associative
words.


Examples of families of associative words are the families of elements
of a free semigroup or a free monoid;
these are the two cases that we consider mostly.
Associated with those families is
an alphabet, which is the semigroup (resp. monoid) generating set
of the correspondent free semigroup (resp. free monoid).
For definitions of the orderings considered see Sims \cite{Sims94}.


\>IsTranslationInvariantOrdering( <ord> ) P

for an ordering <ord> on a family of associative words,
returns `true' if and only if the ordering is translation invariant.
This is a property of orderings on families of associative words.
An ordering <ord> over a family <fam>, with alphabet <X> is
translation invariant if
`IsLessThanUnder(<ord>, <u>, <v>)' implies that for any $a,b\in X^\*$
`IsLessThanUnder(<ord>, $a*u*b, a*v*b$)'.


\>IsReductionOrdering( <ord> ) P

for an ordering <ord> on a family of associative words,
returns `true' if and only if the ordering is a reduction ordering.
An ordering <ord> is a reduction ordering 
if it is founded and translation invariant.


\>OrderingOnGenerators( <ord> ) A

for an ordering <ord> on a family of associative words,
returns a list <alphabet> in which the generators are considered.
This could be indeed the ordering of the generators in the ordering,
but, for example, if a weight is associated to each generator
then this is not true anymore. See the example for `WeightLexOrdering'
("WeightLexOrdering").



\>LexicographicOrdering( <fam> ) O
\>LexicographicOrdering( <fam>, <gensord> ) O
\>LexicographicOrdering( <fam>, <alphabet> ) O
\>LexicographicOrdering( <f> ) O
\>LexicographicOrdering( <f>, <alphabet> ) O
\>LexicographicOrdering( <f>, <gensord> ) O

In the first form, for a family <fam> of associative words,
`LexicographicOrdering'
returns the lexicographic ordering on the elements of <fam>.

In the second form, for a family <fam> of associate words and
a list <alphabet> which is the actual list of generators in the
desired order, `LexicographicOrdering' 
returns the lexicographic ordering on the elements of
<fam> with the ordering on the alphabet as given.

In the third form, for a family <fam> of associative words and
a list <gensorder> of the length of the alphabet,
`LexicographicOrdering' returns the lexicographic 
ordering on the elements of <fam> with the order on the alphabet
given by <gensord>.

In the fourth form, for a free semigroup of a free monoid <f>,
`LexicographicOrdering'
returns the lexicographic ordering on the family of the elements of <f>
with the order in the alphabet being the default one.

In the fifth form, for a free semigroup or a free monoid <f> and
a list <alphabet> which is the actual list of generators in the
desired order, `LexicographicOrdering'
returns the lexicographic ordering on the elements of
<f> with the ordering on the alphabet as given.

In the sixth form, for a free semigroup of a free monoid <f>,
and a list <gensorder>, `LexicographicOrdering'
returns the lexicographic ordering on the elements of <f> with the order
on the alphabet given by <gensord>.



\beginexample
gap> f := FreeSemigroup(3);
<free semigroup on the generators [ s1, s2, s3 ]>
gap> lex := LexicographicOrdering(f,[2,3,1]);
Ordering
gap> IsLessThanUnder(lex,f.2*f.3,f.3);
true
gap> IsLessThanUnder(lex,f.3,f.2);
false
\endexample

\>ShortLexOrdering( <fam> ) O
\>ShortLexOrdering( <fam>, <alphabet> ) O
\>ShortLexOrdering( <fam>, <gensord> ) O
\>ShortLexOrdering( <f> ) O
\>ShortLexOrdering( <f>, <alphabet> ) O
\>ShortLexOrdering( <f>, <gensord> ) O

In the first form, for a family <fam> of associative words,
`ShortLexOrdering'
returns the ShortLex ordering on the elements of <fam>
with the order in the alphabet being the default one.

In the second form, for a family <fam> of associate words and
a list <alphabet> which is the actual list of generators in the 
desired order, `ShortLexOrdering'
returns the ShortLex ordering on the elements of
<fam> with the ordering on the alphabet as given.

In the third form, for a family <fam> of associative words and
a list <gensorder> of the length of the alphabet,
`ShortLexOrdering' returns the ShortLex
ordering on the elements of <fam> with the order on the alphabet
given by <gensord>. 

In the fourth form, for a free semigroup of a free monoid <f>,
`ShortLexOrdering'
returns the ShortLex ordering on the family of the elements of <f> 
with the order in the alphabet being the default one.

In the fifth form, for a free semigroup or a free monoid <f> and
a list <alphabet> which is the actual list of generators in the 
desired order, `ShortLexOrdering'
returns the ShortLex ordering on the elements of
<f> with the ordering on the alphabet as given.

In the sixth form, for a free semigroup of a free monoid <f>,
and a list <gensorder>, `ShortLexOrdering' 
returns the ShortLex ordering on the elements of <f> with the order 
on the alphabet given by <gensord>.


\>IsShortLexOrdering( <ord> ) P

for an ordering <ord> of a family of associative words,
returns `true' if and only if <ord> is a ShortLex ordering.



\beginexample
gap> f := FreeSemigroup(3);
<free semigroup on the generators [ s1, s2, s3 ]>
gap> sl := ShortLexOrdering(f,[2,3,1]);
Ordering
gap> IsLessThanUnder(sl,f.1,f.2);
false
gap> IsLessThanUnder(sl,f.3,f.2);
false
gap> IsLessThanUnder(sl,f.3,f.1);
true
\endexample

\>WeightLexOrdering( <fam>, <alphabet>, <wt> ) O
\>WeightLexOrdering( <fam>, <gensord>, <wt> ) O
\>WeightLexOrdering( <f>, <alphabet>, <wt> ) O
\>WeightLexOrdering( <f>, <gensord>, <wt> ) O

In the first form, for a family <fam> of associative words
and a list <wt>, `WeightLexOrdering'
returns the WeightLex ordering on the elements of <fam>
with the order in the alphabet being the default one
and the weights of the letters in the alphabet being given
by <wt>.

In the second form, for a family <fam> of associative words,
a list <wt> and a list <gensorder> of the length of the alphabet, 
`WeightLexOrdering' returns the WeightLex  
ordering on the elements of <fam> with the order on the alphabet
given by <gensord> and the weights of the letters in the alphabet 
being given by <wt>. 

In the third form, for a free semigroup of a free monoid <f>
and a list <wt>, `WeightLexOrdering'
returns the WeightLex ordering on the family of the elements of <f>
with the order in the alphabet being the default one
and  the weights of the letters in the alphabet being given
by <wt>.

In the fourth form, for a free semigroup of a free monoid <f>,
a list <wt> and a list <gensorder> of the length of the alphabet,
`WeightLexOrdering' returns the WeightLex  
ordering on the elements of <f> with the order on the alphabet
given by <gensord> and the weights of the letters in the alphabet 
being given by <wt>. 


\>IsWeightLexOrdering( <ord> ) P

for an ordering <ord> on a family of associative words,
returns `true' if and only if <ord> is a WeightLex ordering.


\>WeightOfGenerators( <ord> ) A

for a WeightLex ordering <ord>,
returns a list <l> with length the size of the alphabet of the family.
This list gives the weight of each of the letters of the alphabet
which are used for WeightLex orderings with respect to the
ordering given by `OrderingOnGenerators' (see~"OrderingOnGenerators").



\beginexample
gap> f := FreeSemigroup(3);
<free semigroup on the generators [ s1, s2, s3 ]>
gap> wtlex := WeightLexOrdering(f,[f.2,f.3,f.1],[3,2,1]);
Ordering
gap> IsLessThanUnder(wtlex,f.1,f.2);
true
gap> IsLessThanUnder(wtlex,f.3,f.2);
true
gap> IsLessThanUnder(wtlex,f.3,f.1);
false
gap> OrderingOnGenerators(wtlex);
[ s2, s3, s1 ]
gap> WeightOfGenerators(wtlex);
[ 3, 2, 1 ]
\endexample

\>BasicWreathProductOrdering( <fam> ) O
\>BasicWreathProductOrdering( <fam>, <alphabet> ) O
\>BasicWreathProductOrdering( <fam>, <gensord> ) O
\>BasicWreathProductOrdering( <f> ) O
\>BasicWreathProductOrdering( <f>, <alphabet> ) O
\>BasicWreathProductOrdering( <f>, <gensord> ) O

In the first form, for a family of associative words,
`BasicWreathProductOrdering'
returns the basic wreath product ordering on the elements of <fam>
with the order in the alphabet being the default one.

In the second form, for a family of associative words and
a list <alphabet>, `BasicWreathProductOrdering' returns the
basic wreath product ordering on the elements of <fam> with the order 
on the alphabet given by <alphabet>. 

In the third form, for a family of associative words and
a list <gensorder> of the length of the alphabet,
`BasicWreathProductOrdering' returns the 
basic wreath product ordering on the elements of <fam> with the order 
on the alphabet given by <gensord>. 

In the fourth form, for a free semigroup of a free monoid <f>,
`BasicWreathProductOrdering'
returns the basic wreath product ordering on the family of the 
elements of <f> with the order in the alphabet being the default one.

In the fifth form, for a free semigroup or a free monoid <f>,
and a list <alphabet> of generators, `BasicWreathProductOrdering' 
returns the basic wreath product ordering on the family of the elements 
of <f> with the order on the alphabet given by <alphabet>. 

In the sixth form, for a free semigroup or a free monoid <f>,
and a list <gensorder>, `BasicWreathProductOrdering' 
returns the basic wreath product ordering on the family of the elements 
of <f> with the order on the alphabet given by <gensord>. 


\>IsBasicWreathProductOrdering( <ord> ) P



\beginexample
gap> f := FreeSemigroup(3);
<free semigroup on the generators [ s1, s2, s3 ]>
gap> basic := BasicWreathProductOrdering(f,[2,3,1]);
Ordering
gap> IsLessThanUnder(basic,f.3,f.1);
true
gap> IsLessThanUnder(basic,f.3*f.2,f.1);
true
gap> IsLessThanUnder(basic,f.3*f.2*f.1,f.1*f.3);
false
\endexample

\>WreathProductOrdering( <fam>, <levels> ) O
\>WreathProductOrdering( <fam>, <alphabet>, <levels> ) O
\>WreathProductOrdering( <fam>, <gensord>, <levels> ) O
\>WreathProductOrdering( <f>, <levels> ) O
\>WreathProductOrdering( <f>, <alphabet>, <levels> ) O
\>WreathProductOrdering( <f>, <gensord>, <levels> ) O

returns the wreath product ordering of the
family <fam> of associative words or a free semigroup/monoid <f>.
The ordering on the generators may be omitted (in which case the default
one is considered), or may be given either by a list
<alphabet> consisting of the alphabet of the family in the appropriate
ordering, or by a list <gensord>  giving the permutation of the alphabet. 
It also needs a list <levels> giving the levels of each generator.
Notice that this list gives the levels of the generators in the new 
ordering (not necessarily the default one),
i.e. `<levels>[<i>]' is the level of the generator that comes <i>-th
in the ordering of generators given by <alphabet> or <gensord>.


\>IsWreathProductOrdering( <ord> ) P


\>LevelsOfGenerators( <ord> ) A

for a wreath product ordering <ord>, returns the levels 
of the generators as given at creation (with
respect to `OrderingOnGenerators'; see~"OrderingOnGenerators").



\beginexample
gap> f := FreeSemigroup(3);
<free semigroup on the generators [ s1, s2, s3 ]>
gap> wrp := WreathProductOrdering(f,[1,2,3],[1,1,2,]);
Ordering
gap> IsLessThanUnder(wrp,f.3,f.1);
false
gap> IsLessThanUnder(wrp,f.3,f.2);
false
gap> IsLessThanUnder(wrp,f.1,f.2);
true
gap> LevelsOfGenerators(wrp);
[ 1, 1, 2 ]
\endexample

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