Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: lp to dp
PostPosted: Wed Feb 27, 2008 6:33 pm 
Hello

I want to compute the Groebner Basis in x > z > y from an Ideal like:
<z_i - f(x), y_i - g(x) >

if I choose lp on z the computation is fast and I get a result in 5 minutes.
But if I choose dp on z the computation takes a lot more time (> 3h).
Unfortunately I need dp on z, so maybe there is a way to transform from lp to dp in short time?

thanks


Report this post
Top
  
Reply with quote  
 Post subject: Re: lp to dp
PostPosted: Mon Mar 03, 2008 12:57 pm 

Joined: Wed May 25, 2005 4:16 pm
Posts: 275
To convert a Groebner basis from one oredering to another
you can use fglm (for zero dimensional ideals)
or use the Hilbert function to speed up the computation:

ring r1=....;
ideal I=....;
ideal J=groebner(I);
intvec h=hilb(J,1);
ring r2=.....;
ideal I=fetch(r1,I);
ideal J=std(I,h);

Hans Schoenemann, Singular team


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

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