GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
## <#GAPDoc Label="Schenck-8.3.3">
## <Subsection Label="Schenck-8.3.3">
## <Heading>Schenck-8.3.3</Heading>
## This is Exercise 8.3.3 in <Cite Key="Sch"/>.
## <Example><![CDATA[
## gap> Qxyz := HomalgFieldOfRationalsInDefaultCAS( ) * "x,y,z";;
## gap> S := GradedRing( Qxyz );;
## gap> mat := HomalgMatrix( "[ x*y*z, x*y^2, x^2*z, x^2*y, x^3 ]", 1, 5, S );
## <A 1 x 5 matrix over a graded ring>
## gap> M := RightPresentationWithDegrees( mat, S );
## <A graded cyclic right module on a cyclic generator satisfying 5 relations>
## gap> Mr := Resolution( M );
## <A right acyclic complex containing
## 3 morphisms of graded right modules at degrees [ 0 .. 3 ]>
## gap> betti := BettiTable( Mr );
## <A Betti diagram of <A right acyclic complex containing
## 3 morphisms of graded right modules at degrees [ 0 .. 3 ]>>
## gap> Display( betti );
## total: 1 5 6 2
## ----------------
## 0: 1 . . .
## 1: . . . .
## 2: . 5 6 2
## ----------------
## degree: 0 1 2 3
## ]]></Example>
## </Subsection>
## <#/GAPDoc>
LoadPackage( "RingsForHomalg" );
Qxyz := HomalgFieldOfRationalsInDefaultCAS( ) * "x,y,z";
LoadPackage( "GradedRingForHomalg" );
S := GradedRing( Qxyz );;
mat := HomalgMatrix( "[ x*y*z, x*y^2, x^2*z, x^2*y, x^3 ]", 1, 5, S );
LoadPackage( "GradedModules" );
M := RightPresentationWithDegrees( mat, S );
Mr := Resolution( M );
betti := BettiTable( Mr );
Display( betti );
Assert( 0,
MatrixOfDiagram( betti ) =
[ [ 1, 0, 0, 0 ],
[ 0, 0, 0, 0 ],
[ 0, 5, 6, 2 ] ] );