Home Online Manual
Top
Back: is_cenBimodule
Forward: ratgb_lib
FastBack: purityfiltration_lib
FastForward: ratgb_lib
Up: nchomolog_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document
7.7.19.0. is_cenSubbimodule
Procedure from library nchomolog.lib (see nchomolog_lib).

Usage:
is_cenSubbimodule(M); M module

Compute:
1, if a subbimodule, generated by the columns of M is centralizing in the sense of Artin and 0 otherwise

Example:
 
LIB "nchomolog.lib";
def A = makeUsl2(); setring A;
poly p = 4*e*f + h^2-2*h; // generator of the center
matrix M[2][2] = p, p^2-7,0,p*(p+1);
is_cenSubbimodule(M); // M is centralizing subbimodule
==> 1
matrix N[2][2] = p, e*f,h,p*(p+1);
is_cenSubbimodule(N); // N is not centralizing subbimodule
==> 0