Sophie

Sophie

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

Macaulay2-1.3.1-8.fc15.i686.rpm

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

i1 : replace(4,t,0..10)

o1 = (0, 1, 2, 3, t, 5, 6, 7, 8, 9, 10)

o1 : Sequence

i2 : replace(0,t,0..10)

o2 = (t, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

o2 : Sequence

i3 : replace(10,t,0..10)

o3 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, t)

o3 : Sequence

i4 : replace(-1,t,0..10)

o4 = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, t)

o4 : Sequence

i5 : replace(-11,t,0..10)

o5 = (t, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

o5 : Sequence

i6 :