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 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
|
--- status: TODO
--- author(s):
--- notes:
-*
-- TODO
(map,GaloisField,GaloisField)
*-
undocumented {(map, RingFamily, Thing, Thing),(map, Thing, RingFamily, Thing)}
document {
Key => { map, "morphisms" },
Headline => "make a map",
Usage => "map(Y,X,d) or map(Y,X)",
Inputs => {
"Y" => "an object, such as a ring, module, or chain complex",
"X" => {"another object of the same type"},
"d" => "a specification, such as a function, list, or
matrix, or if omitted, understood to specify the identity map"
},
Outputs => {
{"a map to ", TT "Y", " from ", TT "X", " defined by data ", TT "d", "."},
},
"The function ", TT "map", " provides a general mechanism for constructing a map
(homomorphism) between rings (", ofClass RingMap, "), modules (", ofClass Matrix,
"), or between objects in other categories.",
PARA{},
"See also the function ", TO matrix, ", which focuses on creating new matrices from
rectangular arrays of ring elements or matrices.",
Subnodes => {
"Getting information about a map",
TO source,
TO target,
"Creating a map (matrix) between modules",
TO (map,Module,Module,Function),
TO (map,Module,Module,List),
TO (map,Module,Module,RingElement),
TO (map,Module,Module,Matrix),
"Creating a map between modules, where the source module is computed",
TO (map,Module,ZZ,Function),
TO (map,Module,Nothing,List),
TO (map,Module,ZZ,List),
TO (map,Module,Nothing,Matrix),
"Creating a map with a different degree",
TO (map,Matrix),
"Creating a map between modules over different rings",
TO (map,Module,Module,RingMap,Matrix),
"Creating a map between rings",
TO (map,Ring,Ring),
TO (map,Ring,Ring,List),
TO (map,Ring,Ring,Matrix),
-- "Creating a map between chain complexes",
-- TO "Complexes :: map(Complex,Complex,ComplexMap)",
-- TO "Complexes :: map(Complex,Complex,Function)",
-- TO "Complexes :: map(Complex,Complex,HashTable)",
-- TO "Complexes :: map(Complex,Complex,List)",
-- TO "Complexes :: map(Complex,Complex,ZZ)",
"The Hom and End modules",
TO Hom,
TO End,
-- TODO: also add mention inducedMap, etc.
}
}
document {
Key => (map,Module,Module,Function),
Headline => "create a matrix by specifying a function that gives each entry",
Usage => "map(M,N,f)",
Inputs => { "M", "N", "f" },
Outputs => {
{"a map from the module ", TT "N", " to the module ", TT "M", "
whose matrix entry ", TT "h_(i,j)", " is obtained from the
function ", TT "f", " by evaluating ", TT "f(i,j)", "."
}
},
"Recall that all indices in Macaulay2 start at 0, so the upper left-most entry
of a matrix ", TT "f", " is ", TT "f_(0,0)", ".",
PARA{},
"This function is often used when you already know the source and target modules,
including their gradings. If you wish Macaulay2 to compute the column degrees for
you (so the resulting matrix will be homogeneous if possible), use ",
TO (map,Module,ZZ,Function), ".",
EXAMPLE lines ///
R = ZZ[a..c];
f = map(R^3,R^{0,-1,-2,-3},(i,j) -> R_i^j)
///,
"We specified the degrees of the source basis elements explicitly
to ensure the matrix would be homogeneous.",
EXAMPLE "isHomogeneous f",
SUBSECTION "Alternate approaches",
"We could have let Macaulay2 take care of that for us, by replacing
the source module by its desired rank.",
EXAMPLE lines ///
g = map(R^3,4,(i,j) -> R_i^j)
degrees g
isHomogeneous g
///,
PARA{},
"Another way would be to let ", TO "matrix", " take care of that for
us.",
EXAMPLE lines ///
h = matrix table(3,4,(i,j) -> R_i^j)
degrees h
isHomogeneous h
///
}
document {
Key => (map,Module,Module,List),
Headline => "create a matrix by giving a sparse or dense list of entries",
Usage => "map(M,N,v)",
Inputs => { "M", "N", "v" },
Outputs => {
{"A matrix ", TT "M <-- N", " whose entries are obtained from ", TT "v"}
},
"The list ", TT "v", " is either a doubly nested list of
ring elements, or a list of elements ",
TT "(i,j) => f", ". The first version provides all of the elements of the
output matrix, row by row. The second form provides only the
non-zero elements of the
output matrix ", TT "h: h_(i,j) = f", ", for every ", TT "(i,j) => f",
" in the list ", TT "v", ".",
PARA{},
"In each case, the modules ", TT "M", " and ", TT "N", " should have the
same base ring
", TT "R", ", and the ring elements appearing in ", TT "v", " should be over ",
TT "R", ", or over a base
ring of ", TT "R", ".",
PARA{},
"In the first form, each list in v gives a row of the matrix. ",
"The length of the list ", TT "v", " should be the number of generators of ", TT "M",
", and the length of each element of ", TT "v", " (which is itself a
list of ring elements) should be the
number of generators of the source module ", TT "N", ".",
EXAMPLE {
"R = ZZ/101[x,y,z];",
"p = map(R^2,R^{-2,-2,0},{{x^2,0,3},{0,y^2,5}})",
"isHomogeneous p",
},
"In the second form, if an index (i,j) occurs more than once,
only the last is taken.",
EXAMPLE {
"p = map(R^2,R^3,{(0,0) => x+y, (1,1) => x^2, (0,2) => x-1, (0,0) => x-y})"
},
SeeAlso => {matrix, (map,Module,Nothing,List), "inputting a matrix"}
}
document {
Key => (map,Module,Module,Matrix),
Headline => "create the matrix induced on generators by a given matrix",
Usage => "map(M,N,p)",
Inputs => { "M", "N", "p" },
Outputs => {
{"A matrix with the same entries as ", TT "p", ", but whose target
is ", TT "M", " and source is ", TT "N"}
},
TT "M", " and ", TT "N", " should be modules over the same ring, and have the same
number of generators as ", TT "target p", " and ", TT "source p", ", respectively.",
EXAMPLE {
"R = QQ[x,y,z];",
"p = matrix {{x,y,z}}",
"q = map(R^1,R^3,p)",
"degrees source p",
"degrees source q",
},
SeeAlso => inducedMap,
Caveat => {
"If ", TT "M", " or ", TT "N", " is not free,
then we do not check that the result is a well defined homomorphism."
}
}
document {
Key => {(map,Module,Module,RingElement),(map,Module,Module,Number),(map,Module,ZZ,ZZ),(map,Module,Module,ZZ)},
Headline => "construct the map induced by multiplication by a ring element on the generators",
Usage => "map(M,N,r)",
Inputs => {
"M",
"N" => {"over the same ring ", TT "R", " as ", TT "M", ". An integer here stands for the free
module of that rank."
},
"r" => {"in the ring ", TT "R"} },
Outputs => {
{"The map induced by multiplication by ", TT "r", " on the generators"}
},
"If ", TT "r", " is not zero, then
either ", TT "M", " and ", TT "N", " should be equal, or they should
have the same number of generators. This gives the same map as
r * map(M,N,1). map(M,N,1) is the map induced by the identity on the
generators of M and N.",
EXAMPLE {
"R = QQ[x];",
"map(R^2,R^3,0)",
"f = map(R^2,R^2,x)",
"f == x *map(R^2,R^2,1)"
},
SeeAlso => inducedMap,
Caveat => {
"If ", TT "M", " or ", TT "N", " is not free,
then we do not check that the result is a well defined homomorphism."
}
}
document {
Key => (map,Matrix),
Headline => "make a matrix with a different degree",
Usage => "map(f, Degree => d)",
Inputs => { "f" => Matrix },
Outputs => {
{"a map identical to ", TT "f", ", except that it has degree ",
TT "d", ", and the source
module has been tensored by a graded free module of rank 1 of
the appropriate degree."},
},
"The input ", TT "d", " should be ", ofClass ZZ, ", or a list of integers.",
PARA{},
"This routine is often used to take a matrix that has a non-zero degree,
and make the degree zero.",
PARA{},
"For example, multiplication of a matrix by a scalar increases the
degree, leaving the source and target fixed:",
EXAMPLE {
"R = QQ[a,b];",
"f1 = matrix{{a,b}}",
"f = a * f1",
"degree f",
"source f == source f1",
},
"One solution is to change the degree:",
EXAMPLE {
"g = map(f, Degree => 0)",
"degree g",
"source g == (source f) ** R^{-1}"
},
"An alternate solution would be to use tensor product with the scalar.",
EXAMPLE {
"g2 = a ** matrix{{a,b}}",
"degree g2",
"isHomogeneous g2"
},
Subnodes => {
TO [map, Degree],
},
}
document {
Key => (map,Module,Nothing,Matrix),
Headline => "recast a matrix to have a new target, and a free module as source",
Usage => "map(M,,f)",
Inputs => {
"M",
"f" => {"whose target has the same number of generators as ", TT "M"}
},
Outputs => {
{"A map with a free source module, and target ", TT "M", ", whose entries are those of f."}
},
EXAMPLE {
"R = ZZ/101[x,y];",
"p = matrix{{x,y}}",
"q = map(R^{3},,p)",
"degrees target q",
"degrees source q",
},
SeeAlso => {matrix}
}
document {
Key => (map,Module,ZZ,Function),
Headline => "create a matrix from a free module by specifying a function that gives each entry",
Usage => "map(M,n,f)",
Inputs => { "M", "n", "f" },
Outputs => {
{"a map from a graded free module of rank ", TT "n", " to the module ", TT "M", "
whose matrix entry ", TT "h_(i,j)", " is obtained from the
function ", TT "f", " by evaluating ", TT "f(i,j)", "."
}
},
"This is the same as calling map(M,R^n,f), except that the
degrees of the basis elements of the source module are chosen
in an attempt to ensure that the resulting map is homogeneous of
degree zero.",
EXAMPLE {
"R = GF(9,Variable=>a)[x,y,z];",
"f = map(R^1, 3, (i,j) -> (a^j * x - y)^(j+1))",
"source f",
"isHomogeneous f"
},
SeeAlso => {(map,Module,Module,Function),(source,Matrix),(isHomogeneous,Matrix)}
}
document {
Key => (map,Module,ZZ,List),
Headline => "create a matrix by giving a sparse or dense list of entries",
Usage => "map(M,n,v)",
Inputs => { "M", "n", "v"
},
Outputs => {
{"A matrix ", TT "M <-- R^n", " whose entries are obtained from ", TT "v",
", where R is the ring of M, and the source of the result is
a graded free module chosen in an attempt to make the result
homogeneous of degree zero"}
},
"The list ", TT "v", " is either a doubly nested list of
ring elements, or a list of elements ",
TT "(i,j) => f", ". The first version provides all of the elements of the
output matrix, row by row. The second form provides only the
non-zero elements of the
output matrix ", TT "h: h_(i,j) = f", ", for every ", TT "(i,j) => f",
" in the list ", TT "v", ".",
PARA{},
"The ring elements appearing in ", TT "v", " should be in ",
TT "R", ", or in a base
ring of ", TT "R", ".",
PARA{},
"In the first form, each list in v gives a row of the matrix. ",
"The length of the list ", TT "v", " should be the number of generators of ", TT "M",
", and the length of each element of ", TT "v", " (which is itself a
list of ring elements) should be the
number of generators of the source module ", TT "N", ".",
EXAMPLE {
"R = ZZ/101[x,y,z];",
"p = map(R^2,3,{{x^2,0,3},{0,y^2,5}})",
"isHomogeneous p",
},
"In the second form, if an index (i,j) occurs more than once,
only the last is taken.",
EXAMPLE {
"p = map(R^2,3,{(0,0) => x+y, (1,1) => x^2, (0,2) => x-1, (0,0) => x-y})"
},
SeeAlso => {matrix, (map,Module,Nothing,List)
-- Mike wanted this: , "input a matrix"
}
}
document {
Key => (map,Module,Nothing,List),
Headline => "create a matrix by giving a doubly nested list of ring elements",
Usage => "map(M,v)",
Inputs => { "M", "v" },
Outputs => {
{"A matrix ", TT "M <-- R^n", " whose entries are obtained from ", TT "v",
", where R is the ring of M, and the source of the result is
a graded free module chosen in an attempt to make the result
homogeneous of degree zero"}
},
"The list ", TT "v", " must be a doubly nested list of
ring elements, which are used to fill the matrix, row by row.",
PARA{},
"The ring elements appearing in ", TT "v", " should be in ",
TT "R", ", or in a base
ring of ", TT "R", ".",
PARA{},
"Each list in v gives a row of the matrix. ",
"The length of the list ", TT "v", " should be the number of generators of ", TT "M",
", and the length of each element of ", TT "v", " (which is itself a
list of ring elements) should be the
number of generators of the source module ", TT "N", ".",
EXAMPLE {
"R = ZZ/101[x,y,z]",
"p = map(R^2,,{{x^2,0,3},{0,y^2,5}})",
"isHomogeneous p",
},
"Another way is to use the ", TO (matrix,List), " routine:",
EXAMPLE {
"p = matrix {{x^2,0,3},{0,y^2,5}}"
},
PARA{},
"The absence of the second argument indicates that the source of the map
is to be a free module constructed with an attempt made to assign degrees
to its basis elements so as to make the map homogeneous of degree zero.",
PARA{},
EXAMPLE {
"R = ZZ/101[x,y]",
"f = map(R^2,,{{x^2,y^2},{x*y,0}})",
"degrees source f",
"isHomogeneous f",
},
SeeAlso => {matrix, (map,Module,Module,List)
-- Mike wanted this: , "input a matrix"
}
}
document {
Key => {(map,Ring,Ring,Matrix),[map,DegreeLift],[map,DegreeMap],(map,Ring,Ring,RingMap)},
Headline => "make a ring map",
Usage => "map(R,S,m)",
Inputs => {
"R" => "the target ring",
"S" => "the source ring",
"m" => {"a ", TT "1", " by ", TT "n", " matrix over ", TT "R", ", where ", TT "n", " is the
number of variables in the polynomial ring ", TT "S", ",
or a matrix over the common coefficient ring of the
two rings. If a ring map is used here, (just) its matrix will be used instead."
},
DegreeMap => Function => {
"the degree map: a (linear) function from the multidegrees of ", TT "S", " to the multidegrees of ", TT "R", ",
to be used in determining homogeneity and in determining degrees in tensor products.
If the two rings have the same degree length, then the default degree map is the identity function."
},
DegreeLift => Function => {
"the degree lift function: a (partial) inverse of the degree map, giving an
error when lifting is not possible. If the degree map is the identity, then by default the identity map
will be provided. If the degree length of ", TT "R", " is 0, then by default
a suitable degree lift function will be provided."
}
},
Outputs => {
{
"the ring homomorphism from ", TT "S", " to ", TT "R", " which,
in case m is a matrix over R, sends the i-th variable
of ", TT "S", " to the i-th entry in ", TT "m", ",
or, in case ", TT "m", " is a matrix over the common coefficient ring,
is the linear change of coordinates corresponding to ", TT "m"
}
},
EXAMPLE {
"R = ZZ[x,y];",
"S = ZZ[a,b,c];",
"f = map(R,S,matrix {{x^2,x*y,y^2}})",
"f(a+b+c^2)",
"g = map(R,S,matrix {{1,2,3},{4,5,6}})",
"g(a+b)"
},
"If the coefficient ring of ", TT "S", " is itself a polynomial ring, then
one may optionally include values to which its variables should be
sent: they should appear last in the matrix ", TT "m", ".",
EXAMPLE {
"S = ZZ[a][b,c];",
"h = map(S,S,matrix {{b,c,2*a}})",
"h(a^7 + b^3 + c)",
"k = map(S,S,matrix {{c,b}})",
"k(a^7 + b^3 + c)"
},
"Specifying a degree map is a useful way to preserve homogeneity, which can speed computation.",
EXAMPLE lines ///
R = QQ[x,y,z];
S = QQ[t,u];
f = map(S,R,{t^2,t*u,u^2},DegreeMap => i -> 2*i)
isHomogeneous f
M = R^{1,2}
f M
f ** M
///,
SeeAlso => {"substitution and maps between rings"}
}
document {
Key => (map,Ring,Ring,List),
Headline => "make a ring map",
Usage => "map(R,S,m)",
Inputs => {
"R" => "the target ring",
"S" => "the source ring",
"m" => {"of ", TT "n", " elements of ", TT "R", ", where ", TT "n", " is the number of variables in the polynomial ring ", TT "S", ",
or a list of pairs ", TT "x => r", ", where ", TT "x", " is a generator of ", TT "S", " and ", TT "r", " is an element of ", TT "R", ",
specifying that ", TT "x", " is to be sent to ", TT "r", "." }
},
Outputs => {
{
"the ring homomorphism from ", TT "S", " to ", TT "R", " which sends the ", TT "i", "-th variable
of ", TT "S", " to the ", TT "i", "-th entry in ", TT "m", ", or in the second case, performs the
indicated substitutions."
}
},
EXAMPLE {
"R = ZZ[x,y];",
"S = ZZ[a,b,c];",
"f = map(R,S,{x^2,x*y,y^2})",
"f(a+b+c^2)",
"g = map(R,S,{a=>x^2,b=>x*y,c=>y^2})",
"g(a+b+c^2)"
},
SeeAlso => {"substitution and maps between rings", (map,Ring,Ring,Matrix)}
}
document {
Key => (map,Module),
Headline => "identity map",
Usage => "map M",
Inputs => { "M" },
Outputs => {
Matrix => {"the identity map on ", TT "M"}
},
EXAMPLE {
"f = map ZZ^3",
"g = id_(ZZ^3)",
"f === g"
},
Caveat => {"may be removed"},
SeeAlso => {(id,Module)}
}
document {
Key => (map,Ring,Ring),
Headline => "make a ring map, using the names of the variables",
Usage => "map(R,S)",
Inputs => { "R", "S" },
Outputs => {
RingMap => {"a map S --> R which maps any variable of S to a variable
with the same name in R, if any, and zero otherwise"}
},
"For example, consider the following rings.",
EXAMPLE lines ///
A = QQ[a..e];
B = A[x,y,Join=>false];
C = QQ[a..e,x,y];
///,
"The natural inclusion and projection maps between ", TT "A", " and ", TT "B", " are",
EXAMPLE lines ///
map(B,A)
map(A,B)
///,
"The isomorphisms between B and C:",
EXAMPLE lines ///
F = map(B,C)
G = map(C,B)
F*G
oo === id_B
G*F
oo === id_C
///,
PARA{},
"The ring maps that are created are not always mathematically well-defined.
For example, the map F below is the natural quotient map, but
the map ", TT "G", " is not mathematically well-defined, although we can use it in Macaulay2 to
lift elements of ", TT "E", " to ", TT "D", ".",
EXAMPLE lines ///
D = QQ[x,y,z];
E = D/(x^2-z-1,y);
F = map(E,D)
G = map(D,E)
x^3
G x^3
///,
Caveat => {"The map is not always a mathematically well-defined ring map"},
SeeAlso => {"substitution and maps between rings"}
}
document {
Key => (map,Ring,Matrix),
Headline => "make a ring map",
Usage => "map(R,m)",
Inputs => { "R", "m" => "a one row matrix" },
Outputs => {
RingMap => {"A ring map ", TT "f : R --> (ring m)", ", where the
entries of ", TT "m", " are the images of the variables of ", TT "R", "."}
},
"This is equivalent to ", TT "map(ring m, R, m)", ".",
EXAMPLE {
"R = QQ[a..d];",
"S = QQ[s,t];",
"F = map(R,matrix{{s^4,s^3*t,s*t^3,t^4}})",
"kernel F"
},
SeeAlso => {"substitution and maps between rings",(map,Ring,Ring,Matrix)}
}
document {
Key => [map, Degree],
Headline => "specify the degree of a map",
Usage => "map(..., Degree=>d)",
"Specifies that the degree of the map created should be ", TT "d", ". ",
"The degree may be an integer or a list of integers (multidegree).
The length of the list should be the same as the length of a degree for the ring, see ", TO "degreeLength", ".",
PARA{},
EXAMPLE {
"R = ZZ/101[x]",
"p = map(R^1, R^1, {{x^4}})",
"isHomogeneous p",
"q = map(R^1, R^1, {{x^4}}, Degree => 4)",
"isHomogeneous q",
},
SeeAlso => {map, matrix, [inducedMap, Degree], [matrix, Degree]}
}
|