Computing extensions of an ideal in Singular or Macaulay2












1












$begingroup$



Does Macaulay2 or Singular compute extensions of ideals under ring homomorphisms?




Specifically, if $phi : R to S$ is a ring homomorphism (say polynomial rings over $mathbb{Q}$ which can be specified in Macaulay2 or Singular) and $I$ is an ideal in $R$ given by generators, is there a command to compute the ideal generated by ${phi(I)}$ in $S$?










share|cite|improve this question











$endgroup$

















    1












    $begingroup$



    Does Macaulay2 or Singular compute extensions of ideals under ring homomorphisms?




    Specifically, if $phi : R to S$ is a ring homomorphism (say polynomial rings over $mathbb{Q}$ which can be specified in Macaulay2 or Singular) and $I$ is an ideal in $R$ given by generators, is there a command to compute the ideal generated by ${phi(I)}$ in $S$?










    share|cite|improve this question











    $endgroup$















      1












      1








      1





      $begingroup$



      Does Macaulay2 or Singular compute extensions of ideals under ring homomorphisms?




      Specifically, if $phi : R to S$ is a ring homomorphism (say polynomial rings over $mathbb{Q}$ which can be specified in Macaulay2 or Singular) and $I$ is an ideal in $R$ given by generators, is there a command to compute the ideal generated by ${phi(I)}$ in $S$?










      share|cite|improve this question











      $endgroup$





      Does Macaulay2 or Singular compute extensions of ideals under ring homomorphisms?




      Specifically, if $phi : R to S$ is a ring homomorphism (say polynomial rings over $mathbb{Q}$ which can be specified in Macaulay2 or Singular) and $I$ is an ideal in $R$ given by generators, is there a command to compute the ideal generated by ${phi(I)}$ in $S$?







      abstract-algebra computer-algebra-systems symbolic-computation computational-algebra macaulay2






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Dec 8 '18 at 13:47









      Rodrigo de Azevedo

      13k41958




      13k41958










      asked Nov 4 '15 at 2:31









      BabaiBabai

      2,62421540




      2,62421540






















          1 Answer
          1






          active

          oldest

          votes


















          1












          $begingroup$

          Yes, this is very easy in Macaulay2. See the code exampe below.



          i1 : R = QQ[x,y]

          o1 = R

          o1 : PolynomialRing

          i2 : I = ideal(x^2-y,y+2)

          2
          o2 = ideal (x - y, y + 2)

          o2 : Ideal of R

          i3 : S = QQ[s,t]

          o3 = S

          o3 : PolynomialRing

          i5 : f = map(S,R,{s^2,t^2})

          2 2
          o5 = map(S,R,{s , t })

          o5 : RingMap S <--- R

          i6 : f I

          4 2 2
          o6 = ideal (s - t , t + 2)

          o6 : Ideal of S





          share|cite|improve this answer









          $endgroup$













            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "69"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1512184%2fcomputing-extensions-of-an-ideal-in-singular-or-macaulay2%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1












            $begingroup$

            Yes, this is very easy in Macaulay2. See the code exampe below.



            i1 : R = QQ[x,y]

            o1 = R

            o1 : PolynomialRing

            i2 : I = ideal(x^2-y,y+2)

            2
            o2 = ideal (x - y, y + 2)

            o2 : Ideal of R

            i3 : S = QQ[s,t]

            o3 = S

            o3 : PolynomialRing

            i5 : f = map(S,R,{s^2,t^2})

            2 2
            o5 = map(S,R,{s , t })

            o5 : RingMap S <--- R

            i6 : f I

            4 2 2
            o6 = ideal (s - t , t + 2)

            o6 : Ideal of S





            share|cite|improve this answer









            $endgroup$


















              1












              $begingroup$

              Yes, this is very easy in Macaulay2. See the code exampe below.



              i1 : R = QQ[x,y]

              o1 = R

              o1 : PolynomialRing

              i2 : I = ideal(x^2-y,y+2)

              2
              o2 = ideal (x - y, y + 2)

              o2 : Ideal of R

              i3 : S = QQ[s,t]

              o3 = S

              o3 : PolynomialRing

              i5 : f = map(S,R,{s^2,t^2})

              2 2
              o5 = map(S,R,{s , t })

              o5 : RingMap S <--- R

              i6 : f I

              4 2 2
              o6 = ideal (s - t , t + 2)

              o6 : Ideal of S





              share|cite|improve this answer









              $endgroup$
















                1












                1








                1





                $begingroup$

                Yes, this is very easy in Macaulay2. See the code exampe below.



                i1 : R = QQ[x,y]

                o1 = R

                o1 : PolynomialRing

                i2 : I = ideal(x^2-y,y+2)

                2
                o2 = ideal (x - y, y + 2)

                o2 : Ideal of R

                i3 : S = QQ[s,t]

                o3 = S

                o3 : PolynomialRing

                i5 : f = map(S,R,{s^2,t^2})

                2 2
                o5 = map(S,R,{s , t })

                o5 : RingMap S <--- R

                i6 : f I

                4 2 2
                o6 = ideal (s - t , t + 2)

                o6 : Ideal of S





                share|cite|improve this answer









                $endgroup$



                Yes, this is very easy in Macaulay2. See the code exampe below.



                i1 : R = QQ[x,y]

                o1 = R

                o1 : PolynomialRing

                i2 : I = ideal(x^2-y,y+2)

                2
                o2 = ideal (x - y, y + 2)

                o2 : Ideal of R

                i3 : S = QQ[s,t]

                o3 = S

                o3 : PolynomialRing

                i5 : f = map(S,R,{s^2,t^2})

                2 2
                o5 = map(S,R,{s , t })

                o5 : RingMap S <--- R

                i6 : f I

                4 2 2
                o6 = ideal (s - t , t + 2)

                o6 : Ideal of S






                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Nov 4 '15 at 7:11









                Fredrik MeyerFredrik Meyer

                15.3k24165




                15.3k24165






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Mathematics Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1512184%2fcomputing-extensions-of-an-ideal-in-singular-or-macaulay2%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Willebadessen

                    Ida-Boy-Ed-Garten

                    Residenzschloss Arolsen