Top
Back: primeClosure
Forward: deltaLoc
FastBack: mregular_lib
FastForward: primdec_lib
Up: normal_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.4.9.5 closureFrac

Procedure from library normal.lib (see normal_lib).

Usage:
closureFrac (L); L a list as in the result of primeClosure, L[n] containing an additional poly f

Create:
a list fraction of two elements of L[1], such that
f=fraction[1]/fraction[2] via the injections phi L[i]-->L[i+1].

Example:
 
LIB "normal.lib";
ring R=0,(x,y),dp;
ideal ker=x2+y2;
export ker;
==> // ** `ker` is already global
list L=primeClosure(R);          // We normalize R/ker
for (int i=1;i<=size(L);i++) { def R(i)=L[i]; }
setring R(2);
kill R;
phi;                             // The map R(1)-->R(2)
==> phi[1]=T(1)*T(2)
==> phi[2]=T(1)
poly f=T(2);                     // We will get a representation of f
export f;
==> // ** `f` is already global
L[2]=R(2);
closureFrac(L);
setring R(1);
kill R(2);
fraction;                        // f=fraction[1]/fraction[2] via phi
==> [1]:
==>    x
==> [2]:
==>    y
kill R(1);


Top Back: primeClosure Forward: deltaLoc FastBack: mregular_lib FastForward: primdec_lib Up: normal_lib Top: Singular Manual Contents: Table of Contents Index: Index About: About this document
            User manual for Singular version 3-0-1, October 2005, generated by texi2html.