Changeset 9f9f2c in git for Singular/LIB/sing.lib


Ignore:
Timestamp:
May 24, 2000, 1:01:38 AM (24 years ago)
Author:
Gert-Martin Greuel <greuel@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
2211fc31871671a860c8c81628af8e2e07fd8abc
Parents:
26368653b7a45819c7c93f69c9c944be26f74a19
Message:
* GMG: proc slocus (Beschreibung, Beispiel)


git-svn-id: file:///usr/local/Singular/svn/trunk@4384 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/sing.lib

    r2636865 r9f9f2c  
    1 // $Id: sing.lib,v 1.19 1999-12-13 15:33:50 obachman Exp $
     1// $Id: sing.lib,v 1.20 2000-05-23 23:01:38 greuel Exp $
    22//(GMG/BM, last modified 26.06.96)
    33///////////////////////////////////////////////////////////////////////////////
    44
    5 version="$Id: sing.lib,v 1.19 1999-12-13 15:33:50 obachman Exp $";
     5version="$Id: sing.lib,v 1.20 2000-05-23 23:01:38 greuel Exp $";
    66info="
    77LIBRARY:  sing.lib      PROCEDURES FOR SINGULARITIES
     
    360360
    361361proc slocus (ideal i)
    362 "USAGE:   slocus(i);  i dieal
    363 RETURN:  ideal of singular locus of i
    364 NOTE:    this proc considers lower dimensional components as singular
     362"USAGE:   slocus(i);  i ideal
     363RETURN:  ideal of singular locus of i if i is pure dimensional
     364NOTE:    this proc returns i and c-minors of jacobian ideal of i where c is the
     365         codimension of i. Hence, if i is not pure dimensional, slocus may
     366         return an ideal such that its 0-locus is strictly contained in the
     367         singular locus of i
    365368EXAMPLE: example slocus; shows an example
    366369"
     
    372375example
    373376{ "EXAMPLE:"; echo = 2;
    374    ring r  = 32003,(x,y,z),ds;
     377   ring r  = 0,(x,y,z),ds;
    375378   ideal i = x5+y6+z6,x2+2y2+3z2;
    376    dim(std(slocus(i)));
     379   slocus(i);
    377380}
    378381///////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.