File: extlset.gd

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 (158 lines) | stat: -rw-r--r-- 4,459 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
#############################################################################
##
#W  extlset.gd                  GAP library                     Thomas Breuer
##
#H  @(#)$Id: extlset.gd,v 4.10 2002/04/15 10:04:39 sal Exp $
##
#Y  Copyright (C)  1996,  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
#Y  (C) 1998 School Math and Comp. Sci., University of St.  Andrews, Scotland
#Y  Copyright (C) 2002 The GAP Group
##
##  This file declares the operations for external left sets.
##
Revision.extlset_gd :=
    "@(#)$Id: extlset.gd,v 4.10 2002/04/15 10:04:39 sal Exp $";


#############################################################################
##
#C  IsExtLSet( <D> )
##
##  An external left set is a domain with an action of a domain
##  from the left.
##
DeclareCategory( "IsExtLSet", IsDomain );


#############################################################################
##
#C  IsAssociativeLOpDProd( <D> )
##
##  is `true' iff $a \* ( x \* y ) = ( a \* x ) \* y$
##  for $a \in E$ and $x, y \in D$.
##
DeclareCategory( "IsAssociativeLOpDProd", IsExtLSet );


#############################################################################
##
#C  IsAssociativeLOpEProd( <D> )
##
##  is `true' iff $a \* ( b \* x ) = ( a \* b ) \* x$
##  for $a, b \in E$ and $x \in D$.
##
DeclareCategory( "IsAssociativeLOpEProd", IsExtLSet );


#############################################################################
##
#C  IsDistributiveLOpDProd( <D> )
##
##  is `true' iff $a \* ( x \* y ) = ( a \* x ) \* ( a \* y )$
##  for $a \in E$ and $x, y \in D$.
##
DeclareCategory( "IsDistributiveLOpDProd", IsExtLSet );


#############################################################################
##
#C  IsDistributiveLOpDSum( <D> )
##
##  is `true' iff $a \* ( x + y ) = ( a \* x ) + ( a \* y )$
##  for $a \in E$ and $x, y \in D$.
##
DeclareCategory( "IsDistributiveLOpDSum", IsExtLSet );


#############################################################################
##
#C  IsDistributiveLOpEProd( <D> )
##
##  is `true' iff $( a \* b ) \* x = ( a \* x ) \* ( b \* x )$
##  for $a, b \in E$ and $x \in D$.
##
DeclareCategory( "IsDistributiveLOpEProd", IsExtLSet );


#############################################################################
##
#C  IsDistributiveLOpESum( <D> )
##
##  is `true' iff $( a + b ) \* x = ( a \* x ) + ( b \* x )$
##  for $a, b \in E$ and $x \in D$.
##
DeclareCategory( "IsDistributiveLOpESum", IsExtLSet );


#############################################################################
##
#C  IsTrivialLOpEOne( <D> )
##
##  is `true' iff the identity element $e \in E$ acts trivially on $D$,
##  that is, $e \* x = x$ for $x \in D$.
#T necessary?
##
DeclareCategory( "IsTrivialLOpEOne", IsExtLSet );


#############################################################################
##
#C  IsTrivialLOpEZero( <D> )
##
##  is `true' iff the zero element $z \in E$ acts trivially on $D$,
##  that is, $z \* x = Z$ for $x \in D$ and the zero element $Z$ of $D$.
#T necessary?
##
DeclareCategory( "IsTrivialLOpEZero", IsExtLSet );


#############################################################################
##
#C  IsLeftActedOnByRing( <D> )
##
DeclareCategory( "IsLeftActedOnByRing", IsExtLSet );


#############################################################################
##
#P  IsLeftActedOnByDivisionRing( <D> )
##
##  This is a property because then we need not duplicate code that creates
##  either left modules or left vector spaces.
##
DeclareProperty( "IsLeftActedOnByDivisionRing",
    IsExtLSet and IsLeftActedOnByRing );


#############################################################################
##
#C  IsLeftActedOnBySuperset( <D> )
##
DeclareCategory( "IsLeftActedOnBySuperset",
    IsExtLSet );


#############################################################################
##
#A  GeneratorsOfExtLSet( <D> )
##
DeclareAttribute( "GeneratorsOfExtLSet", IsExtLSet );


#############################################################################
##
#A  LeftActingDomain( <D> )
##
##  Let <D> be an external left set, that is, <D> is closed under the action
##  of a domain $L$ by multiplication from the left.
##  Then $L$ can be accessed as value of `LeftActingDomain' for <D>.
##
DeclareAttribute( "LeftActingDomain", IsExtLSet );


#############################################################################
##
#E  extlset.gd  . . . . . . . . . . . . . . . . . . . . . . . . . . ends here