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
|
--- status: DRAFT
--- author(s): Caviglia, Kummini
--- notes:
document {
Key => koszul,
Headline => "Koszul complex or specific matrix in the Koszul complex",
"Returns either the entire Koszul complex, or a specific matrix in the Koszul complex.",
SeeAlso => {eagonNorthcott}
}
document {
Key => (koszul,Matrix),
Headline => "the Koszul complex",
Usage => "g = koszul f",
Inputs => {
"f" => {"a ", TT "1", " by ", TT "n", " matrix"},
},
Outputs => {
"g" => { "the Koszul complex of the matrix ", TT "f"}
},
EXAMPLE lines ///
R = QQ[x_1..x_4];
f = matrix{{x_1..x_4}}
C = koszul f
C.dd^2
///,
SeeAlso => {eagonNorthcott}
}
document {
Key => (koszul,ZZ,Matrix),
Headline => "a differential in a Koszul complex",
Usage => "g = koszul(i,f)",
Inputs => {
"i",
"f" => {"a ", TT "1", " by ", TT "n", " matrix"},
},
Outputs => {
"g" => { "the ", TT "i", "-th differential in the Koszul complex of the matrix ", TT "f"}
},
EXAMPLE {
"R = QQ[x_1..x_4];",
"f = matrix{{x_1..x_4}}"
},
"To see the second differential in the Koszul complex of the matrix ", TT "f", " look at:",
EXAMPLE {
"koszul(2,f)"
}
}
///
document {
Key => (koszul,Matrix,Matrix),
Headline => "a differential in a Koszul complex",
Usage => "koszul(M,N)",
Inputs => {
"M" => {"a ", TT "1", " by ", TT "m", " matrix"},
"N" => {"a ", TT "1", " by ", TT "n", " matrix"},
},
Outputs => {
Matrix => { "the ", TT "i", "-th differential in the
Koszul complex of the matrix ", TT "f"}
},
EXAMPLE {
R = QQ[a..d]
M = matrix{{a*b, a*c, b*d, b^2}}
N = matrix{{a,b,c,d}}
koszul(N,M)
},
"To see the second differential in the Koszul complex of the matrix ", TT "f", " look at:",
EXAMPLE {
"koszul(2,f)",
},
SeeAlso => {}
}
///
|