File: LinearlyReductiveGroupsDoc.m2

package info (click to toggle)
macaulay2 1.21%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 133,096 kB
  • sloc: cpp: 110,377; ansic: 16,306; javascript: 4,193; makefile: 3,821; sh: 3,580; lisp: 764; yacc: 590; xml: 177; python: 140; perl: 114; lex: 65; awk: 3
file content (250 lines) | stat: -rw-r--r-- 7,479 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
-*
   Copyright 2020, Luigi Ferraro, Federico Galetto,
   Francesca Gandini, Hang Huang, Matthew Mastroeni, Xianglong Ni.

   You may redistribute this file under the terms of the GNU General Public
   License as published by the Free Software Foundation, either version 2 of
   the License, or any later version.
*-

document {
	Key => {actionMatrix, (actionMatrix, LinearlyReductiveAction)},
	
	Headline => "matrix of a linearly reductive action",
	
	Usage => "actionMatrix L",
	
	Inputs => {
	        "L" => LinearlyReductiveAction,
		},
	    
	Outputs => {
		Matrix => {"of a group action on a ring"}
		},
	    
	"This function is provided by the package ", TO InvariantRing,
	".",
	
	PARA { 
	    "Suppose the action ", TT "L", " consists of the linearly
	    reductive group with coordinate ring ", TT "S/I",
	    " (where ", TT "S", " is a polynomial ring) acting on 
	    a (quotient of)
	    a polynomial ring ", TT "R", " via the action matrix ",
	    TT "M", ". This function returns the action matrix ", TT "M",
	    ".",
	    },
	EXAMPLE {
		"S = QQ[z]",
		"I = ideal(z^2 - 1)",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}}",
		"R = QQ[x,y]",
		"L = linearlyReductiveAction(I, M, R)",
		"actionMatrix L",
		},
	    }

document {
	Key => {groupIdeal, (groupIdeal, LinearlyReductiveAction)},
	
	Headline => "ideal defining a linearly reductive group",
	
	Usage => "groupIdeal L",
	
	Inputs => {
	        "L" => LinearlyReductiveAction => {"of a group with coordinate ring ", TT "S/I"},
		},
	    
	Outputs => {
		Ideal => {TT "I"}
		},
	    
	"This function is provided by the package ", TO InvariantRing,
	".",
	
	PARA { 
	    "Suppose the action ", TT "L", " consists of the linearly
	    reductive group with coordinate ring ", TT "S/I",
	    " (where ", TT "S", " is a polynomial ring) acting on 
	    a (quotient of) 
	    a polynomial ring ", TT "R", " via the action matrix ",
	    TT "M", ". This function returns the ideal ", TT "I",
	    ".",
	    },
	EXAMPLE {
		"S = QQ[z]",
		"I = ideal(z^2 - 1)",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}}",
		"R = QQ[x,y]",
		"L = linearlyReductiveAction(I, M, R)",
		"groupIdeal L",
		},
	    }



document {
	Key => {hilbertIdeal, (hilbertIdeal, LinearlyReductiveAction)},
	
	Headline => "compute generators for the Hilbert ideal",
	
	Usage => "hilbertIdeal L",
	
	Inputs => {
	        "L" => LinearlyReductiveAction,
		},
	    
	Outputs => {
		Ideal => {"the ideal generated by all ring elements invariant under the action"}
		},
	    
	"This function is provided by the package ", TO InvariantRing,
	".",
	
	PARA { 
	    "This function computes the Hilbert ideal
	    for the action of a linearly reductive group
	    on a (quotient of a) polynomial ring, i.e., the ideal
	    generated by all ring elements of positive degree
	    invariant under the action. The algorithm is based on: ",
	    },
       	
	UL { 
	    {"Derksen, H. & Kemper, G. (2015).", EM " Computational Invariant Theory", 
	   ". Heidelberg: Springer. pp 159-164"}
        },
	
	PARA {
	    "The next example constructs a cyclic group of order 2
	    as a set of two affine points. Then it introduces an
	    action of this group on a polynomial ring in two variables
	    and computes the Hilbert ideal. The action permutes the
	    variables of the polynomial ring. Note that the
	    generators of the Hilbert ideal need not be invariant."
	    },
	
	EXAMPLE {
		"S = QQ[z]",
		"I = ideal(z^2 - 1)",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}}",
		"sub(M,z=>1),sub(M,z=>-1)",
		"R = QQ[x,y]",
		"L = linearlyReductiveAction(I, M, R)",
		"H = hilbertIdeal L",
		"apply(H_*, f -> isInvariant(f,L))"
		},
	PARA {
	    "We offer a slight variation on the previous example
	    to illustrate this method at work on a quotient of a
	    polynomial ring."
	    },
	EXAMPLE {
		"S = QQ[z];",
		"I = ideal(z^2 - 1);",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}};",
		"Q = QQ[x,y] / ideal(x*y)",
		"L = linearlyReductiveAction(I, M, Q)",
		"H = hilbertIdeal L"
		},
	PARA {
	    "The algorithm performs an elimination using Groebner
	    bases. The options ", TO DegreeLimit, " and ",
	    TO SubringLimit, " are standard ", TO gb, " options
	    that can be used to interrupt the computation
	    before it is complete, yielding a partial list of
	    generators for the Hilbert ideal."
	    },
    	 Caveat => "The generators of the Hilbert ideal computed
	 by this function need not be invariant."	    
	    }


document {
	Key => {linearlyReductiveAction,
	    (linearlyReductiveAction, Ideal, Matrix, PolynomialRing),
	    (linearlyReductiveAction, Ideal, Matrix, QuotientRing)},
	
	Headline => "Linearly reductive group action",
	
	Usage => "linearlyReductiveAction(I, M, R) \n linearlyReductiveAction(I, M, Q) ",
	
	Inputs => {
	        "I" => Ideal => {"of a polynomial ring ", TT "S", " defining a group as an affine variety"},
		"M" => Matrix => {"whose entries are in ", TT "S", ", that encodes the group action on ", TT "R"},
	    	"R" => PolynomialRing => {"on which the group acts"},
	    	"Q" => QuotientRing => {"on which the group acts"},
		},
	    
	Outputs => {
		LinearlyReductiveAction => {"the linearly reductive action of ", TT "S/I",
		    " on ", TT "R", " or ", TT "Q", " via the matrix ", TT "M"}
		},
	    
	"This function is provided by the package ", TO InvariantRing, ".",
    
    	PARA {
	    "In order to encode a linearly reductive group action,
	    we represent the group as an affine variety.
	    The polynomial ring ", TT "S", " is the coordinate ring
	    of the ambient affine space containing the group, 
	    while ", TT "I", " is the ideal of ", TT "S",
	    " defining the group as a subvariety. In other words,
	    the elements of the group are the points of the affine
	    variety with coordinate ring ", TT "S/I", ". ",
	    "The group acts linearly on the
	    polynomial ring ", TT "R", " via the matrix ",
	    TT "M", " with entries in ", TT "S", ".",
	},
	PARA {
	    "The next example constructs a cyclic group of order 2
	    as a set of two affine points. Then it introduces an
	    action of this group on a polynomial ring in two variables."
	    },
	EXAMPLE {
		"S = QQ[z]",
		"I = ideal(z^2 - 1)",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}}",
		"sub(M,z=>1),sub(M,z=>-1)",
		"R = QQ[x,y]",
		"L = linearlyReductiveAction(I, M, R)",
		},
	PARA {
	    "This function is also used to define linearly reductive
	    group actions on quotients of polynomial rings.
	    We illustrate by a slight variation on the previous example."
	    },
	EXAMPLE {
		"S = QQ[z];",
		"I = ideal(z^2 - 1);",
		"M = matrix{{(z+1)/2, (1-z)/2},{(1-z)/2, (z+1)/2}};",
		"Q = QQ[x,y] / ideal(x*y)",
		"L = linearlyReductiveAction(I, M, Q)",
		},
}


document {
	Key => {LinearlyReductiveAction},
	
	Headline => "the class of all (non finite, non toric) linearly reductive group actions",
	
	"This class is provided by the package ", TO InvariantRing,".",
	
	PARA {
	    	TT "LinearlyReductiveAction", " is the class of all
		linearly reductive group actions on (quotients of)
		polynomial rings
		for the	purpose of computing invariants.
		It is created using ", TO "linearlyReductiveAction", ".",
		" This class should not be used for actions of
		tori or finite groups, as its methods for computing
		invariants are in general less efficient than
		specialized methods for the classes ",
		TO "FiniteGroupAction", ", and ", TO "DiagonalAction", "."
	    },
	}