I want to set up a symbolic integration procedure over an region. I will have expressions such as z = c1 + c2*x + c3*y + c4*x*y .. but the number of terms in z can vary and should be determined automatically by the procedure. c1, c2 .. are arbitrary factors. For example, a possible z could be z = a + b/c*x + d/e*x*y^3 + f*y^5. The integral of z should be returned from the procedure as zint = c1*INT(0,0) + c2*INT(1,0) + c3*INT(0,1) + c4*INT(1,1) .. where INT(i,j) represents the integral over the region of x^i*y^j. These integrals will be calculated numerically by another procedure. Does anyone know how to do this? Thanks. John

Please Wait...