#This script computes the 270 equations that are satisfied by the Yoshidas-adapted anticanonical coordinates. These coodinates are obtained as # newCoordinate = oldCoordinate / quintic(oldCoordinate) ds = [var("d%s"%i) for i in range(1,7)] Sd = PolynomialRing(QQ, ds) #The following are the 45 new anticanonical coordinates. # May be it would have been better to name the new variables something else. # A list of variables X_12, ..., X_65 Xs = [var("X%s%s"%(i,j)) for i in range(1,7) for j in range(1,7) if i != j] # A list of variables Y_123456, ..., Y_162534 Ys = [var("Y%s%s%s%s%s%s"%(i,j,k,l,m,n)) for i in range(1,7) for j in range(1,7) for k in range(1,7) for l in range(1,7) for m in range(1,7) for n in range(1,7) if i