Hi,
no problem. Just use the substitution command "subst"; like this:
ring r = 0, (x,y,z), dp; matrix A[2][2]=x2*y,y4,3*x4,5; subst(A, x, 1, y, 0); // e.g., x = 1, y = 0 // yields this: _[1,1]=0 _[1,2]=0 _[2,1]=3 _[2,2]=5
Regards, Frank
Hi,
no problem. Just use the substitution command "subst"; like this:
ring r = 0, (x,y,z), dp; matrix A[2][2]=x2*y,y4,3*x4,5; subst(A, x, 1, y, 0); // e.g., x = 1, y = 0 // yields this: _[1,1]=0 _[1,2]=0 _[2,1]=3 _[2,2]=5
Regards, Frank
|