First time here? Check out the FAQ!
answered 5 years ago
One workaround would be to use an infinite polynomial ring in x and y, with xiyj standing for xi,j.
sage: R.<x, y> = InfinitePolynomialRing(ZZ) sage: x x_* sage: y y_* sage: x[3]*y[4] x_3*y_4 sage: y[6]*x[1] x_1*y_6