Post a reply
Username:
Note:If not registered, provide any username. For more comfort, register here.
Subject:
Message body:
Enter your message here, it may contain no more than 60000 characters. 

Smilies
:D :) :( :o :shock: :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen:
Font size:
Font colour
Options:
BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON
Disable BBCode
Disable smilies
Do not automatically parse URLs
Confirmation of post
To prevent automated posts the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.
Confirmation code:
Enter the code exactly as it appears. All letters are case insensitive, there is no zero.
   

Topic review - qring inside qring
Author Message
  Post subject:  Re: qring inside qring  Reply with quote
Dear Hendrik Suess,

thanks for Your note.

This behaviour has been recently fixed.

Best regards,
Oleksandr Motsak
Post Posted: Wed Apr 23, 2008 12:25 pm
  Post subject:  qring inside qring  Reply with quote
Hello,

a call of qring inside a qring results in a quotient of a polynomial ring by the new ideal, but the old one gets lost:

> ring r=0,(x,y),dp;
> qring qr=std(x^2);
> basering;
// characteristic : 0
// number of vars : 2
// block 1 : ordering dp
// : names x y
// block 2 : ordering C
// quotient ring from ideal
_[1]=x2
> qring qqr=std(y^2);
> basering;
// characteristic : 0
// number of vars : 2
// block 1 : ordering dp
// : names x y
// block 2 : ordering C
// quotient ring from ideal
_[1]=y2

as a solution I suggest a improved version of qring:

proc quotientRing(ideal I){
def @r=basering;
list rl=ringlist(@r);
list rl2=rl;
rl2[4]=ideal(0);
def @rr=ring(rl2);
setring @rr;
ideal I=imap(@r,I);
list rl=imap(@r,rl);
I=I+rl[4];
I=std(I);
rl[4]=I;
def @rrr=ring(rl);
return(@rrr);
}

best regards

Hendrik Suess
Post Posted: Fri Apr 18, 2008 1:25 pm


It is currently Fri May 13, 2022 11:05 am
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group