Computing extensions of an ideal in Singular or Macaulay2
$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$?
abstract-algebra computer-algebra-systems symbolic-computation computational-algebra macaulay2
$endgroup$
add a comment |
$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$?
abstract-algebra computer-algebra-systems symbolic-computation computational-algebra macaulay2
$endgroup$
add a comment |
$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$?
abstract-algebra computer-algebra-systems symbolic-computation computational-algebra macaulay2
$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
abstract-algebra computer-algebra-systems symbolic-computation computational-algebra macaulay2
edited Dec 8 '18 at 13:47
Rodrigo de Azevedo
13k41958
13k41958
asked Nov 4 '15 at 2:31
BabaiBabai
2,62421540
2,62421540
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$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
$endgroup$
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
$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
$endgroup$
add a comment |
$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
$endgroup$
add a comment |
$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
$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
answered Nov 4 '15 at 7:11
Fredrik MeyerFredrik Meyer
15.3k24165
15.3k24165
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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