A symmetric divisor on M0,n may be created in either one of two ways. The user may either enter the number of marked points n and a linear polynomial in the standard basis classes Bi, or enter n and a list of the coefficients of D in the standard basis. Both usages are demonstrated in the example below.
i1 : D=symmetricDivisorM0nbar(6,{2,3})
o1 = SymmetricDivisorM0nbar{2 => 2 }
3 => 3
NumberOfPoints => 6
o1 : SymmetricDivisorM0nbar
|
i2 : E=symmetricDivisorM0nbar(6,2*B_2+3*B_3)
o2 = SymmetricDivisorM0nbar{2 => 2 }
3 => 3
NumberOfPoints => 6
o2 : SymmetricDivisorM0nbar
|
i3 : D==E o3 = true |