Top
Back: D.5.5.15 newtonpoly
Forward: D.5.5.17 puiseux2generators
FastBack: D. SINGULAR libraries
FastForward: E. Release Notes
Up: D.5.5 hnoether_lib
Top: Singular 2-0-4 Manual
Contents: Table of Contents
Index: F. Index
About: About This Document

D.5.5.16 is_NND

Procedure from library hnoether.lib (see hnoether_lib).

Usage:

is_NND(f[,mu,NP]); f poly, mu int, NP list of intvecs

Assume:

f is convenient, that is, f(x,0) != 0 != f(0,y);
mu (optional) is Milnor number of f.
NP (optional) is output of newtonpoly(f).

Return:

int: 1 if f in Newton non-degenerate, 0 otherwise.

Example:

 
LIB "hnoether.lib";
ring r=0,(x,y),ls;
poly f=x5+y3;
is_NND(f);
→ 1
poly g=(x-y)^5+3xy5+y6-y7;
is_NND(g);
→ 0
// if already computed, one should give the Minor number and Newton polygon
// as second and third input: 
int mu=milnor(g);
list NP=newtonpoly(g);
is_NND(g,mu,NP);
→ 0

See also: newtonpoly.


Top Back: D.5.5.15 newtonpoly Forward: D.5.5.17 puiseux2generators FastBack: D. SINGULAR libraries FastForward: E. Release Notes Up: D.5.5 hnoether_lib Top: Singular 2-0-4 Manual Contents: Table of Contents Index: F. Index About: About This Document
            User manual for Singular version 2-0-4, October 2002, generated by texi2html.