| LIB "difform.lib";
ring R = 11,(x,y,z),dp;
diffAlgebra();
==> // The differential algebra Omega_R was constructed and the differential \
forms dDx, dDy, dDz, dx, dy, dz are available.
////////////////////////////////////////////
// Generators of the differential algebra //
////////////////////////////////////////////
diffAlgebraListGen();
==> [1]:
==> 1
==>
==> [2]:
==> dz
==>
==> [3]:
==> dy
==>
==> [4]:
==> dx
==>
==> [5]:
==> dy*dz
==>
==> [6]:
==> dx*dz
==>
==> [7]:
==> dx*dy
==>
==> [8]:
==> dx*dy*dz
==>
//////////////////////////////////////////
// Generators of the second graded part //
//////////////////////////////////////////
diffAlgebraListGen(2);
==> [1]:
==> dy*dz
==>
==> [2]:
==> dx*dz
==>
==> [3]:
==> dx*dy
==>
kill Omega_R,dx,dy,dz;
|