File: genus-doc.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 (61 lines) | stat: -rw-r--r-- 1,758 bytes parent folder | download | duplicates (3)
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
--- status: draft
--- author(s): Decker, Popescu
--- notes: 

document { 
     Key => genus,
     Headline => "arithmetic genus",
     SeeAlso => {genera, euler}
     }
document { 
     Key => {(genus,CoherentSheaf),(genus,Module),(genus, Ideal)},
     Usage => "genus F",
     Inputs => {"F" => {ofClass{CoherentSheaf,Module,Ideal} }},
     Outputs => {ZZ },
     "Computes the arithmetic genus of the coherent sheaf ", TT "F", " that is (-1)^dim-support * (chi(F) - 1)).  If ", TT "F", " is a module
     over a ring, then the genus of ", TT "F~", " is computed.  If ", TT "I", " is an ideal in a ring ", TT "R", " then the genus of ", TT "(R/I)~", " is
     computed.",
     EXAMPLE {
	  "V = Proj(QQ[x,y,z]/ideal(y^2*z-x^2*(x+z)))",
	  "genus OO_V^1"
	  },
     SeeAlso => {genera,euler}
     }
document { 
     Key => (genus,ProjectiveVariety),
     Usage => "genus V",
     Inputs => {"V"
	  },
     Outputs => {ZZ
	  },
     "Computes the arithmetic genus of the projective scheme ", TT "V",
     "A nodal plane cubic curve has arithmetic genus 1:",
     EXAMPLE {
	  "V = Proj(QQ[a,b,c]/ideal(b^2*c-a^2*(a+c)))",
	  "genus V"
	  },
     "The Fano model of a Reye type Enriques surface in projective fivespace:",
     EXAMPLE {
	  "R = ZZ/101[x_0..x_5];",
	  "M = random(R^4, R^{4:-1});",
	  "I = minors(3, M+transpose(M));",
	  "V = Proj(R/I);",
	  "genus V"
	  },
     SeeAlso => {genera,euler}
     }
document { 
     Key => (genus,Ring),
     Usage => "genus R",
     Inputs => {"R"
	  },
     Outputs => {ZZ
	  },
     "Computes the arithmetic genus of the projective scheme ", TT "V",
     " with homogeneous coordinate ring ", TT "R",
     EXAMPLE {
	  "R = QQ[x,y,z]/ideal(y^2*z-x^3)",
	  "genus R"
	  },
     SeeAlso => {genera,euler}
     }