File: cokernel-doc.m2

package info (click to toggle)
macaulay2 1.25.05%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 172,152 kB
  • sloc: cpp: 107,824; ansic: 16,193; javascript: 4,189; makefile: 3,899; lisp: 702; yacc: 604; sh: 476; xml: 177; perl: 114; lex: 65; python: 33
file content (42 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download | duplicates (2)
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
--- status: draft
--- author(s): Stillman
--- notes: 

doc ///
Node
  Key
    cokernel
  Headline
    cokernel of a map
  SeeAlso
    target
///

document { 
     Key => {
	 (cokernel, Matrix),
	 (cokernel, RingElement)
     },
     Headline => "cokernel of a map of modules",
     Usage => "cokernel f",
     Inputs => { { TT "f : A --> B", ofClass { Matrix, RingElement } } },
     Outputs => { {"the object ", TT "B/(image f)"} },
     PARA{ TT "coker", " is a synonym for ", TT "cokernel", "." },
     PARA{ "The generators of the cokernel are provided by the generators of the target
     	  of ", TT "f", ".  In other words, ", TT "cover target f", " and ", TT "cover cokernel f", " are equal." },
     PARA{ "An argument ", TT "f", " that is a ", TO RingElement, " is interpreted as a one by one matrix."},
     EXAMPLE {
	  "R = ZZ[a..d];",
	  "M = cokernel matrix{{2*a-b,3*c-5*d,a^2-b-3}}"
	  },
     "If ", TT "f", " is a matrix, and the target of ", TT "f", " is a submodule, the resulting module will be a ",
     TO "subquotient", " module.",
     EXAMPLE {
	  "f = map(a*M, M, a^3+a^2*b)",
	  "(target f,source f)",
	  "N = cokernel f",
	  "minimalPresentation N"
	  },
     SeeAlso => { cover, image, kernel, coimage, comodule, minimalPresentation, "matrices to and from modules"}
     }