|
D.4.5.2 removeComponent
Procedure from library ehv.lib (see ehv_lib).
- Usage:
- removeComponent(I,e); I ideal, e integer
- Return:
- ideal, the intersection of the primary components
of I of dimension >= e
Example:
| LIB "ehv.lib";
ring r = 0,(x,y,z),dp;
ideal I = intersect(ideal(z),ideal(x,y),ideal(x2,z2),ideal(x5,y5,z5));
removeComponent(I,1);
==> _[1]=yz2
==> _[2]=xz2
==> _[3]=x2z
|
|