--
You received this message because you are subscribed to the Google Groups "Macaulay2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to macaulay2+...@googlegroups.com.
To post to this group, send email to maca...@googlegroups.com.
Visit this group at https://groups.google.com/group/macaulay2.
For more options, visit https://groups.google.com/d/optout.
Define a ring map from a polynomial ring S on 1 variable to R; compute the kernel I subset S of the map; then define the map from S/I to R.--
David Eisenbud
Director, Mathematical Sciences Research Institute; and
Professor of Mathematics,University of California, Berkeley
www.msri.org/~de
On Aug 25, 2017, at 8:23 AM, Jessica Sidman <jsid...@gmail.com> wrote:
Suppose that I have polynomial ringR = ZZ/32003[x,y,z]and I want to generate the subring of R generated by x+y-z (and I really do want those coordinates). Is there a way to do this in M2? I can only see how to get a module generated by an element like that, and not the subring.Thanks,Jessica--
You received this message because you are subscribed to the Google Groups "Macaulay2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to macaulay2+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to macaulay2+...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to macaulay2+...@googlegroups.com.
To post to this group, send email to maca...@googlegroups.com.
Visit this group at https://groups.google.com/group/macaulay2.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Macaulay2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to macaulay2+...@googlegroups.com.
For what it is worth, I often do something similar in a very naive way.
I may have something in the variables x,y,z and want to change to variables a,b,c.
This can be done in a ring of 3+3 variables by eliminating the first 3, as in the following concrete
example where x,y,z satisfy g and a,b,c will satisfy G_(0,0), with the rest of G giving
x,y,z in terms of a,b,c.
R=QQ[x,y,z,a,b,c,MonomialOrder=>{Eliminate 3}];
f1=x+y-z-a;
f2=y+2*z-b;
f3=3*x-y-c;
g=x^2+y^3*z-x*y*z;
I=ideal(f1,f2,f3,g);
G=gens gb I