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 - Hilbert Series for S=Q[x,y,z]/I when I has parameter
Author Message
  Post subject:  Re: Hilbert Series for S=Q[x,y,z]/I when I has parameter  Reply with quote
Thanks you very much for the answer.
Now it works !
Post Posted: Wed Nov 12, 2014 11:25 pm
  Post subject:  Re: Hilbert Series for S=Q[x,y,z]/I when I has parameter  Reply with quote
For the computation of the Hilbert Series only the leading monomials
(power product without coefficients) of the standard basis are considered: i.e. every
expression in a is considered to be non-zero if not identical to 0.
If you need to distinguish the different cases for different values of a
you have to compute the different standard bases first:
see for example grobcov.lib http://www.singular.uni-kl.de/Manual/4-0-1/sing_953.htm
Post Posted: Fri Nov 07, 2014 11:46 am
  Post subject:  Hilbert Series for S=Q[x,y,z]/I when I has parameter  Reply with quote
Hello,
I have a problem when I try to compute Hilbert Series for S=Q[x,y,z]/I when I is an homogeneous ideal with parameter

Let f = x^3+y^3+z^3-3*a*x*y*z be a polynomial.
Is known that :
-for a^3=1, {f=0} is singular and Hilbert Series is infinite
-for a^3<>1 {f=0} is non-singular (smooth) and Hilbert Series is finite
Singular package can work with parameters but does not discriminate in this case...

The question is Why does not work the following program, without fix the parameter with minpoly
If we do not fix the parameter,
ring R=(0,a),(x,y,z),dp;
poly f;
f=x^3+y^3+z^3-3*a*x*y*z;
ideal G=std(jacob(f));
hilb(G,2);
//--> Hilbert series for S is H(t)= 1+3t+3t^2+t^3 (polynomial)
the result is wrong for some values (a^-1=0)....

If we fix the parameter with minpoly, we get the correct result:
ring R=(0,a),(x,y,z),dp;
minpoly =a^3-1; // or minpoly=a-1 or minpoly=a^2+a+1
poly f;
f=x^3+y^3+z^3-3*a*x*y*z;
ideal G=std(jacob(f));
hilb(G,2);
//--> Hilbert series for S is H(t)=
(1+2t)/(1-t)=1+3t+3t^2+3t^3+3t^4+... (infinite)

Without parameter, everything is OK:
for a = 1
ring R=0,(x,y,z),dp;
poly f;
int a; a=1;
f=x^3+y^3+z^3-3*a*x*y*z;
ideal G=std(jacob(f));
hilb(G,2);
//--> Hilbert series for S is H(t)=
(1+2t)/(1-t)=1+3t+3t^2+3t^3+3t^4+... (infinite)
Also for a^3<>1 eg a= 2 we get the correct result.
//--> Hilbert series for S is H(t)= 1+3t+3t^2+t^3 (polynomial)

Is possible to work with parameters without fix them to compute Hilbert Series?


Thank's in advance
Post Posted: Wed Nov 05, 2014 12:15 am


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