Macaulay2 » Documentation
Packages » OIGroebnerBases > Number * VectorInWidth
next | previous | forward | backward | up | index | toc

Number * VectorInWidth -- multiply an element of a free OI-module by a number

Synopsis

Description

Multiplies f by n.

i1 : P = makePolynomialOIAlgebra(2, x, QQ);
i2 : F = makeFreeOIModule(e, {1,1}, P);
i3 : installGeneratorsInWidth(F, 2);
i4 : f=x_(1,1)*e_(2,{1},1)+x_(2,1)*e_(2,{1},2)-5*x_(1,2)*e_(2,{2},1)-x_(2,2)*e_(2,{2},2)

o4 = -5x   e        + x   e        - x   e        + x   e
        1,2 2,{2},1    1,1 2,{1},1    2,2 2,{2},2    2,1 2,{1},2

                                 4
o4 : (QQ[x   , x   , x   , x   ])  in width 2
          2,2   2,1   1,2   1,1
i5 : 22*f

o5 = -110x   e        + 22x   e        - 22x   e        + 22x   e
          1,2 2,{2},1      1,1 2,{1},1      2,2 2,{2},2      2,1 2,{1},2

                                 4
o5 : (QQ[x   , x   , x   , x   ])  in width 2
          2,2   2,1   1,2   1,1

Ways to use this method: