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$.

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 = subquotient ({-1} | -x_1   0      x_2x_4 |, {-1} | -x_2x_3x_4 x_1^2      0      |)
                  {-1} | 0      x_1    x_3x_5 |  {-1} | -x_3^2x_5  0          x_1    |
                  {-2} | x_3x_5 x_2x_4 0      |  {-2} | 0          -x_1x_3x_5 x_2x_4 |

                               3
o4 : S-module, subquotient of S

See also

Ways to use deficiencyModule:

  • deficiencyModule(Ideal,ZZ)
  • deficiencyModule(Module,ZZ)

For the programmer

The object deficiencyModule is a method function.


The source of this document is in /build/reproducible-path/macaulay2-1.26.05+ds/M2/Macaulay2/packages/SCMAlgebras.m2:481:0.