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 - How to substitute polynomials into another polynomial?
Author Message
  Post subject:  How to substitute polynomials into another polynomial?  Reply with quote
>Dear Singular Team,
>Having defined a ring S=0,(x,y,a,b),lp;
>I want to define polys f,g, in x,y, and h in a,h, and
>then substitute h(f,g) to get another poly k in x,y.
>Then I am going to examine the grobner basis for
>ideal i=a-f,b-g;
>and find
>poly l=NF(k,i);
>
>This should recover h.
>
>But how do I substitute a polynomial in given variables
>into another polynomial?

Use map (from S to itself), eg:

ring S=0,(x,y,a,b),lp;
poly f = x3+y5;
poly g = xy5-x2;
poly h = a2-b3;
map F = S,ideal(x,y,f,g);
ideal i =a-f,b-g;
poly k = F(h);
NF(k,std(i));

Best,
Gert-Martin Greuel (Singular team)

email: greuel@mathematik.uni-kl.de
Posted in old Singular Forum on: 2001-05-15 13:23:43+02
Post Posted: Thu Aug 11, 2005 5:31 pm


It is currently Fri May 13, 2022 10:55 am
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group