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 compute critical values?
Author Message
  Post subject:  Re: How to compute critical values?  Reply with quote
You want to compute the critical values of a polynomial mapping
from C^3-> C.

The primary decomposition is not what you really need to compute.
You have just to eliminate the variables x,y,z from the ideal.

Code:
> ring r=0,(x,y,z,t),dp;
> poly f = 3*x^2-3*x*y^2+y^3-3*y+3*z^2;
> ideal i = jacob(f),f-t;
> eliminate(i,xyz);
_[1]=64t3+176t2-24t-665


This polynomial is irreducible over Q.
There are three isolated singularities each with Milnor number 1
Code:
> ring rdp =0,(x,y,z),dp;
> poly f = 3*x^2-3*x*y^2+y^3-3*y+3*z^2;
> vdim(std(jacob(f)));
3


The coordinates (x,y,z) expressed in terms by t
can be read off from the primdec result.

Code:
> setring r;
> primdecSY(i);
[1]:
   [1]:
      _[1]=64t3+176t2-24t-665
      _[2]=z
      _[3]=575y-16t2+248t+80
      _[4]=1150x-144t2-68t+145
Post Posted: Wed Nov 23, 2011 12:42 am
  Post subject:  How to compute critical values?  Reply with quote
Hi,

i want to compute the critical values of different polynoms in three variables (x,y,z). Usually the following steps work really fine:

LIB "primdec.lib";
ring r=0,(x,y,z,t),dp;
poly f = 3*x^2-3*x*y^2+y^3-3*y+3*z^2;
ideal i = jacob(f),f-t;
primdecGTZ(i);

Normally i get something, that starts with an expression like:

t=a,

so i can see the critical value is a.
In the example case from above, i get:

t^4+24*t^2-48.

how can i determine the critical values in this case? Do i have to change the ordering? Or does somebody have a better idea, how to compute the critical values?
Please help!

Greetings,
default1
Post Posted: Tue Nov 22, 2011 10:08 am


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