Macaulay2 » Documentation
Packages » SCMAlgebras :: deficiencyModule
next | previous | forward | backward | up | index | toc

deficiencyModule -- computes the $i$th module of deficiency of a module $M$ or an ideal $I$.

Synopsis

Description

Let $S=K[x_1,\ldots,x_n]$ be the polynomial ring. Given a $S$-module $M$ (or an ideal $I\subset S$), it returns the $i$th module of deficiency $\omega^i(M)$ (or $\omega^i(S/I)$), defined as $\mathrm{Ext}_S^{n-i}(M,S(-n))$.

i1 : S=QQ[x_1..x_5];
i2 : I=(x_1^2*x_3,x_2*x_3^2*x_4,x_1*x_3^3*x_5);
i3 : M=S^1/I;
i4 : deficiencyModule(M,3)

o4 = cokernel {0} | x_1 0   x_2x_4 |
              {1} | 0   x_3 x_1    |

                            2
o4 : S-module, quotient of S

See also

Ways to use deficiencyModule:

For the programmer

The object deficiencyModule is a method function.