Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 3275

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: -607351838 *}

i1 : ZZ/101[x,y]/(x^2-y^2) ** ZZ/101[a,b]/(a^3+b^3)

        ZZ
       ---[x, y, a, b]
       101
o1 = ------------------
       2    2   3    3
     (x  - y , a  + b )

o1 : QuotientRing

i2 : T = tensor(ZZ/101[x,y], ZZ/101[a,b], MonomialOrder => Eliminate 2)

o2 = T

o2 : PolynomialRing

i3 : options tensor

o3 = OptionTable{DegreeLift => null      }
                 DegreeMap => null
                 DegreeRank => null
                 Degrees => null
                 Global => true
                 Heft => null
                 Inverses => false
                 Join => null
                 Local => false
                 MonomialOrder => null
                 MonomialSize => 32
                 SkewCommutative => {}
                 VariableBaseName => null
                 Variables => null
                 Weights => {}
                 WeylAlgebra => {}

o3 : OptionTable

i4 : R = QQ[x,y]/(x^3-y^2);

i5 : T = R ** R

o5 = T

o5 : QuotientRing

i6 : generators T

o6 = {x, y, x, y}

o6 : List

i7 : {T_0 + T_1, T_0 + T_2}

o7 = {x + y, x + x}

o7 : List

i8 : U = tensor(R,R,Variables => {x,y,x',y'})

o8 = U

o8 : QuotientRing

i9 : x + y + x' + y'

o9 = x + y + x' + y'

o9 : U

i10 :