File: tangentSheaf-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 (42 lines) | stat: -rw-r--r-- 1,232 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): Popescu 
--- notes: 

document { 
     Key => tangentSheaf,
     Headline => "tangent sheaf of a projective variety",
     SeeAlso => {cotangentSheaf, sheaf,ProjectiveVariety}
     }
document { 
     Key => {(tangentSheaf,ProjectiveVariety),[tangentSheaf,Minimize]},
     Usage => "tangentSheaf X",
     Inputs => {
	  "X",
	  Minimize => Boolean => {"whether to apply ", TO "minimalPresentation", " to the result before returning it"}
	  },
     Outputs => {CoherentSheaf
	  },
     "Computes the tangent sheaf of the projective variety ", TT "X",
     PARA{},
     "Tangent sheaf of the projective plane:",
     EXAMPLE {
	  "P = Proj(QQ[a,b,c])",
	  "TP = tangentSheaf(P)",
	  "HH^0(TP(-1))",
	  "HH^1(TP(-3))"
	  },
     "Tangent sheaf of a plane nodal and cuspidal curve:",
     EXAMPLE {
	  "Node = Proj(QQ[a,b,c]/ideal(b^2*c-a^2*(a+c)))",
	  "Cusp = Proj(QQ[a,b,c]/ideal(b^2*c-a^3))",
	  "TNode = tangentSheaf(Node)",
	  "HH^0(TNode)",
	  "HH^1(TNode)",
	  "TCusp = tangentSheaf(Cusp)",
	  "HH^0(TCusp)",
	  "HH^1(TCusp)"
	  --- update this once we can compute the kernel of
	  --- a H^0(phi) for a sheaf map phi :F -> G
	  },
     SeeAlso => {cotangentSheaf, sheaf,ProjectiveVariety}
     }