Singular
https://www.singular.uni-kl.de/forum/

A question
https://www.singular.uni-kl.de/forum/viewtopic.php?f=10&t=1393
Page 1 of 1

Author:  Hossein Movasati [ Thu Aug 11, 2005 5:32 pm ]
Post subject:  A question

Dear all
I do not get answer form the following simple commands.

int d=3;
ring r=0,(x(1..5), x(0)), lp;
poly g=x(1)^(d+1)+x(2)^(d+1)+x(3)^(d+1)+x(4)^(d+1)+x(5)^(d+1);
poly f=g-(x(1)+x(2)+x(3)+x(4)+x(5))*x(0)^d-x(0)^(d+1);
ideal V=kbase(groebner(jacob(f)));
V;
I have wited for more than one day but no answer.

-----------------------
Hossein Movasati
Mathematisches Institut
Georg-August-Universtaet
Bunsenstr. 3-5
37073 Goettingen
Tel: 0049-551-397796 Office, 7895877 Home
Email: movasati@uni-math.gwdg.de
----------------------




email: movasati@uni-math.gwdg.de
Posted in old Singular Forum on: 2004-05-13 11:29:06+02

Author:  levandov [ Thu Aug 11, 2005 8:34 pm ]
Post subject:  Re: A question (on groebner command)

Dear Hossein Movasati,

Quote:
Dear all
I do not get answer form the following simple commands.

int d=3;
ring r=0,(x(1..5), x(0)), lp;
poly g=x(1)^(d+1)+x(2)^(d+1)+x(3)^(d+1)+x(4)^(d+1)+x(5)^(d+1);
poly f=g-(x(1)+x(2)+x(3)+x(4)+x(5))*x(0)^d-x(0)^(d+1);
ideal V=kbase(groebner(jacob(f)));
V;
I have waited for more than one day but no answer.


First of all, the K-dimension of groebner(jacob(f)) is 729 (use the command "vdim"). At our PCs it has been computed in several seconds.

What kind of PC do you have? Which version of Singular do you use
(execute "Singular -v")?

In general, for non-trivial examples, we recommend to split nested commands into a sequence:

Code:
poly f=g-(x(1)+x(2)+x(3)+x(4)+x(5))*x(0)^d-x(0)^(d+1);
option(prot); // to see what's going on
ideal I=groebner(jacob(f));
ideal V=kbase(I);


With best regards, [/quote]

Page 1 of 1 All times are UTC + 1 hour [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/